kvm 0.0.1.pre

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (148) hide show
  1. data/.gitignore +3 -0
  2. data/.rvmrc +1 -0
  3. data/AGPL-3.0 +661 -0
  4. data/Gemfile +8 -0
  5. data/Gemfile.lock +32 -0
  6. data/LICENSE +23 -0
  7. data/README.md +73 -0
  8. data/Rakefile +48 -0
  9. data/bin/kvm +6 -0
  10. data/kvm.gemspec +28 -0
  11. data/lib/kvm.rb +286 -0
  12. data/lib/kvm/archive.rb +56 -0
  13. data/lib/kvm/artifact.rb +28 -0
  14. data/lib/kvm/db/jdbc_adapter.rb +71 -0
  15. data/lib/kvm/db/oracle.rb +23 -0
  16. data/lib/kvm/db/types.rb +11 -0
  17. data/lib/kvm/impex.rb +109 -0
  18. data/lib/kvm/log.rb +7 -0
  19. data/lib/kvm/resource.rb +72 -0
  20. data/lib/kvm/rice_release.rb +79 -0
  21. data/lib/kvm/rice_release_generated_dataset.rb +68 -0
  22. data/lib/kvm/source.rb +33 -0
  23. data/lib/kvm/subversion.rb +52 -0
  24. data/lib/kvm/version.rb +3 -0
  25. data/lib/kvm/wallet.rb +64 -0
  26. data/support/ant/INSTALL +2 -0
  27. data/support/ant/KEYS +1398 -0
  28. data/support/ant/LICENSE +272 -0
  29. data/support/ant/NOTICE +6 -0
  30. data/support/ant/README +97 -0
  31. data/support/ant/WHATSNEW +5467 -0
  32. data/support/ant/bin/ant +335 -0
  33. data/support/ant/bin/ant.bat +218 -0
  34. data/support/ant/bin/ant.cmd +93 -0
  35. data/support/ant/bin/antRun +24 -0
  36. data/support/ant/bin/antRun.bat +50 -0
  37. data/support/ant/bin/antRun.pl +66 -0
  38. data/support/ant/bin/antenv.cmd +98 -0
  39. data/support/ant/bin/complete-ant-cmd.pl +114 -0
  40. data/support/ant/bin/envset.cmd +131 -0
  41. data/support/ant/bin/lcp.bat +31 -0
  42. data/support/ant/bin/runant.pl +153 -0
  43. data/support/ant/bin/runant.py +102 -0
  44. data/support/ant/bin/runrc.cmd +60 -0
  45. data/support/ant/etc/ant-bootstrap.jar +0 -0
  46. data/support/ant/etc/changelog.xsl +148 -0
  47. data/support/ant/etc/checkstyle/checkstyle-frames.xsl +299 -0
  48. data/support/ant/etc/checkstyle/checkstyle-text.xsl +34 -0
  49. data/support/ant/etc/checkstyle/checkstyle-xdoc.xsl +130 -0
  50. data/support/ant/etc/coverage-frames.xsl +489 -0
  51. data/support/ant/etc/jdepend-frames.xsl +487 -0
  52. data/support/ant/etc/jdepend.xsl +276 -0
  53. data/support/ant/etc/junit-frames-xalan1.xsl +733 -0
  54. data/support/ant/etc/junit-frames.xsl +902 -0
  55. data/support/ant/etc/junit-noframes.xsl +478 -0
  56. data/support/ant/etc/log.xsl +203 -0
  57. data/support/ant/etc/maudit-frames.xsl +503 -0
  58. data/support/ant/etc/mmetrics-frames.xsl +1026 -0
  59. data/support/ant/etc/tagdiff.xsl +179 -0
  60. data/support/ant/fetch.xml +343 -0
  61. data/support/ant/get-m2.xml +121 -0
  62. data/support/ant/lib/README +3 -0
  63. data/support/ant/lib/ant-antlr.jar +0 -0
  64. data/support/ant/lib/ant-antlr.pom +76 -0
  65. data/support/ant/lib/ant-apache-bcel.jar +0 -0
  66. data/support/ant/lib/ant-apache-bcel.pom +72 -0
  67. data/support/ant/lib/ant-apache-bsf.jar +0 -0
  68. data/support/ant/lib/ant-apache-bsf.pom +75 -0
  69. data/support/ant/lib/ant-apache-log4j.jar +0 -0
  70. data/support/ant/lib/ant-apache-log4j.pom +70 -0
  71. data/support/ant/lib/ant-apache-oro.jar +0 -0
  72. data/support/ant/lib/ant-apache-oro.pom +75 -0
  73. data/support/ant/lib/ant-apache-regexp.jar +0 -0
  74. data/support/ant/lib/ant-apache-regexp.pom +71 -0
  75. data/support/ant/lib/ant-apache-resolver.jar +0 -0
  76. data/support/ant/lib/ant-apache-resolver.pom +70 -0
  77. data/support/ant/lib/ant-apache-xalan2.jar +0 -0
  78. data/support/ant/lib/ant-apache-xalan2.pom +95 -0
  79. data/support/ant/lib/ant-commons-logging.jar +0 -0
  80. data/support/ant/lib/ant-commons-logging.pom +71 -0
  81. data/support/ant/lib/ant-commons-net.jar +0 -0
  82. data/support/ant/lib/ant-commons-net.pom +76 -0
  83. data/support/ant/lib/ant-jai.jar +0 -0
  84. data/support/ant/lib/ant-jai.pom +85 -0
  85. data/support/ant/lib/ant-javamail.jar +0 -0
  86. data/support/ant/lib/ant-javamail.pom +79 -0
  87. data/support/ant/lib/ant-jdepend.jar +0 -0
  88. data/support/ant/lib/ant-jdepend.pom +73 -0
  89. data/support/ant/lib/ant-jmf.jar +0 -0
  90. data/support/ant/lib/ant-jmf.pom +66 -0
  91. data/support/ant/lib/ant-jsch.jar +0 -0
  92. data/support/ant/lib/ant-jsch.pom +75 -0
  93. data/support/ant/lib/ant-junit.jar +0 -0
  94. data/support/ant/lib/ant-junit.pom +101 -0
  95. data/support/ant/lib/ant-junit4.jar +0 -0
  96. data/support/ant/lib/ant-junit4.pom +71 -0
  97. data/support/ant/lib/ant-launcher.jar +0 -0
  98. data/support/ant/lib/ant-launcher.pom +58 -0
  99. data/support/ant/lib/ant-netrexx.jar +0 -0
  100. data/support/ant/lib/ant-netrexx.pom +99 -0
  101. data/support/ant/lib/ant-parent.pom +120 -0
  102. data/support/ant/lib/ant-swing.jar +0 -0
  103. data/support/ant/lib/ant-swing.pom +67 -0
  104. data/support/ant/lib/ant-testutil.jar +0 -0
  105. data/support/ant/lib/ant-testutil.pom +75 -0
  106. data/support/ant/lib/ant.jar +0 -0
  107. data/support/ant/lib/ant.pom +222 -0
  108. data/support/ant/lib/libraries.properties +65 -0
  109. data/test/data/files/rice-0.0.0.0-bin.tar.gz +0 -0
  110. data/test/data/svn/README.txt +5 -0
  111. data/test/data/svn/conf/authz +32 -0
  112. data/test/data/svn/conf/passwd +8 -0
  113. data/test/data/svn/conf/svnserve.conf +47 -0
  114. data/test/data/svn/db/current +1 -0
  115. data/test/data/svn/db/format +2 -0
  116. data/test/data/svn/db/fs-type +1 -0
  117. data/test/data/svn/db/fsfs.conf +37 -0
  118. data/test/data/svn/db/min-unpacked-rev +1 -0
  119. data/test/data/svn/db/rep-cache.db +0 -0
  120. data/test/data/svn/db/revprops/0/0 +5 -0
  121. data/test/data/svn/db/revprops/0/1 +13 -0
  122. data/test/data/svn/db/revs/0/0 +11 -0
  123. data/test/data/svn/db/revs/0/1 +0 -0
  124. data/test/data/svn/db/txn-current +1 -0
  125. data/test/data/svn/db/txn-current-lock +0 -0
  126. data/test/data/svn/db/uuid +1 -0
  127. data/test/data/svn/db/write-lock +0 -0
  128. data/test/data/svn/format +1 -0
  129. data/test/data/svn/hooks/post-commit.tmpl +50 -0
  130. data/test/data/svn/hooks/post-lock.tmpl +44 -0
  131. data/test/data/svn/hooks/post-revprop-change.tmpl +56 -0
  132. data/test/data/svn/hooks/post-unlock.tmpl +42 -0
  133. data/test/data/svn/hooks/pre-commit.tmpl +81 -0
  134. data/test/data/svn/hooks/pre-lock.tmpl +71 -0
  135. data/test/data/svn/hooks/pre-revprop-change.tmpl +66 -0
  136. data/test/data/svn/hooks/pre-unlock.tmpl +63 -0
  137. data/test/data/svn/hooks/start-commit.tmpl +65 -0
  138. data/test/data/svn/locks/db-logs.lock +3 -0
  139. data/test/data/svn/locks/db.lock +3 -0
  140. data/test/helper.rb +146 -0
  141. data/test/int_test_generate_sql.rb +58 -0
  142. data/test/test_archive.rb +35 -0
  143. data/test/test_generate_sql.rb +0 -0
  144. data/test/test_rice_release.rb +61 -0
  145. data/test/test_rice_release_generated_dataset.rb +12 -0
  146. data/test/test_source.rb +31 -0
  147. data/test/test_subversion.rb +20 -0
  148. metadata +298 -0
@@ -0,0 +1,58 @@
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-launcher</artifactId>
35
+ <version>1.8.2</version>
36
+ <name>Apache Ant Launcher</name>
37
+ <build>
38
+ <plugins>
39
+ <plugin>
40
+ <groupId>org.apache.maven.plugins</groupId>
41
+ <artifactId>maven-compiler-plugin</artifactId>
42
+ <configuration>
43
+ <source>1.4</source>
44
+ <target>1.4</target>
45
+ <includes>
46
+ <include>org/apache/tools/ant/launch/*.java</include>
47
+ </includes>
48
+
49
+ </configuration>
50
+ </plugin>
51
+ </plugins>
52
+ <sourceDirectory>../../../../src/main</sourceDirectory>
53
+ <testSourceDirectory>../../../../src/testcases</testSourceDirectory>
54
+ <outputDirectory>../../../../target/ant-launcher/classes</outputDirectory>
55
+ <testOutputDirectory>../../../../target/ant-launcher/testcases</testOutputDirectory>
56
+ <directory>../../../../target/ant-launcher</directory>
57
+ </build>
58
+ </project>
@@ -0,0 +1,99 @@
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
+ <parent>
26
+ <groupId>org.apache.ant</groupId>
27
+ <artifactId>ant-parent</artifactId>
28
+ <relativePath>../pom.xml</relativePath>
29
+ <version>1.8.2</version>
30
+ </parent>
31
+ <modelVersion>4.0.0</modelVersion>
32
+ <groupId>org.apache.ant</groupId>
33
+ <artifactId>ant-netrexx</artifactId>
34
+ <version>1.8.2</version>
35
+ <name>Apache Ant + NetRexx</name>
36
+ <description>NetRexxC task
37
+ dependency can be downloaded from http://www.ibm.com/software/awdtools/netrexx/download.html</description>
38
+ <dependencies>
39
+ <dependency>
40
+ <groupId>org.apache.ant</groupId>
41
+ <artifactId>ant</artifactId>
42
+ <version>1.8.2</version>
43
+ <scope>compile</scope>
44
+ </dependency>
45
+ <!-- Processed too early, before maven-antrun-plugin gets a chance to work:
46
+ <dependency>
47
+ <groupId>com.ibm.netrexx</groupId>
48
+ <artifactId>netrexx</artifactId>
49
+ <version>2.0.5</version>
50
+ <scope>system</scope>
51
+ <systemPath>${basedir}/../../../../lib/optional/NetRexxC.jar</systemPath>
52
+ </dependency>
53
+ -->
54
+ </dependencies>
55
+ <build>
56
+ <plugins>
57
+ <plugin>
58
+ <groupId>org.apache.maven.plugins</groupId>
59
+ <artifactId>maven-compiler-plugin</artifactId>
60
+ <configuration>
61
+ <source>1.4</source>
62
+ <target>1.4</target>
63
+ <includes>
64
+ <include>org/apache/tools/ant/taskdefs/optional/NetRexxC*</include>
65
+ </includes>
66
+ <!-- Need to use this rather than system scope as above: -->
67
+ <compilerArguments>
68
+ <extdirs>${basedir}/../../../../lib/optional</extdirs>
69
+ </compilerArguments>
70
+ </configuration>
71
+ </plugin>
72
+ <plugin>
73
+ <groupId>org.apache.maven.plugins</groupId>
74
+ <artifactId>maven-antrun-plugin</artifactId>
75
+ <version>1.4</version>
76
+ <executions>
77
+ <execution>
78
+ <phase>validate</phase>
79
+ <configuration>
80
+ <tasks>
81
+ <ant dir="${basedir}/../../../.." antfile="fetch.xml" target="netrexx">
82
+ <property name="dest" value="optional"/>
83
+ </ant>
84
+ </tasks>
85
+ </configuration>
86
+ <goals>
87
+ <goal>run</goal>
88
+ </goals>
89
+ </execution>
90
+ </executions>
91
+ </plugin>
92
+ </plugins>
93
+ <sourceDirectory>../../../../src/main</sourceDirectory>
94
+ <testSourceDirectory>../../../../src/testcases</testSourceDirectory>
95
+ <outputDirectory>../../../../target/${project.artifactId}/classes</outputDirectory>
96
+ <testOutputDirectory>../../../../target/${project.artifactId}/testcases</testOutputDirectory>
97
+ <directory>../../../../target/${project.artifactId}</directory>
98
+ </build>
99
+ </project>
@@ -0,0 +1,120 @@
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.2</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></url>
51
+ </repository>
52
+ </distributionManagement>
53
+ <scm>
54
+ <connection>scm:svn:http://svn.apache.org/repos/asf/ant/core/trunk</connection>
55
+ <developerConnection>scm:svn:https://svn.apache.org/repos/asf/ant/core/trunk</developerConnection>
56
+ <url>http://svn.apache.org/repos/asf/ant/core/trunk</url>
57
+ </scm>
58
+ <ciManagement>
59
+ <system>hudson</system>
60
+ <url>https://hudson.apache.org/hudson/job/Ant_BuildFromPOMs/</url>
61
+ </ciManagement>
62
+ <mailingLists>
63
+ <mailingList>
64
+ <name>Ant Developers List</name>
65
+ <subscribe>dev-subscribe@ant.apache.org</subscribe>
66
+ <unsubscribe>dev-unsubscribe@ant.apache.org</unsubscribe>
67
+ <post>dev@ant.apache.org</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>user-subscribe@ant.apache.org</subscribe>
73
+ <unsubscribe>user-unsubscribe@ant.apache.org</unsubscribe>
74
+ <post>user@ant.apache.org</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
+ </build>
120
+ </project>
@@ -0,0 +1,67 @@
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-swing</artifactId>
35
+ <version>1.8.2</version>
36
+ <name>Apache Ant + Swing</name>
37
+ <description>a listener and a splash task based on Swing</description>
38
+ <dependencies>
39
+ <dependency>
40
+ <groupId>org.apache.ant</groupId>
41
+ <artifactId>ant</artifactId>
42
+ <version>1.8.2</version>
43
+ <scope>compile</scope>
44
+ </dependency>
45
+ </dependencies>
46
+ <build>
47
+ <plugins>
48
+ <plugin>
49
+ <groupId>org.apache.maven.plugins</groupId>
50
+ <artifactId>maven-compiler-plugin</artifactId>
51
+ <configuration>
52
+ <source>1.4</source>
53
+ <target>1.4</target>
54
+ <includes>
55
+ <include>org/apache/tools/ant/taskdefs/optional/splash/*</include>
56
+ </includes>
57
+ </configuration>
58
+ </plugin>
59
+ </plugins>
60
+ <sourceDirectory>../../../../src/main</sourceDirectory>
61
+ <testSourceDirectory>../../../../src/testcases</testSourceDirectory>
62
+ <outputDirectory>../../../../target/${project.artifactId}/classes</outputDirectory>
63
+ <testOutputDirectory>../../../../target/${project.artifactId}/testcases</testOutputDirectory>
64
+ <directory>../../../../target/${project.artifactId}</directory>
65
+ </build>
66
+
67
+ </project>
@@ -0,0 +1,75 @@
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-testutil</artifactId>
35
+ <version>1.8.2</version>
36
+ <name>Apache Ant Test Utilities</name>
37
+ <description>test utility classes</description>
38
+ <dependencies>
39
+ <dependency>
40
+ <groupId>org.apache.ant</groupId>
41
+ <artifactId>ant</artifactId>
42
+ <version>1.8.2</version>
43
+ <scope>compile</scope>
44
+ </dependency>
45
+ <dependency>
46
+ <groupId>junit</groupId>
47
+ <artifactId>junit</artifactId>
48
+ <version>3.8.2</version>
49
+ <scope>compile</scope>
50
+ </dependency>
51
+ </dependencies>
52
+ <build>
53
+ <plugins>
54
+ <plugin>
55
+ <groupId>org.apache.maven.plugins</groupId>
56
+ <artifactId>maven-compiler-plugin</artifactId>
57
+ <configuration>
58
+ <source>1.4</source>
59
+ <target>1.4</target>
60
+ <includes>
61
+ <include>org/apache/tools/ant/BuildFileTest*</include>
62
+ <include>org/apache/tools/ant/util/regexp/RegexpMatcherTest*</include>
63
+ <include>org/apache/tools/ant/util/regexp/RegexpTest*</include>
64
+ <include>org/apache/tools/ant/taskdefs/optional/AbstractXSLTLiaisonTest*</include>
65
+ <include>org/apache/tools/ant/types/AbstractFileSetTest*</include>
66
+ </includes>
67
+ </configuration>
68
+ </plugin>
69
+ </plugins>
70
+ <sourceDirectory>../../../../src/tests/junit</sourceDirectory>
71
+ <outputDirectory>../../../../target/${project.artifactId}/classes</outputDirectory>
72
+ <directory>../../../../target/${project.artifactId}</directory>
73
+ </build>
74
+
75
+ </project>
Binary file
@@ -0,0 +1,222 @@
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</artifactId>
35
+ <version>1.8.2</version>
36
+ <name>Apache Ant Core</name>
37
+ <dependencies>
38
+ <dependency>
39
+ <groupId>org.apache.ant</groupId>
40
+ <artifactId>ant-launcher</artifactId>
41
+ <version>1.8.2</version>
42
+ <scope>compile</scope>
43
+ </dependency>
44
+ </dependencies>
45
+ <build>
46
+ <filters>
47
+ <filter>../../../../target/ant/.build.timestamp.properties</filter>
48
+ </filters>
49
+ <plugins>
50
+ <plugin>
51
+ <groupId>org.apache.maven.plugins</groupId>
52
+ <artifactId>maven-jar-plugin</artifactId>
53
+ <configuration> </configuration>
54
+ </plugin>
55
+ <plugin>
56
+ <artifactId>maven-antrun-plugin</artifactId>
57
+ <executions>
58
+ <execution>
59
+ <id>create-timestamp-file</id>
60
+ <phase>generate-resources</phase>
61
+ <goals>
62
+ <goal>run</goal>
63
+ </goals>
64
+ <configuration>
65
+ <tasks>
66
+ <tstamp/>
67
+ <mkdir dir="${project.build.directory}"/>
68
+ <touch file="${project.build.directory}/.build.timestamp.properties"/>
69
+ <echo file="${project.build.directory}/.build.timestamp.properties" append="false"
70
+ message="TODAY=${TODAY}"/>
71
+ </tasks>
72
+ </configuration>
73
+ </execution>
74
+ <execution>
75
+ <id>delete-timestamp-file</id>
76
+ <phase>clean</phase>
77
+ <goals>
78
+ <goal>run</goal>
79
+ </goals>
80
+ <configuration>
81
+ <tasks>
82
+ <delete file="${project.build.directory}/.build.timestamp.properties"/>
83
+ </tasks>
84
+ </configuration>
85
+ </execution>
86
+ </executions>
87
+ </plugin>
88
+ <plugin>
89
+ <groupId>org.apache.maven.plugins</groupId>
90
+ <artifactId>maven-compiler-plugin</artifactId>
91
+ <configuration>
92
+ <source>1.4</source>
93
+ <target>1.4</target>
94
+ <excludes>
95
+ <exclude>org/apache/tools/ant/filters/util/JavaClassHelper*</exclude>
96
+ <exclude>org/apache/tools/ant/types/resolver/**</exclude>
97
+ <exclude>org/apache/tools/ant/listener/Log4jListener*</exclude>
98
+ <exclude>org/apache/tools/ant/listener/CommonsLoggingListener*</exclude>
99
+ <exclude>org/apache/tools/ant/util/regexp/JakartaRegexp*</exclude>
100
+ <exclude>org/apache/tools/ant/util/regexp/JakartaOro*</exclude>
101
+ <exclude>org/apache/tools/ant/taskdefs/email/MimeMailer*</exclude>
102
+ <exclude>org/apache/tools/ant/launch/**</exclude>
103
+ <exclude>org/apache/tools/ant/taskdefs/optional/net/FTP*</exclude>
104
+ <exclude>org/apache/tools/ant/taskdefs/optional/net/RExec*</exclude>
105
+ <exclude>org/apache/tools/ant/taskdefs/optional/net/TelnetTask*</exclude>
106
+ <exclude>org/apache/tools/ant/taskdefs/optional/perforce/*</exclude>
107
+ <exclude>org/apache/tools/ant/taskdefs/optional/junit/*</exclude>
108
+ <exclude>org/apache/tools/ant/taskdefs/optional/ssh/*</exclude>
109
+ <exclude>org/apache/tools/ant/taskdefs/optional/image/*</exclude>
110
+ <exclude>org/apache/tools/ant/types/optional/image/*</exclude>
111
+ <exclude>org/apache/tools/ant/taskdefs/optional/Script*</exclude>
112
+ <exclude>org/apache/tools/ant/taskdefs/optional/script/**</exclude>
113
+ <exclude>org/apache/tools/ant/types/optional/*Script*</exclude>
114
+ <exclude>org/apache/tools/ant/util/ScriptRunner.java</exclude>
115
+ <exclude>org/apache/tools/ant/util/optional/ScriptRunner.java</exclude>
116
+ <exclude>org/apache/tools/ant/filters/util/JavaClassHelper*</exclude>
117
+ <exclude>org/apache/tools/ant/util/depend/bcel/*</exclude>
118
+ <exclude>org/apache/tools/ant/taskdefs/optional/NetRexxC*</exclude>
119
+ <exclude>org/apache/tools/ant/taskdefs/optional/Xalan2TraceSupport*</exclude>
120
+ <exclude>org/apache/tools/ant/taskdefs/optional/jdepend/*</exclude>
121
+ </excludes>
122
+ <testExcludes>
123
+ <exclude>org/apache/tools/ant/filters/util/JavaClassHelper*</exclude>
124
+ <exclude>org/apache/tools/ant/types/resolver/**</exclude>
125
+ <exclude>org/apache/tools/ant/util/Script*</exclude>
126
+ <exclude>org/apache/tools/ant/listener/Log4jListener*</exclude>
127
+ <exclude>org/apache/tools/ant/listener/CommonsLoggingListener*</exclude>
128
+ <exclude>org/apache/tools/ant/util/regexp/JakartaRegexp*</exclude>
129
+ <exclude>org/apache/tools/ant/util/regexp/JakartaOro*</exclude>
130
+ <exclude>org/apache/tools/ant/util/regexp/Jdk14Regexp*</exclude>
131
+ <exclude>org/apache/tools/ant/taskdefs/email/MimeMailer*</exclude>
132
+ <exclude>org/apache/tools/ant/launch/**</exclude>
133
+ <exclude>org/apache/tools/ant/taskdefs/StyleTest*</exclude>
134
+ <exclude>org/apache/tools/ant/taskdefs/optional/junit/</exclude>
135
+ <exclude>org/apache/tools/ant/taskdefs/optional/net/FTP*</exclude>
136
+ <exclude>org/apache/tools/ant/taskdefs/optional/ssh/*</exclude>
137
+ <exclude>org/apache/tools/ant/taskdefs/optional/perforce/*</exclude>
138
+ </testExcludes>
139
+ </configuration>
140
+ </plugin>
141
+ <plugin>
142
+ <groupId>org.apache.maven.plugins</groupId>
143
+ <artifactId>maven-surefire-plugin</artifactId>
144
+ <configuration>
145
+ <omitBasedir>true</omitBasedir>
146
+ <systemProperties>
147
+ <property>
148
+ <name>ant.home</name>
149
+ <value>${env.ANT_HOME}</value>
150
+ </property>
151
+ <property>
152
+ <name>build.tests</name>
153
+ <value>../../../../target/ant/testcases</value>
154
+ </property>
155
+ <property>
156
+ <name>build.tests.value</name>
157
+ <value>../../../../target/ant/testcases</value>
158
+ </property>
159
+ <property>
160
+ <name>offline</name>
161
+ <value>true</value>
162
+ </property>
163
+ <property>
164
+ <name>root</name>
165
+ <value>../../../..</value>
166
+ </property>
167
+ </systemProperties>
168
+ </configuration>
169
+ </plugin>
170
+ <plugin>
171
+ <groupId>org.apache.maven.plugins</groupId>
172
+ <artifactId>maven-surefire-report-plugin</artifactId>
173
+ </plugin>
174
+ </plugins>
175
+ <resources>
176
+ <resource>
177
+ <directory>../../../../src/main</directory>
178
+ <filtering>true</filtering>
179
+ <includes>
180
+ <include>org/apache/tools/ant/taskdefs/default.properties</include>
181
+ <include>org/apache/tools/ant/types/default.properties</include>
182
+ <include>org/apache/tools/ant/taskdefs/default.properties</include>
183
+ <include>org/apache/tools/ant/types/conditions/antlib.xml</include>
184
+ <include>org/apache/tools/ant/defaultManifest.mf</include>
185
+ <include>org/apache/tools/ant/version.txt</include>
186
+ </includes>
187
+ </resource>
188
+ <resource>
189
+ <directory>../../../../src/resources</directory>
190
+ <filtering>true</filtering>
191
+ <includes>
192
+ <include>**/antlib.xml</include>
193
+ </includes>
194
+ </resource>
195
+ <resource>
196
+ <directory>../../../../docs</directory>
197
+ <filtering>false</filtering>
198
+ <includes>
199
+ <include>images/ant_logo_large.gif</include>
200
+ </includes>
201
+ </resource>
202
+ </resources>
203
+ <testResources>
204
+ <testResource>
205
+ <directory>../../../../src/etc/testcases</directory>
206
+ <filtering>true</filtering>
207
+ </testResource>
208
+ <testResource>
209
+ <directory>../../../../src/main</directory>
210
+ <filtering>true</filtering>
211
+ <excludes>
212
+ <exclude>**/*.java</exclude>
213
+ </excludes>
214
+ </testResource>
215
+ </testResources>
216
+ <sourceDirectory>../../../../src/main</sourceDirectory>
217
+ <testSourceDirectory>../../../../src/tests/junit</testSourceDirectory>
218
+ <outputDirectory>../../../../target/ant/classes</outputDirectory>
219
+ <testOutputDirectory>../../../../target/ant/testcases</testOutputDirectory>
220
+ <directory>../../../../target/ant</directory>
221
+ </build>
222
+ </project>