Maven2 Привязка к пользовательской фазе - PullRequest
1 голос
/ 13 марта 2012

У меня есть собственный плагин, который определяется с помощью pom.xml

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>pram.plugintest</groupId>
  <artifactId>pram.plugintest</artifactId>
  <packaging>maven-plugin</packaging>
  <version>1.1-SNAPSHOT</version>
  <name>pram.plugintest Maven Mojo</name>
  <url>http://maven.apache.org</url>
  <build>
        <plugins>
            <plugin>
                <artifactId>maven-plugin-plugin</artifactId>
                <version>2.3</version>
                <configuration>
                    <goalPrefix>blah</goalPrefix>
                </configuration>
            </plugin>
        </plugins>
      <resources>
          <resource>
              <directory>src/main/resources</directory>
          </resource>
      </resources>
    </build>
  <dependencies>
    <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-plugin-api</artifactId>
      <version>2.0</version>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>
</project>

Запуск

mvn blah:touch

Создает текстовый файл в целевой директории, как и ожидалось. Теперь я создаю файл lifecycles.xml в каталоге ресурсов, указанном в pom

<lifecycles>
    <lifecycle>
        <id>touch</id>
        <phases>
            <phase>
                <id>package</id>
                <executions>
                    <execution>
                        <goals>
                            <goal>touch</goal>
                        </goals>
                    </execution>
                </executions>
            </phase>
        </phases>
    </lifecycle>
</lifecycles>

В другом проекте maven я хотел бы связать выполнение mvn blah:touch с задачей выполнения, подобной этой

...
<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>exec-maven-plugin</artifactId>
    <version>1.2.1</version>
    <executions>
        <execution>
        <id>test1</id>
        <phase>blah:touch</phase>
        <goals>
            <goal>java</goal>
        </goals>
        <configuration>
<mainClass>mainClass=org.sonatype.mavenbook.weather.Main</mainClass>
        </configuration>
    </execution>
</executions>
</plugin>
...

Тем не менее, при запуске это создает текстовый файл, но не пытается запустить org.sonatype.mavenbook.weather.Main

Это правильный подход?

В конечном итоге мне бы хотелось, чтобы в exec-maven-plugin было несколько секций исполнения, не привязанных к фазам по умолчанию. По логике это выглядело бы так

...
<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>exec-maven-plugin</artifactId>
    <version>1.2.1</version>
    <executions>
        <execution>
        <id>test1</id>
        <phase>blah:touch</phase>
        <goals>
            <goal>java</goal>
        </goals>
        <configuration>
<mainClass>mainClass=org.sonatype.mavenbook.weather.Main</mainClass>
        </configuration>
    </execution>
<execution>
        <id>test2</id>
        <phase>blah:touch2</phase>
        <goals>
            <goal>java</goal>
        </goals>
        <configuration>
<mainClass>mainClass=org.sonatype.mavenbook.weather.SomeOtherClass</mainClass>
        </configuration>
    </execution>
</executions>
</plugin>
...

Таким образом, если я запускаю mvn blah:touch, то будет выполняться org.sonatype.mavenbook.weather.Main, а если я запускаю mvn blah:touch2, то вместо этого будет выполняться org.sonatype.mavenbook.weather.SomeOtherClass.

Кажется, что это должно быть просто, но в документации нет ничего, что указывало бы, как это сделать.

1 Ответ

1 голос
/ 13 марта 2012

Вы не можете использовать exec-maven-plugin для этого, и вам не нужен lifecycle.xml , если вы хотите запускать свой плагин только во время сборки.

Чтобы запустить плагин во время определенной фазы Maven, вам просто нужно добавить

   <plugins>
        <plugin>
            <groupId>your.group.id</groupId>
            <artifactId>your.artifact.id</artifactId>
            <executions>
                <execution>
                    <id>unique-execution-id</id>
                    <goals>
                        <goal>the.goal.of.your.plugin</goal>
                    </goals>
                    <phase>maven.phase</phase>
                    <configuration>
                     ....
                    </configuration>
                </execution>
             </executions>
        </plugin>
   </plugins>

Пожалуйста, укажите цель в элементе goal без префикса.

Вы читали http://www.sonatype.com/books/mvnref-book/reference/writing-plugins-sect-plugins-lifecycle.html?

...