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" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
24
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
25
|
<modelVersion>4.0.0</modelVersion>
|
26
|
<groupId>org.apache.ant</groupId>
|
27
|
<artifactId>ant-parent</artifactId>
|
28
|
<version>1.8.1</version>
|
29
|
<packaging>pom</packaging>
|
30
|
<description>master POM</description>
|
31
|
<name>Apache Ant</name>
|
32
|
<url>http://ant.apache.org/</url>
|
33
|
<inceptionYear>2000</inceptionYear>
|
34
|
<organization>
|
35
|
<name>Apache Software Foundation</name>
|
36
|
</organization>
|
37
|
<distributionManagement>
|
38
|
<!-- Null out inherited apache distribution repo by default -->
|
39
|
<repository>
|
40
|
<id>dummy</id>
|
41
|
<name>Dummy to avoid accidental deploys</name>
|
42
|
<url></url>
|
43
|
</repository>
|
44
|
</distributionManagement>
|
45
|
<scm>
|
46
|
<connection>scm:svn:http://svn.apache.org/repos/asf/ant/core/trunk</connection>
|
47
|
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/jant/core/trunk</developerConnection>
|
48
|
<url>http://svn.apache.org/repos/asf/ant/core/trunk</url>
|
49
|
</scm>
|
50
|
<mailingLists>
|
51
|
<mailingList>
|
52
|
<name>Ant Developers List</name>
|
53
|
<subscribe>dev-subscribe@ant.apache.org</subscribe>
|
54
|
<unsubscribe>dev-unsubscribe@ant.apache.org</unsubscribe>
|
55
|
<post>dev@ant.apache.org</post>
|
56
|
<archive>http://mail-archives.apache.org/mod_mbox/ant-dev</archive>
|
57
|
</mailingList>
|
58
|
<mailingList>
|
59
|
<name>Ant Users List</name>
|
60
|
<subscribe>user-subscribe@ant.apache.org</subscribe>
|
61
|
<unsubscribe>user-unsubscribe@ant.apache.org</unsubscribe>
|
62
|
<post>user@ant.apache.org</post>
|
63
|
<archive>http://mail-archives.apache.org/mod_mbox/ant-user</archive>
|
64
|
</mailingList>
|
65
|
</mailingLists>
|
66
|
<issueManagement>
|
67
|
<system>bugzilla</system>
|
68
|
<url>http://issues.apache.org/bugzilla/</url>
|
69
|
</issueManagement>
|
70
|
<modules>
|
71
|
<module>ant</module>
|
72
|
<module>ant-antlr</module>
|
73
|
<module>ant-apache-bcel</module>
|
74
|
<module>ant-apache-bsf</module>
|
75
|
<module>ant-apache-log4j</module>
|
76
|
<module>ant-apache-oro</module>
|
77
|
<module>ant-apache-regexp</module>
|
78
|
<module>ant-apache-resolver</module>
|
79
|
<module>ant-apache-xalan2</module>
|
80
|
<module>ant-commons-logging</module>
|
81
|
<module>ant-commons-net</module>
|
82
|
<module>ant-jai</module>
|
83
|
<module>ant-javamail</module>
|
84
|
<module>ant-jdepend</module>
|
85
|
<module>ant-jmf</module>
|
86
|
<module>ant-jsch</module>
|
87
|
<module>ant-junit</module>
|
88
|
<module>ant-launcher</module>
|
89
|
<module>ant-netrexx</module>
|
90
|
<module>ant-nodeps</module>
|
91
|
<module>ant-swing</module>
|
92
|
<module>ant-testutil</module>
|
93
|
</modules>
|
94
|
<dependencies>
|
95
|
<dependency>
|
96
|
<groupId>junit</groupId>
|
97
|
<artifactId>junit</artifactId>
|
98
|
<version>3.8.2</version>
|
99
|
<scope>test</scope>
|
100
|
</dependency>
|
101
|
</dependencies>
|
102
|
<build>
|
103
|
<sourceDirectory>../../../src/main</sourceDirectory>
|
104
|
<testSourceDirectory>../../../src/testcases</testSourceDirectory>
|
105
|
<outputDirectory>../../../target/classes</outputDirectory>
|
106
|
<testOutputDirectory>../../../target/testcases</testOutputDirectory>
|
107
|
</build>
|
108
|
</project>
|