Skip to content

Commit 27960b6

Browse files
committed
remove userguide
1 parent fcee80a commit 27960b6

19 files changed

+11
-5284
lines changed

Makefile

Lines changed: 0 additions & 19 deletions
This file was deleted.

NUnit.ReadMe

Lines changed: 0 additions & 46 deletions
This file was deleted.

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
This is a temporary repository used during the migration of the
2+
XMLUnit 2.x code base from svn to git while also splitting the Java
3+
and .NET parts.

README.txt

Lines changed: 0 additions & 128 deletions
This file was deleted.

build.xml

Lines changed: 6 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,9 @@
3232
<property name="coretest.out.dir" value="${build.dir}/core-test-classes"/>
3333
<property name="legacytest.out.dir" value="${build.dir}/legacy-test-classes"/>
3434
<property name="hamcresttest.out.dir" value="${build.dir}/hamcrest-test-classes"/>
35-
<property name="userguide.out.dir" value="${build.dir}/ug-classes"/>
3635
<property name="test.report.dir" value="${build.dir}/test-report"/>
3736
<property name="dist.dir" value="${build.dir}/dist"/>
3837
<property name="docs.dir" value="${build.dir}/doc"/>
39-
<property name="userguide.docs.dir" value="${docs.dir}/userguide"/>
4038

4139
<!-- javac properties -->
4240
<property name="javac.source" value="6"/>
@@ -46,9 +44,6 @@
4644
<!-- junit task properties -->
4745
<property name="junit.fork" value="yes"/>
4846

49-
<!-- Docbook related properties, macros and targets -->
50-
<import file="docbook.xml"/>
51-
5247
<target name="-props">
5348
<available property="regexp.present" classname="java.util.regex.Matcher"/>
5449
</target>
@@ -64,7 +59,6 @@
6459
<mkdir dir="${test.report.dir}"/>
6560
<mkdir dir="${dist.dir}"/>
6661
<mkdir dir="${docs.dir}"/>
67-
<mkdir dir="${userguide.docs.dir}"/>
6862
<mkdir dir="${gen.src.dir}"/>
6963
</target>
7064

@@ -81,7 +75,6 @@
8175
<fileset dir="${test.report.dir}"/>
8276
<fileset dir="${dist.dir}"/>
8377
<fileset dir="${docs.dir}"/>
84-
<fileset dir="${userguide.docs.dir}"/>
8578
<fileset dir="${build.dir}"/>
8679
</delete>
8780
</target>
@@ -214,7 +207,7 @@
214207
</target>
215208

216209
<target name="docs"
217-
depends="create-users-guide,javadocs,-site"
210+
depends="javadocs"
218211
description="creates the documentation bundle"/>
219212

220213
<target name="javadocs" depends="-init"
@@ -238,15 +231,6 @@
238231
</javadoc>
239232
</target>
240233

241-
<target name="-site" depends="-init">
242-
<copy todir="${docs.dir}">
243-
<fileset dir="${src.dir}/site">
244-
<include name="*.html"/>
245-
<include name="*.png"/>
246-
</fileset>
247-
</copy>
248-
</target>
249-
250234
<target name="jar" depends="compile"
251235
description="creates jar, Maven2 POM and Ivy file">
252236
<jar jarfile="${lib.dir}/xmlunit-core-${xmlunit.version}.jar"
@@ -301,27 +285,24 @@
301285
</zip>
302286
</target>
303287

304-
<target name="srcdist" depends="-init,create-users-guide">
288+
<target name="srcdist" depends="-init">
305289
<zip zipfile="${dist.dir}/xmlunit-${xmlunit.version}-src.zip">
306290
<zipfileset prefix="xmlunit-${xmlunit.version}" dir=".">
307291
<include name="*.xml"/>
308292
<include name="${src.dir}/"/>
309293
<include name="${test.dir}/"/>
310294
<include name="KEYS"/>
311-
<include name="LICENSE.txt"/>
312-
<include name="README.txt"/>
313-
<exclude name="**/csharp/**"/>
295+
<include name="LICENSE"/>
296+
<include name="README.md"/>
314297
</zipfileset>
315-
<zipfileset dir="${userguide.docs.dir}"
316-
prefix="xmlunit-${xmlunit.version}/userguide"/>
317298
</zip>
318299
</target>
319300

320301
<target name="dist"
321-
depends="clean,bindist,srcdist,compile-userguide-examples"
302+
depends="clean,bindist,srcdist"
322303
description="creates the distribution files">
323304
<jar jarfile="${lib.dir}/xmlunit-${xmlunit.version}-sources.jar"
324-
basedir="${src.dir}/java"
305+
basedir="${src.dir}/java-core"
325306
/>
326307
<jar jarfile="${lib.dir}/xmlunit-${xmlunit.version}-javadoc.jar"
327308
basedir="${docs.dir}/api"
@@ -346,16 +327,4 @@
346327
</checksum>
347328
</target>
348329

349-
<target name="compile-userguide-examples" depends="compile">
350-
<mkdir dir="${userguide.out.dir}"/>
351-
<javac srcdir="src/user-guide" includes="org/"
352-
includeantruntime="false"
353-
destdir="${userguide.out.dir}" source="1.3" target="1.2">
354-
<classpath>
355-
<pathelement location="${legacy.out.dir}"/>
356-
<fileset dir="lib" includes="junit-3*.jar"/>
357-
</classpath>
358-
</javac>
359-
<delete dir="${userguide.out.dir}"/>
360-
</target>
361330
</project>

0 commit comments

Comments
 (0)