mirror of https://github.com/apache/maven.git
fix tests in accordance with removed deprecations
git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@293353 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7aa60e32d4
commit
01aee704da
|
@ -8,11 +8,13 @@
|
|||
<plugins>
|
||||
<plugin>
|
||||
<artifactId>maven-verifier-plugin</artifactId>
|
||||
<goals>
|
||||
<goal>
|
||||
<id>verify</id>
|
||||
</goal>
|
||||
</goals>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>verify</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
|
|
@ -19,11 +19,13 @@
|
|||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-core-it-plugin</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<goals>
|
||||
<goal>
|
||||
<id>touch</id>
|
||||
</goal>
|
||||
</goals>
|
||||
<executions>
|
||||
<execution>
|
||||
<goals>
|
||||
<goal>touch</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
|
|
@ -1,2 +1,3 @@
|
|||
target/pluginItem
|
||||
target/goalItem
|
||||
!target/bad-item
|
||||
|
|
|
@ -1 +1 @@
|
|||
core-it:touch
|
||||
generate-resources
|
||||
|
|
|
@ -23,14 +23,17 @@
|
|||
<pluginItem>pluginItem</pluginItem>
|
||||
<goalItem>bad-item</goalItem>
|
||||
</configuration>
|
||||
<goals>
|
||||
<goal>
|
||||
<id>touch</id>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>generate-resources</phase>
|
||||
<goals>
|
||||
<goal>touch</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<goalItem>goalItem</goalItem>
|
||||
</configuration>
|
||||
</goal>
|
||||
</goals>
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
|
|
@ -10,17 +10,6 @@
|
|||
</modules>
|
||||
|
||||
<build>
|
||||
<!-- plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
|
||||
<configuration>
|
||||
<source>1.4</source>
|
||||
<target>1.4</target>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins -->
|
||||
<pluginManagement>
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
|
Loading…
Reference in New Issue