|
1 <?xml version="1.0" encoding="UTF-8"?> |
|
2 <!-- |
|
3 Licensed to the Apache Software Foundation (ASF) under one or more |
|
4 contributor license agreements. See the NOTICE file distributed with |
|
5 this work for additional information regarding copyright ownership. |
|
6 The ASF licenses this file to You under the Apache License, Version 2.0 |
|
7 (the "License"); you may not use this file except in compliance with |
|
8 the License. You may obtain a copy of the License at |
|
9 |
|
10 http://www.apache.org/licenses/LICENSE-2.0 |
|
11 |
|
12 Unless required by applicable law or agreed to in writing, software |
|
13 distributed under the License is distributed on an "AS IS" BASIS, |
|
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
15 See the License for the specific language governing permissions and |
|
16 limitations under the License. |
|
17 --> |
|
18 <!-- |
|
19 This POM has been created manually by the Ant Development Team. |
|
20 Please contact us if you are not satisfied with the data contained in this POM. |
|
21 URL : http://ant.apache.org |
|
22 --> |
|
23 <project xmlns="http://maven.apache.org/POM/4.0.0" |
|
24 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|
25 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
|
26 <parent> |
|
27 <groupId>org.apache.ant</groupId> |
|
28 <artifactId>ant-parent</artifactId> |
|
29 <relativePath>../pom.xml</relativePath> |
|
30 <version>1.8.2</version> |
|
31 </parent> |
|
32 <modelVersion>4.0.0</modelVersion> |
|
33 <groupId>org.apache.ant</groupId> |
|
34 <artifactId>ant-jai</artifactId> |
|
35 <version>1.8.2</version> |
|
36 <name>Apache Ant + JAI</name> |
|
37 <description>image task and corresponding types. |
|
38 </description> |
|
39 <dependencies> |
|
40 <dependency> |
|
41 <groupId>org.apache.ant</groupId> |
|
42 <artifactId>ant</artifactId> |
|
43 <version>1.8.2</version> |
|
44 <scope>compile</scope> |
|
45 </dependency> |
|
46 <dependency> |
|
47 <groupId>javax.media</groupId> |
|
48 <artifactId>jai-core</artifactId> |
|
49 <version>1.1.3</version> |
|
50 </dependency> |
|
51 <dependency> |
|
52 <groupId>com.sun.media</groupId> |
|
53 <artifactId>jai-codec</artifactId> |
|
54 <version>1.1.3</version> |
|
55 </dependency> |
|
56 </dependencies> |
|
57 <repositories> |
|
58 <repository> |
|
59 <id>jboss</id> |
|
60 <name>JBoss</name> |
|
61 <url>http://repository.jboss.org/maven2/</url> |
|
62 </repository> |
|
63 </repositories> |
|
64 <build> |
|
65 <plugins> |
|
66 <plugin> |
|
67 <groupId>org.apache.maven.plugins</groupId> |
|
68 <artifactId>maven-compiler-plugin</artifactId> |
|
69 <configuration> |
|
70 <source>1.4</source> |
|
71 <target>1.4</target> |
|
72 <includes> |
|
73 <include>org/apache/tools/ant/taskdefs/optional/image/*</include> |
|
74 <include>org/apache/tools/ant/types/optional/image/*</include> |
|
75 </includes> |
|
76 </configuration> |
|
77 </plugin> |
|
78 </plugins> |
|
79 <sourceDirectory>../../../../src/main</sourceDirectory> |
|
80 <testSourceDirectory>../../../../src/testcases</testSourceDirectory> |
|
81 <outputDirectory>../../../../target/${project.artifactId}/classes</outputDirectory> |
|
82 <testOutputDirectory>../../../../target/${project.artifactId}/testcases</testOutputDirectory> |
|
83 <directory>../../../../target/${project.artifactId}</directory> |
|
84 </build> |
|
85 </project> |