blob: 6c68bcb5faa31786dac75433a05f4202a263ff1c [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.its.ant</groupId>
<artifactId>system-scope-dep</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<build.compiler>extJavac</build.compiler>
<lib.dir>${basedir}/lib</lib.dir>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ant-plugin</artifactId>
<version>@project.version@</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.1</version>
<configuration>
<tasks>
<property name="lib.dir" location="${lib.dir}" />
<ant dir="${basedir}" antfile="${basedir}/build.xml" target="compile" />
</tasks>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>test</id>
<activation>
<property>
<name>!skip-it</name>
</property>
</activation>
<dependencies>
<dependency>
<groupId>org.apache.maven.its.ant</groupId>
<artifactId>dep</artifactId>
<version>0.1</version>
<scope>system</scope>
<systemPath>${lib.dir}/system-scope-dep-0.1.jar</systemPath>
</dependency>
</dependencies>
</profile>
</profiles>
</project>