Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/netty-buffer/files/
Date: Thu, 01 Oct 2015 08:39:50
Message-Id: 1443686142.0acba068e9b7ca354939ef403986f0493e63d2d1.monsieurp@gentoo
1 commit: 0acba068e9b7ca354939ef403986f0493e63d2d1
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 1 07:49:20 2015 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 1 07:55:42 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0acba068
7
8 dev-java/netty-buffer: Clean up old build xml file.
9
10 Package-Manager: portage-2.2.18
11 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
12
13 .../files/netty-buffer-4.0.19-build.xml | 231 ---------------------
14 1 file changed, 231 deletions(-)
15
16 diff --git a/dev-java/netty-buffer/files/netty-buffer-4.0.19-build.xml b/dev-java/netty-buffer/files/netty-buffer-4.0.19-build.xml
17 deleted file mode 100644
18 index 44fef21..0000000
19 --- a/dev-java/netty-buffer/files/netty-buffer-4.0.19-build.xml
20 +++ /dev/null
21 @@ -1,231 +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/15/14 7:12 PM -->
35 -<!-- See: http://maven.apache.org/plugins/maven-ant-plugin/ -->
36 -<!-- -->
37 -<!-- ====================================================================== -->
38 -
39 -<project name="netty-buffer-from-maven" default="package" basedir=".">
40 -
41 - <!-- ====================================================================== -->
42 - <!-- Build environment properties -->
43 - <!-- ====================================================================== -->
44 -
45 - <property file="${user.home}/.m2/maven.properties"/>
46 - <property file="maven-build.properties"/>
47 -
48 - <property name="maven.build.finalName" value="netty-buffer-4.0.19.Final"/>
49 - <property name="maven.build.dir" value="target"/>
50 - <property name="maven.build.outputDir" value="${maven.build.dir}/classes"/>
51 - <property name="maven.build.srcDir.0" value="src/main/java"/>
52 - <property name="maven.build.resourceDir.0" value="src/main/resources"/>
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.test.reports" value="${maven.build.dir}/test-reports"/>
57 - <property name="maven.reporting.outputDirectory" value="${maven.build.dir}/site"/>
58 -
59 - <property name="maven.repo.local" value="${user.home}/.m2/repository"/>
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>
69 - <path id="build.test.classpath">
70 - </path>
71 -
72 - <!-- ====================================================================== -->
73 - <!-- Cleaning up target -->
74 - <!-- ====================================================================== -->
75 -
76 - <target name="clean" description="Clean the output directory">
77 - <delete dir="${maven.build.dir}"/>
78 - </target>
79 -
80 - <!-- ====================================================================== -->
81 - <!-- Compilation target -->
82 - <!-- ====================================================================== -->
83 -
84 - <target name="compile" description="Compile the code">
85 - <mkdir dir="${maven.build.outputDir}"/>
86 - <javac destdir="${maven.build.outputDir}"
87 - nowarn="true"
88 - debug="true"
89 - optimize="true"
90 - deprecation="true"
91 - target="1.6"
92 - verbose="false"
93 - fork="true"
94 - memoryMaximumSize="256m"
95 - memoryInitialSize="1024m"
96 - source="1.6">
97 - <src>
98 - <pathelement location="${maven.build.srcDir.0}"/>
99 - </src>
100 - <classpath refid="build.classpath"/>
101 - </javac>
102 - </target>
103 -
104 - <!-- ====================================================================== -->
105 - <!-- Test-compilation target -->
106 - <!-- ====================================================================== -->
107 -
108 - <target name="compile-tests"
109 - depends="compile"
110 - description="Compile the test code"
111 - unless="maven.test.skip">
112 - <mkdir dir="${maven.build.testOutputDir}"/>
113 - <javac destdir="${maven.build.testOutputDir}"
114 - nowarn="true"
115 - debug="true"
116 - optimize="true"
117 - deprecation="true"
118 - target="1.6"
119 - verbose="false"
120 - fork="true"
121 - memoryMaximumSize="256m"
122 - memoryInitialSize="1024m"
123 - source="1.6">
124 - <src>
125 - <pathelement location="${maven.build.testDir.0}"/>
126 - </src>
127 - <classpath>
128 - <path refid="build.test.classpath"/>
129 - <pathelement location="${maven.build.outputDir}"/>
130 - </classpath>
131 - </javac>
132 - </target>
133 -
134 - <!-- ====================================================================== -->
135 - <!-- Run all tests -->
136 - <!-- ====================================================================== -->
137 -
138 - <target name="test"
139 - depends="compile-tests, junit-missing"
140 - unless="junit.skipped"
141 - description="Run the test cases">
142 - <mkdir dir="${maven.test.reports}"/>
143 - <junit printSummary="yes" haltonerror="true" haltonfailure="true" fork="true" dir=".">
144 - <sysproperty key="basedir" value="."/>
145 - <formatter type="xml"/>
146 - <formatter type="plain" usefile="false"/>
147 - <classpath>
148 - <path refid="build.test.classpath"/>
149 - <pathelement location="${maven.build.outputDir}"/>
150 - <pathelement location="${maven.build.testOutputDir}"/>
151 - </classpath>
152 - <batchtest todir="${maven.test.reports}" unless="test">
153 - <fileset dir="${maven.build.testDir.0}">
154 - <include name="**/*Test*.java"/>
155 - <include name="**/*Benchmark*.java"/>
156 - <exclude name="**/Abstract*"/>
157 - <exclude name="**/TestUtil*"/>
158 - </fileset>
159 - </batchtest>
160 - <batchtest todir="${maven.test.reports}" if="test">
161 - <fileset dir="${maven.build.testDir.0}">
162 - <include name="**/${test}.java"/>
163 - <exclude name="**/Abstract*"/>
164 - <exclude name="**/TestUtil*"/>
165 - </fileset>
166 - </batchtest>
167 - </junit>
168 - </target>
169 -
170 - <target name="test-junit-present">
171 - <available classname="junit.framework.Test" property="junit.present"/>
172 - </target>
173 -
174 - <target name="test-junit-status"
175 - depends="test-junit-present">
176 - <condition property="junit.missing">
177 - <and>
178 - <isfalse value="${junit.present}"/>
179 - <isfalse value="${maven.test.skip}"/>
180 - </and>
181 - </condition>
182 - <condition property="junit.skipped">
183 - <or>
184 - <isfalse value="${junit.present}"/>
185 - <istrue value="${maven.test.skip}"/>
186 - </or>
187 - </condition>
188 - </target>
189 -
190 - <target name="junit-missing"
191 - depends="test-junit-status"
192 - if="junit.missing">
193 - <echo>=================================== WARNING ===================================</echo>
194 - <echo> JUnit is not present in your $ANT_HOME/lib directory. Tests not executed.</echo>
195 - <echo>===============================================================================</echo>
196 - </target>
197 -
198 - <!-- ====================================================================== -->
199 - <!-- Javadoc target -->
200 - <!-- ====================================================================== -->
201 -
202 - <target name="javadoc" description="Generates the Javadoc of the application">
203 - <javadoc sourcepath="${maven.build.srcDir.0}"
204 - packagenames="*"
205 - destdir="${maven.reporting.outputDirectory}/apidocs"
206 - access="protected"
207 - old="false"
208 - verbose="false"
209 - version="false"
210 - use="true"
211 - author="false"
212 - splitindex="false"
213 - nodeprecated="false"
214 - nodeprecatedlist="false"
215 - notree="false"
216 - noindex="false"
217 - nohelp="false"
218 - nonavbar="false"
219 - serialwarn="false"
220 - charset="ISO-8859-1"
221 - linksource="false"
222 - breakiterator="true"/>
223 - </target>
224 -
225 - <!-- ====================================================================== -->
226 - <!-- Package target -->
227 - <!-- ====================================================================== -->
228 -
229 - <target name="package" depends="compile,test" description="Package the application">
230 - <jar jarfile="${maven.build.dir}/${maven.build.finalName}.jar"
231 - compress="true"
232 - index="false"
233 - basedir="${maven.build.outputDir}"
234 - excludes="**/package.html"/>
235 - </target>
236 -
237 - <!-- ====================================================================== -->
238 - <!-- A dummy target for the package named after the type it creates -->
239 - <!-- ====================================================================== -->
240 -
241 - <target name="jar" depends="package" description="Builds the jar for the application"/>
242 -
243 - <!-- ====================================================================== -->
244 - <!-- Download dependencies target -->
245 - <!-- ====================================================================== -->
246 -
247 - <target name="test-offline">
248 - <condition property="maven.mode.offline">
249 - <equals arg1="${maven.settings.offline}" arg2="true"/>
250 - </condition>
251 - </target>
252 -</project>