summaryrefslogtreecommitdiff
path: root/src/etc/poms/ant-jai
diff options
context:
space:
mode:
authorAntoine Levy-Lambert <antoine@apache.org>2006-10-23 00:33:00 +0000
committerAntoine Levy-Lambert <antoine@apache.org>2006-10-23 00:33:00 +0000
commit0ac06cdedc30ddf632cc6ba38598ea776bddc5f0 (patch)
tree06ae9d94492e6a85f6cbeb05b9370da8d15e63c3 /src/etc/poms/ant-jai
parent1a30e19f0599a4100f3e8e4a483a70ed03576086 (diff)
downloadant-0ac06cdedc30ddf632cc6ba38598ea776bddc5f0.tar.gz
modified poms. I can now mvn package the complete ant binary distribution
git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@466894 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/etc/poms/ant-jai')
-rw-r--r--src/etc/poms/ant-jai/pom.xml27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/etc/poms/ant-jai/pom.xml b/src/etc/poms/ant-jai/pom.xml
index 8d3586313..2a451dfcc 100644
--- a/src/etc/poms/ant-jai/pom.xml
+++ b/src/etc/poms/ant-jai/pom.xml
@@ -2,6 +2,12 @@
<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">
+ <parent>
+ <groupId>ant</groupId>
+ <artifactId>ant-parent</artifactId>
+ <relativePath>../pom.xml</relativePath>
+ <version>1.7.0-SNAPSHOT</version>
+ </parent>
<modelVersion>4.0.0</modelVersion>
<groupId>ant</groupId>
<artifactId>ant-jai</artifactId>
@@ -30,4 +36,25 @@
<scope>provided</scope>
</dependency>
</dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.2</source>
+ <target>1.2</target>
+ <includes>
+ <include>org/apache/tools/ant/taskdefs/optional/image/*</include>
+ <include>org/apache/tools/ant/types/optional/image/*</include>
+ </includes>
+ </configuration>
+ </plugin>
+ </plugins>
+ <sourceDirectory>../../../../src/main</sourceDirectory>
+ <testSourceDirectory>../../../../src/testcases</testSourceDirectory>
+ <outputDirectory>../../../../target/${project.artifactId}/classes</outputDirectory>
+ <testOutputDirectory>../../../../target/${project.artifactId}/testcases</testOutputDirectory>
+ <directory>../../../../target/${project.artifactId}</directory>
+ </build>
</project>