mirror of
https://github.com/apache/maven.git
synced 2025-02-06 10:09:04 +00:00
new interpolator so the one from 2.0 was used and some envar handling was back ported. Unit tests have been added for envar handling as well as an IT. The maven-core-it script will now set an envar which is used in it0090. git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@368108 13f79535-47bb-0310-9956-ffa450edef68
49 lines
1.3 KiB
XML
49 lines
1.3 KiB
XML
<project>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.apache.maven.it</groupId>
|
|
<artifactId>maven-core-it0090</artifactId>
|
|
<version>1.0</version>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>3.8.1</version>
|
|
<type>jar</type>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-core-it-plugin</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>process-resources</phase>
|
|
<configuration>
|
|
<mavenTestEnvar>${env.MAVEN_TEST_ENVAR}</mavenTestEnvar>
|
|
</configuration>
|
|
<goals>
|
|
<goal>generate-envar-properties</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>snapshots</id>
|
|
<name>Maven Central Plugins Development Repository</name>
|
|
<url>http://snapshots.maven.codehaus.org/maven2</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
</project>
|