Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/commons-digester/files/
Date: Sat, 19 Feb 2022 09:29:19
Message-Id: 1645262954.285b61abdc494d10fea6746215ee890edcf75352.fordfrog@gentoo
1 commit: 285b61abdc494d10fea6746215ee890edcf75352
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Fri Feb 18 18:49:17 2022 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 19 09:29:14 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=285b61ab
7
8 dev-java/commons-digester: remove unused file
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
12 Closes: https://github.com/gentoo/gentoo/pull/24255
13 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
14
15 .../files/commons-digester-2.1-build.xml | 294 ---------------------
16 1 file changed, 294 deletions(-)
17
18 diff --git a/dev-java/commons-digester/files/commons-digester-2.1-build.xml b/dev-java/commons-digester/files/commons-digester-2.1-build.xml
19 deleted file mode 100644
20 index 505df88a8abc..000000000000
21 --- a/dev-java/commons-digester/files/commons-digester-2.1-build.xml
22 +++ /dev/null
23 @@ -1,294 +0,0 @@
24 -<?xml version="1.0" encoding="UTF-8"?>
25 -
26 -<!-- ====================================================================== -->
27 -<!-- Ant build file (http://ant.apache.org/) for Ant 1.6.2 or above. -->
28 -<!-- ====================================================================== -->
29 -
30 -<!-- ====================================================================== -->
31 -<!-- ===================== - DO NOT EDIT THIS FILE! - ===================== -->
32 -<!-- ====================================================================== -->
33 -<!-- -->
34 -<!-- Any modifications will be overwritten. -->
35 -<!-- -->
36 -<!-- Generated by Maven Ant Plugin on 8/12/13 6:51 PM -->
37 -<!-- See: http://maven.apache.org/plugins/maven-ant-plugin/ -->
38 -<!-- -->
39 -<!-- ====================================================================== -->
40 -
41 -<project name="commons-digester-from-maven" default="package" basedir=".">
42 -
43 - <!-- ====================================================================== -->
44 - <!-- Build environment properties -->
45 - <!-- ====================================================================== -->
46 -
47 - <property file="${user.home}/.m2/maven.properties"/>
48 - <property file="maven-build.properties"/>
49 -
50 - <property name="maven.build.finalName" value="commons-digester"/>
51 - <property name="maven.build.dir" value="target"/>
52 - <property name="maven.build.outputDir" value="${maven.build.dir}/classes"/>
53 - <property name="maven.build.srcDir.0" value="src/main/java"/>
54 - <property name="maven.build.resourceDir.0" value="."/>
55 - <property name="maven.build.resourceDir.1" value="src/main/resources"/>
56 - <property name="maven.build.testOutputDir" value="${maven.build.dir}/test-classes"/>
57 - <property name="maven.build.testDir.0" value="src/test/java"/>
58 - <property name="maven.build.testResourceDir.0" value="src/test/resources"/>
59 - <property name="maven.test.reports" value="${maven.build.dir}/test-reports"/>
60 - <property name="maven.reporting.outputDirectory" value="${maven.build.dir}/site"/>
61 -
62 - <property name="maven.repo.local" value="${user.home}/.m2/repository"/>
63 - <property name="maven.settings.offline" value="false"/>
64 - <property name="maven.settings.interactiveMode" value="true"/>
65 -
66 - <!-- ====================================================================== -->
67 - <!-- Defining classpaths -->
68 - <!-- ====================================================================== -->
69 -
70 - <path id="build.classpath">
71 - </path>
72 - <path id="build.test.classpath">
73 - </path>
74 -
75 - <!-- ====================================================================== -->
76 - <!-- Cleaning up target -->
77 - <!-- ====================================================================== -->
78 -
79 - <target name="clean" description="Clean the output directory">
80 - <delete dir="${maven.build.dir}"/>
81 - </target>
82 -
83 - <!-- ====================================================================== -->
84 - <!-- Compilation target -->
85 - <!-- ====================================================================== -->
86 -
87 - <target name="compile" depends="get-deps" description="Compile the code">
88 - <mkdir dir="${maven.build.outputDir}"/>
89 - <javac destdir="${maven.build.outputDir}"
90 - encoding="iso-8859-1"
91 - nowarn="false"
92 - debug="true"
93 - optimize="false"
94 - deprecation="true"
95 - target="1.5"
96 - verbose="false"
97 - fork="false"
98 - source="1.5">
99 - <src>
100 - <pathelement location="${maven.build.srcDir.0}"/>
101 - </src>
102 - <classpath refid="build.classpath"/>
103 - </javac>
104 - <mkdir dir="${maven.build.outputDir}/META-INF"/>
105 - <copy todir="${maven.build.outputDir}/META-INF">
106 - <fileset dir="${maven.build.resourceDir.0}">
107 - <include name="NOTICE.txt"/>
108 - <include name="LICENSE.txt"/>
109 - </fileset>
110 - </copy>
111 - <copy todir="${maven.build.outputDir}">
112 - <fileset dir="${maven.build.resourceDir.1}">
113 - <include name="**/*.dtd"/>
114 - </fileset>
115 - </copy>
116 - </target>
117 -
118 - <!-- ====================================================================== -->
119 - <!-- Test-compilation target -->
120 - <!-- ====================================================================== -->
121 -
122 - <target name="compile-tests"
123 - depends="compile"
124 - description="Compile the test code"
125 - unless="maven.test.skip">
126 - <mkdir dir="${maven.build.testOutputDir}"/>
127 - <javac destdir="${maven.build.testOutputDir}"
128 - encoding="iso-8859-1"
129 - nowarn="false"
130 - debug="true"
131 - optimize="false"
132 - deprecation="true"
133 - target="1.5"
134 - verbose="false"
135 - fork="false"
136 - source="1.5">
137 - <src>
138 - <pathelement location="${maven.build.testDir.0}"/>
139 - </src>
140 - <classpath>
141 - <path refid="build.test.classpath"/>
142 - <pathelement location="${maven.build.outputDir}"/>
143 - </classpath>
144 - </javac>
145 - <copy todir="${maven.build.testOutputDir}">
146 - <fileset dir="${maven.build.testResourceDir.0}">
147 - <include name="**/*.xml"/>
148 - <include name="**/*.xsd"/>
149 - </fileset>
150 - </copy>
151 - </target>
152 -
153 - <!-- ====================================================================== -->
154 - <!-- Run all tests -->
155 - <!-- ====================================================================== -->
156 -
157 - <target name="test"
158 - depends="compile-tests, junit-missing"
159 - unless="junit.skipped"
160 - description="Run the test cases">
161 - <mkdir dir="${maven.test.reports}"/>
162 - <junit printSummary="yes" haltonerror="true" haltonfailure="true" fork="true" dir=".">
163 - <sysproperty key="basedir" value="."/>
164 - <formatter type="xml"/>
165 - <formatter type="plain" usefile="false"/>
166 - <classpath>
167 - <path refid="build.test.classpath"/>
168 - <pathelement location="${maven.build.outputDir}"/>
169 - <pathelement location="${maven.build.testOutputDir}"/>
170 - </classpath>
171 - <batchtest todir="${maven.test.reports}" unless="test">
172 - <fileset dir="${maven.build.testDir.0}">
173 - <include name="**/Test*.java"/>
174 - <include name="**/*Test.java"/>
175 - <include name="**/*TestCase.java"/>
176 - <exclude name="**/TestBean.java"/>
177 - <exclude name="**/TestRule.java"/>
178 - <exclude name="**/TestRuleSet.java"/>
179 - <exclude name="**/Test*$*.java"/>
180 - <exclude name="**/*Abstract*.java"/>
181 - </fileset>
182 - </batchtest>
183 - <batchtest todir="${maven.test.reports}" if="test">
184 - <fileset dir="${maven.build.testDir.0}">
185 - <include name="**/${test}.java"/>
186 - <exclude name="**/TestBean.java"/>
187 - <exclude name="**/TestRule.java"/>
188 - <exclude name="**/TestRuleSet.java"/>
189 - <exclude name="**/Test*$*.java"/>
190 - </fileset>
191 - </batchtest>
192 - </junit>
193 - </target>
194 -
195 - <target name="test-junit-present">
196 - <available classname="junit.framework.Test" property="junit.present"/>
197 - </target>
198 -
199 - <target name="test-junit-status"
200 - depends="test-junit-present">
201 - <condition property="junit.missing">
202 - <and>
203 - <isfalse value="${junit.present}"/>
204 - <isfalse value="${maven.test.skip}"/>
205 - </and>
206 - </condition>
207 - <condition property="junit.skipped">
208 - <or>
209 - <isfalse value="${junit.present}"/>
210 - <istrue value="${maven.test.skip}"/>
211 - </or>
212 - </condition>
213 - </target>
214 -
215 - <target name="junit-missing"
216 - depends="test-junit-status"
217 - if="junit.missing">
218 - <echo>=================================== WARNING ===================================</echo>
219 - <echo> JUnit is not present in your $ANT_HOME/lib directory. Tests not executed.</echo>
220 - <echo>===============================================================================</echo>
221 - </target>
222 -
223 - <!-- ====================================================================== -->
224 - <!-- Javadoc target -->
225 - <!-- ====================================================================== -->
226 -
227 - <target name="javadoc" description="Generates the Javadoc of the application">
228 - <javadoc sourcepath="${maven.build.srcDir.0}"
229 - packagenames="*"
230 - destdir="${maven.reporting.outputDirectory}/apidocs"
231 - access="protected"
232 - old="false"
233 - verbose="false"
234 - encoding="iso-8859-1"
235 - version="true"
236 - use="true"
237 - author="true"
238 - splitindex="false"
239 - nodeprecated="false"
240 - nodeprecatedlist="false"
241 - notree="false"
242 - noindex="false"
243 - nohelp="false"
244 - nonavbar="false"
245 - serialwarn="false"
246 - charset="ISO-8859-1"
247 - source="1.5"
248 - linksource="true"
249 - breakiterator="false">
250 - <link href="http://java.sun.com/javase/6/docs/api/"/>
251 - </javadoc>
252 - </target>
253 -
254 - <!-- ====================================================================== -->
255 - <!-- Package target -->
256 - <!-- ====================================================================== -->
257 -
258 - <target name="package" depends="compile" description="Package the application">
259 - <jar jarfile="${maven.build.dir}/${maven.build.finalName}.jar"
260 - compress="true"
261 - index="false"
262 - basedir="${maven.build.outputDir}"
263 - excludes="**/package.html">
264 - </jar>
265 - </target>
266 -
267 - <!-- ====================================================================== -->
268 - <!-- A dummy target for the package named after the type it creates -->
269 - <!-- ====================================================================== -->
270 -
271 - <target name="jar" depends="package" description="Builds the jar for the application"/>
272 -
273 - <!-- ====================================================================== -->
274 - <!-- Download dependencies target -->
275 - <!-- ====================================================================== -->
276 -
277 - <target name="test-offline">
278 - <condition property="maven.mode.offline">
279 - <equals arg1="${maven.settings.offline}" arg2="true"/>
280 - </condition>
281 - </target>
282 -
283 - <target name="get-deps"
284 - depends="test-offline"
285 - description="Download all dependencies"
286 - unless="maven.mode.offline">
287 - <mkdir dir="${maven.repo.local}"/>
288 - <mkdir dir="${maven.repo.local}/commons-beanutils/commons-beanutils/1.8.3"/>
289 - <get src="http://repository.apache.org/snapshots/commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar"
290 - dest="${maven.repo.local}/commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar"
291 - usetimestamp="false"
292 - ignoreerrors="true"/>
293 - <get src="http://repo.maven.apache.org/maven2/commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar"
294 - dest="${maven.repo.local}/commons-beanutils/commons-beanutils/1.8.3/commons-beanutils-1.8.3.jar"
295 - usetimestamp="false"
296 - ignoreerrors="true"/>
297 - <mkdir dir="${maven.repo.local}/commons-logging/commons-logging/1.1.1"/>
298 - <get src="http://repository.apache.org/snapshots/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar"
299 - dest="${maven.repo.local}/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar"
300 - usetimestamp="false"
301 - ignoreerrors="true"/>
302 - <get src="http://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar"
303 - dest="${maven.repo.local}/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar"
304 - usetimestamp="false"
305 - ignoreerrors="true"/>
306 - <mkdir dir="${maven.repo.local}/junit/junit/4.8.1"/>
307 - <get src="http://repository.apache.org/snapshots/junit/junit/4.8.1/junit-4.8.1.jar"
308 - dest="${maven.repo.local}/junit/junit/4.8.1/junit-4.8.1.jar"
309 - usetimestamp="false"
310 - ignoreerrors="true"/>
311 - <get src="http://repo.maven.apache.org/maven2/junit/junit/4.8.1/junit-4.8.1.jar"
312 - dest="${maven.repo.local}/junit/junit/4.8.1/junit-4.8.1.jar"
313 - usetimestamp="false"
314 - ignoreerrors="true"/>
315 - </target>
316 -
317 -</project>