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-codec/files/
Date: Tue, 20 Apr 2021 12:46:22
Message-Id: 1618922770.9afc58be0192edc1faa1a8c26b8ca75d0d4235b2.fordfrog@gentoo
1 commit: 9afc58be0192edc1faa1a8c26b8ca75d0d4235b2
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 20 12:46:10 2021 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 20 12:46:10 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9afc58be
7
8 dev-java/commons-codec: removed unused file
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.3
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 .../files/commons-codec-1.11-build.xml | 200 ---------------------
14 1 file changed, 200 deletions(-)
15
16 diff --git a/dev-java/commons-codec/files/commons-codec-1.11-build.xml b/dev-java/commons-codec/files/commons-codec-1.11-build.xml
17 deleted file mode 100644
18 index 251268136bf..00000000000
19 --- a/dev-java/commons-codec/files/commons-codec-1.11-build.xml
20 +++ /dev/null
21 @@ -1,200 +0,0 @@
22 -<?xml version="1.0" encoding="UTF-8"?>
23 -
24 -<!-- ====================================================================== -->
25 -<!-- Ant build file (http://ant.apache.org/) for Ant 1.6.2 or above. -->
26 -<!-- ====================================================================== -->
27 -
28 -<!-- ====================================================================== -->
29 -<!-- ===================== - DO NOT EDIT THIS FILE! - ===================== -->
30 -<!-- ====================================================================== -->
31 -<!-- -->
32 -<!-- Any modifications will be overwritten. -->
33 -<!-- -->
34 -<!-- Generated by Maven Ant Plugin on 5/27/18 9:10 AM -->
35 -<!-- See: http://maven.apache.org/plugins/maven-ant-plugin/ -->
36 -<!-- -->
37 -<!-- ====================================================================== -->
38 -
39 -<project name="commons-codec-from-maven" default="package" basedir=".">
40 -
41 - <!-- ====================================================================== -->
42 - <!-- Build environment properties -->
43 - <!-- ====================================================================== -->
44 -
45 - <property file="maven-build.properties"/>
46 -
47 - <property name="maven.build.finalName" value="commons-codec-1.11"/>
48 - <property name="maven.build.dir" value="target"/>
49 - <property name="maven.build.outputDir" value="${maven.build.dir}/classes"/>
50 - <property name="maven.build.srcDir.0" value="src/main/java"/>
51 - <property name="maven.build.resourceDir.0" value="src/main/resources"/>
52 - <property name="maven.build.resourceDir.1" value="."/>
53 - <property name="maven.build.testOutputDir" value="${maven.build.dir}/test-classes"/>
54 - <property name="maven.build.testDir.0" value="src/test/java"/>
55 - <property name="maven.build.testResourceDir.0" value="src/test/resources"/>
56 - <property name="maven.build.testResourceDir.1" value="."/>
57 - <property name="maven.test.reports" value="${maven.build.dir}/test-reports"/>
58 - <property name="maven.reporting.outputDirectory" value="${maven.build.dir}/site"/>
59 -
60 - <property name="maven.settings.offline" value="false"/>
61 - <property name="maven.settings.interactiveMode" value="true"/>
62 -
63 - <!-- ====================================================================== -->
64 - <!-- Defining classpaths -->
65 - <!-- ====================================================================== -->
66 -
67 - <path id="build.classpath"/>
68 - <path id="build.test.classpath">
69 - <pathelement location="${maven.repo.local}/junit/junit/4.12/junit-4.12.jar"/>
70 - <pathelement location="${maven.repo.local}/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar"/>
71 - <pathelement location="${maven.repo.local}/org/apache/commons/commons-lang3/3.5/commons-lang3-3.5.jar"/>
72 - </path>
73 -
74 - <!-- ====================================================================== -->
75 - <!-- Cleaning up target -->
76 - <!-- ====================================================================== -->
77 -
78 - <target name="clean" description="Clean the output directory">
79 - <delete dir="${maven.build.dir}"/>
80 - </target>
81 -
82 - <!-- ====================================================================== -->
83 - <!-- Compilation target -->
84 - <!-- ====================================================================== -->
85 -
86 - <target name="compile" description="Compile the code">
87 - <mkdir dir="${maven.build.outputDir}"/>
88 - <javac destdir="${maven.build.outputDir}"
89 - encoding="UTF-8"
90 - nowarn="false"
91 - debug="true"
92 - optimize="false"
93 - deprecation="true"
94 - target="1.6"
95 - verbose="false"
96 - fork="false"
97 - source="1.6">
98 - <src>
99 - <pathelement location="${maven.build.srcDir.0}"/>
100 - </src>
101 - <classpath refid="build.classpath"/>
102 - </javac>
103 - <copy todir="${maven.build.outputDir}">
104 - <fileset dir="${maven.build.resourceDir.0}"/>
105 - </copy>
106 - <mkdir dir="${maven.build.outputDir}/META-INF"/>
107 - <copy todir="${maven.build.outputDir}/META-INF">
108 - <fileset dir="${maven.build.resourceDir.1}">
109 - <include name="NOTICE.txt"/>
110 - <include name="LICENSE.txt"/>
111 - </fileset>
112 - </copy>
113 - </target>
114 -
115 - <!-- ====================================================================== -->
116 - <!-- Run all tests -->
117 - <!-- ====================================================================== -->
118 -
119 - <target name="test"
120 - description="Run the test cases">
121 - <mkdir dir="${maven.test.reports}"/>
122 - <junit printSummary="yes" haltonerror="true" haltonfailure="true" fork="true" dir=".">
123 - <sysproperty key="basedir" value="."/>
124 - <formatter type="xml"/>
125 - <formatter type="plain" usefile="false"/>
126 - <classpath>
127 - <path refid="build.test.classpath"/>
128 - <pathelement location="${maven.build.outputDir}"/>
129 - <pathelement location="${maven.build.testOutputDir}"/>
130 - </classpath>
131 - <batchtest todir="${maven.test.reports}" unless="test">
132 - <fileset dir="${maven.build.testDir.0}">
133 - <include name="**/Test*.java"/>
134 - <include name="**/*Test.java"/>
135 - <include name="**/*TestCase.java"/>
136 - <exclude name="**/*AbstractTest.java"/>
137 - <exclude name="**/*PerformanceTest.java"/>
138 - </fileset>
139 - </batchtest>
140 - <batchtest todir="${maven.test.reports}" if="test">
141 - <fileset dir="${maven.build.testDir.0}">
142 - <include name="**/${test}.java"/>
143 - <exclude name="**/*AbstractTest.java"/>
144 - <exclude name="**/*PerformanceTest.java"/>
145 - </fileset>
146 - </batchtest>
147 - </junit>
148 - </target>
149 -
150 - <!-- ====================================================================== -->
151 - <!-- Javadoc target -->
152 - <!-- ====================================================================== -->
153 -
154 - <target name="javadoc" description="Generates the Javadoc of the application">
155 - <javadoc sourcepath="${maven.build.srcDir.0}"
156 - packagenames="*"
157 - destdir="${maven.reporting.outputDirectory}/apidocs"
158 - access="protected"
159 - old="false"
160 - verbose="false"
161 - encoding="UTF-8"
162 - version="true"
163 - use="true"
164 - author="true"
165 - splitindex="false"
166 - nodeprecated="false"
167 - nodeprecatedlist="false"
168 - notree="false"
169 - noindex="false"
170 - nohelp="false"
171 - nonavbar="false"
172 - serialwarn="false"
173 - charset="ISO-8859-1"
174 - docencoding="UTF-8"
175 - source="1.6"
176 - linksource="true"
177 - breakiterator="false">
178 - <link href="http://docs.oracle.com/javase/7/docs/api/"/>
179 - <link href="http://docs.oracle.com/javaee/6/api/"/>
180 - </javadoc>
181 - </target>
182 -
183 - <!-- ====================================================================== -->
184 - <!-- Package target -->
185 - <!-- ====================================================================== -->
186 -
187 - <!--
188 - <target name="package" depends="compile" description="Package the application">
189 - <jar jarfile="${maven.build.dir}/${maven.build.finalName}.jar"
190 - compress="true"
191 - index="false"
192 - manifest="/var/tmp/portage/dev-java/commons-codec-1.11/work/commons-codec-1.11-src/target/osgi/MANIFEST.MF"
193 - basedir="${maven.build.outputDir}"
194 - excludes="**/package.html">
195 - <manifest>
196 - <attribute name="Main-Class"/>
197 - </manifest>
198 - </jar>
199 - </target>
200 - -->
201 -
202 - <target name="package" depends="compile" description="Package the application">
203 - <jar jarfile="${maven.build.dir}/${maven.build.finalName}.jar"
204 - compress="true"
205 - index="false"
206 - basedir="${maven.build.outputDir}"
207 - excludes="**/package.html">
208 - </jar>
209 - </target>
210 -
211 - <!-- ====================================================================== -->
212 - <!-- A dummy target for the package named after the type it creates -->
213 - <!-- ====================================================================== -->
214 -
215 - <target name="jar" depends="package" description="Builds the jar for the application"/>
216 -
217 - <!-- ====================================================================== -->
218 - <!-- Download dependencies target -->
219 - <!-- ====================================================================== -->
220 -
221 -</project>