Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/plexus-classworlds/files/
Date: Tue, 30 Aug 2022 22:57:55
Message-Id: 1661900256.9b670caae3a504da42741e7ce2b53ff9cb8a0807.conikost@gentoo
1 commit: 9b670caae3a504da42741e7ce2b53ff9cb8a0807
2 Author: Michael Mair-Keimberger <mmk <AT> levelnine <DOT> at>
3 AuthorDate: Tue Aug 30 16:58:48 2022 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 30 22:57:36 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b670caa
7
8 dev-java/plexus-classworlds: remove unused file
9
10 Signed-off-by: Michael Mair-Keimberger <mmk <AT> levelnine.at>
11 Portage 3.0.30 / pkgdev 0.2.1 / pkgcheck 0.10.11
12 Closes: https://github.com/gentoo/gentoo/pull/27074
13 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
14
15 dev-java/plexus-classworlds/files/2.2.3-build.xml | 126 ----------------------
16 1 file changed, 126 deletions(-)
17
18 diff --git a/dev-java/plexus-classworlds/files/2.2.3-build.xml b/dev-java/plexus-classworlds/files/2.2.3-build.xml
19 deleted file mode 100644
20 index ed1e6fe4fb8f..000000000000
21 --- a/dev-java/plexus-classworlds/files/2.2.3-build.xml
22 +++ /dev/null
23 @@ -1,126 +0,0 @@
24 -<?xml version="1.0" encoding="UTF-8"?>
25 -
26 -<project name="plexus-classworlds-from-maven" default="package" basedir=".">
27 - <property file="${user.home}/.m2/maven.properties" />
28 - <property file="maven-build.properties" />
29 -
30 - <property name="maven.build.finalName" value="plexus-classworlds-2.2.3" />
31 - <property name="maven.build.dir" value="target" />
32 - <property name="maven.build.outputDir" value="${maven.build.dir}/classes" />
33 - <property name="maven.build.srcDir.0" value="src/main/java" />
34 - <property name="maven.build.resourceDir.0" value="src/main/resources" />
35 - <property name="maven.build.testOutputDir" value="${maven.build.dir}/test-classes" />
36 - <property name="maven.build.testDir.0" value="src/test/java" />
37 - <property name="maven.build.testResourceDir.0" value="src/test/resources" />
38 - <property name="maven.test.reports" value="${maven.build.dir}/test-reports" />
39 - <property name="maven.reporting.outputDirectory" value="${maven.build.dir}/site" />
40 -
41 - <property name="maven.repo.local" value="${user.home}/.m2/repository" />
42 - <property name="maven.settings.offline" value="false" />
43 - <property name="maven.settings.interactiveMode" value="true" />
44 -
45 - <path id="build.classpath" />
46 - <path id="build.test.classpath" />
47 -
48 - <target name="clean" description="Clean the output directory">
49 - <delete dir="${maven.build.dir}" />
50 - </target>
51 -
52 - <target name="compile" description="Compile the code">
53 - <mkdir dir="${maven.build.outputDir}" />
54 - <javac destdir="${maven.build.outputDir}" excludes="org/codehaus/plexus/classworlds/event/*" encoding="UTF-8" nowarn="false" debug="true" optimize="false" deprecation="true" target="1.4" verbose="false" fork="false" source="1.4">
55 - <src>
56 - <pathelement location="${maven.build.srcDir.0}" />
57 - </src>
58 - <classpath refid="build.classpath" />
59 - </javac>
60 - </target>
61 -
62 - <target name="compile-tests" depends="compile" description="Compile the test code" unless="maven.test.skip">
63 - <mkdir dir="${maven.build.testOutputDir}" />
64 - <javac destdir="${maven.build.testOutputDir}" excludes="org/codehaus/plexus/classworlds/event/*" encoding="UTF-8" nowarn="false" debug="true" optimize="false" deprecation="true" target="1.4" verbose="false" fork="false" source="1.4">
65 - <src>
66 - <pathelement location="${maven.build.testDir.0}" />
67 - </src>
68 - <classpath>
69 - <path refid="build.test.classpath" />
70 - <pathelement location="${maven.build.outputDir}" />
71 - </classpath>
72 - </javac>
73 - </target>
74 -
75 - <target name="test" depends="compile-tests, junit-missing" unless="junit.skipped" description="Run the test cases">
76 - <mkdir dir="${maven.test.reports}" />
77 - <junit printSummary="yes" haltonerror="true" haltonfailure="true" fork="true" dir=".">
78 - <sysproperty key="basedir" value="." />
79 - <formatter type="xml" />
80 - <formatter type="plain" usefile="false" />
81 - <classpath>
82 - <path refid="build.test.classpath" />
83 - <pathelement location="${maven.build.outputDir}" />
84 - <pathelement location="${maven.build.testOutputDir}" />
85 - </classpath>
86 - <batchtest todir="${maven.test.reports}" unless="test">
87 - <fileset dir="${maven.build.testDir.0}">
88 - <include name="**/Test*.java" />
89 - <include name="**/*Test.java" />
90 - <include name="**/*TestCase.java" />
91 - <exclude name="**/*Abstract*Test.java" />
92 - <exclude name="**/*Abstract*TestCase.java" />
93 - <exclude name="**/*TestUtil.java" />
94 - <exclude name="**/*ConfiguratorTest.java" />
95 - </fileset>
96 - </batchtest>
97 - <batchtest todir="${maven.test.reports}" if="test">
98 - <fileset dir="${maven.build.testDir.0}">
99 - <include name="**/${test}.java" />
100 - <exclude name="**/*Abstract*Test.java" />
101 - <exclude name="**/*Abstract*TestCase.java" />
102 - <exclude name="**/*TestUtil.java" />
103 - <exclude name="**/*ConfiguratorTest.java" />
104 - </fileset>
105 - </batchtest>
106 - </junit>
107 - </target>
108 -
109 - <target name="test-junit-present">
110 - <available classname="junit.framework.Test" property="junit.present" />
111 - </target>
112 -
113 - <target name="test-junit-status" depends="test-junit-present">
114 - <condition property="junit.missing">
115 - <and>
116 - <isfalse value="${junit.present}" />
117 - <isfalse value="${maven.test.skip}" />
118 - </and>
119 - </condition>
120 - <condition property="junit.skipped">
121 - <or>
122 - <isfalse value="${junit.present}" />
123 - <istrue value="${maven.test.skip}" />
124 - </or>
125 - </condition>
126 - </target>
127 -
128 - <target name="junit-missing" depends="test-junit-status" if="junit.missing">
129 - <echo>=================================== WARNING ===================================</echo>
130 - <echo> JUnit is not present in your $ANT_HOME/lib directory. Tests not executed.</echo>
131 - <echo>===============================================================================</echo>
132 - </target>
133 -
134 - <target name="javadoc" description="Generates the Javadoc of the application">
135 - <javadoc sourcepath="${maven.build.srcDir.0}" packagenames="*" destdir="${maven.reporting.outputDirectory}/apidocs" access="protected" old="false" verbose="false" version="true" use="true" author="true" splitindex="false" nodeprecated="false" nodeprecatedlist="false" notree="false" noindex="false" nohelp="false" nonavbar="false" serialwarn="false" charset="ISO-8859-1" linksource="false" breakiterator="false" />
136 - </target>
137 -
138 - <target name="package" depends="compile,test" description="Package the application">
139 - <jar jarfile="${maven.build.dir}/${maven.build.finalName}.jar" compress="true" index="false" basedir="${maven.build.outputDir}" excludes="**/package.html" />
140 - </target>
141 -
142 - <target name="jar" depends="package" description="Builds the jar for the application" />
143 -
144 - <target name="test-offline">
145 - <condition property="maven.mode.offline">
146 - <equals arg1="${maven.settings.offline}" arg2="true" />
147 - </condition>
148 - </target>
149 -</project>