source: local/greenstone3/windows-64bit/apache-ant-1.9.5/lib/ant-parent.pom@ 30443

Last change on this file since 30443 was 30443, checked in by davidb, 8 years ago

Move to newer version of ant needed, for some of the features now used in Greenstone3's build.xml + newer versions of Java

File size: 5.5 KB
Line 
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"
24xsi: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.9.5</version>
29 <packaging>pom</packaging>
30 <description>master POM</description>
31 <licenses>
32 <license>
33 <name>The Apache Software License, Version 2.0</name>
34 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
35 <distribution>repo</distribution>
36 </license>
37 </licenses>
38 <name>Apache Ant</name>
39 <url>http://ant.apache.org/</url>
40 <inceptionYear>2000</inceptionYear>
41 <organization>
42 <name>The Apache Software Foundation</name>
43 <url>http://www.apache.org/</url>
44 </organization>
45 <distributionManagement>
46 <!-- Null out inherited apache distribution repo by default -->
47 <repository>
48 <id>dummy</id>
49 <name>Dummy to avoid accidental deploys</name>
50 <url>http://nowhere.net/</url>
51 </repository>
52 </distributionManagement>
53 <scm>
54 <connection>scm:git:https://git-wip-us.apache.org/repos/asf/ant.git</connection>
55 <developerConnection>scm:git:https://git-wip-us.apache.org/repos/asf/ant.git</developerConnection>
56 <url>https://git-wip-us.apache.org/repos/asf/ant.git</url>
57 </scm>
58 <ciManagement>
59 <system>hudson</system>
60 <url>https://builds.apache.org/job/Ant_BuildFromPOMs/</url>
61 </ciManagement>
62 <mailingLists>
63 <mailingList>
64 <name>Ant Developers List</name>
65 <subscribe>[email protected]</subscribe>
66 <unsubscribe>[email protected]</unsubscribe>
67 <post>[email protected]</post>
68 <archive>http://mail-archives.apache.org/mod_mbox/ant-dev</archive>
69 </mailingList>
70 <mailingList>
71 <name>Ant Users List</name>
72 <subscribe>[email protected]</subscribe>
73 <unsubscribe>[email protected]</unsubscribe>
74 <post>[email protected]</post>
75 <archive>http://mail-archives.apache.org/mod_mbox/ant-user</archive>
76 </mailingList>
77 </mailingLists>
78 <issueManagement>
79 <system>bugzilla</system>
80 <url>http://issues.apache.org/bugzilla/</url>
81 </issueManagement>
82 <modules>
83 <module>ant</module>
84 <module>ant-antlr</module>
85 <module>ant-apache-bcel</module>
86 <module>ant-apache-bsf</module>
87 <module>ant-apache-log4j</module>
88 <module>ant-apache-oro</module>
89 <module>ant-apache-regexp</module>
90 <module>ant-apache-resolver</module>
91 <module>ant-apache-xalan2</module>
92 <module>ant-commons-logging</module>
93 <module>ant-commons-net</module>
94 <module>ant-jai</module>
95 <module>ant-javamail</module>
96 <module>ant-jdepend</module>
97 <module>ant-jmf</module>
98 <module>ant-jsch</module>
99 <module>ant-junit</module>
100 <module>ant-junit4</module>
101 <module>ant-launcher</module>
102 <module>ant-netrexx</module>
103 <module>ant-swing</module>
104 <module>ant-testutil</module>
105 </modules>
106 <dependencies>
107 <dependency>
108 <groupId>junit</groupId>
109 <artifactId>junit</artifactId>
110 <version>3.8.2</version>
111 <scope>test</scope>
112 </dependency>
113 </dependencies>
114 <build>
115 <sourceDirectory>../../../src/main</sourceDirectory>
116 <testSourceDirectory>../../../src/testcases</testSourceDirectory>
117 <outputDirectory>../../../target/classes</outputDirectory>
118 <testOutputDirectory>../../../target/testcases</testOutputDirectory>
119 <pluginManagement>
120 <plugins>
121 <plugin>
122 <groupId>org.apache.maven.plugins</groupId>
123 <artifactId>maven-compiler-plugin</artifactId>
124 <version>2.3.2</version>
125 <configuration>
126 <source>1.5</source>
127 <target>1.5</target>
128 </configuration>
129 </plugin>
130 <plugin>
131 <groupId>org.apache.maven.plugins</groupId>
132 <artifactId>maven-jar-plugin</artifactId>
133 <version>2.4</version>
134 </plugin>
135 <plugin>
136 <groupId>org.apache.maven.plugins</groupId>
137 <artifactId>maven-surefire-plugin</artifactId>
138 <version>2.12</version>
139 </plugin>
140 <plugin>
141 <groupId>org.apache.maven.plugins</groupId>
142 <artifactId>maven-surefire-report-plugin</artifactId>
143 <version>2.12</version>
144 </plugin>
145 </plugins>
146 </pluginManagement>
147 </build>
148 <properties>
149 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
150 </properties>
151</project>
Note: See TracBrowser for help on using the repository browser.