stephan 2003/03/22 08:46:38
Modified: . build.new.xml
src/targets compile-build.xml init-build.xml
Added: src/resources/targetdocs compile-targets.dia
compile-targets.png docs-targets.dia
docs-targets.png init-targets.dia init-targets.png
samples-targets.dia samples-targets.png
test-targets.dia test-targets.png
validate-targets.dia validate-targets.png
webapp-targets.dia webapp-targets.png
Log:
Creating dependency graphs to try understanding the build process.
Generated with Dia.
Revision Changes Path
1.3 +11 -11 cocoon-2.1/build.new.xml
Index: build.new.xml
===================================================================
RCS file: /home/cvs/cocoon-2.1/build.new.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- build.new.xml 22 Mar 2003 15:05:38 -0000 1.2
+++ build.new.xml 22 Mar 2003 16:46:38 -0000 1.3
@@ -20,23 +20,23 @@
<!-- Compile targets --> <import file="${targets}/compile-build.xml"/>
<!-- ==========================================================================
-->
<!-- Validation targets --> <import file="${targets}/validate-build.xml"/>
- <!-- ========================================================================= -->
- <!-- Samples targets --> <import file="${targets}/samples-build.xml"/>
- <!-- ========================================================================= -->
+ <!--
========================================================================== -->
+ <!-- Samples targets --> <import file="${targets}/samples-build.xml"/>
+ <!-- ==========================================================================
-->
<!-- Web application targets --> <import file="${targets}/webapp-build.xml"/>
- <!-- ========================================================================= -->
+ <!-- ==========================================================================
-->
<!-- IDE targets --> <import file="${targets}/ide-build.xml"/>
- <!-- ========================================================================= -->
+ <!-- ==========================================================================
-->
<!-- Testcases targets --> <import file="${targets}/test-build.xml"/>
- <!-- ========================================================================= -->
+ <!-- ==========================================================================
-->
<!-- Documentation targets --> <import file="${targets}/docs-build.xml"/>
- <!-- ========================================================================= -->
+ <!-- ==========================================================================
-->
- <!-- ====================== Forrest targets ================================= -->
+ <!-- ====================== Forrest targets ==================================
-->
- <!-- ========================================================================= -->
+ <!-- ==========================================================================
-->
<!-- Forrest targets --> <import file="${targets}/forrest-build.xml"/>
- <!-- ========================================================================= -->
+ <!-- ==========================================================================
-->
</project>
1.1 cocoon-2.1/src/resources/targetdocs/compile-targets.dia
<<Binary file>>
1.1 cocoon-2.1/src/resources/targetdocs/compile-targets.png
<<Binary file>>
1.1 cocoon-2.1/src/resources/targetdocs/docs-targets.dia
<<Binary file>>
1.1 cocoon-2.1/src/resources/targetdocs/docs-targets.png
<<Binary file>>
1.1 cocoon-2.1/src/resources/targetdocs/init-targets.dia
<<Binary file>>
1.1 cocoon-2.1/src/resources/targetdocs/init-targets.png
<<Binary file>>
1.1 cocoon-2.1/src/resources/targetdocs/samples-targets.dia
<<Binary file>>
1.1 cocoon-2.1/src/resources/targetdocs/samples-targets.png
<<Binary file>>
1.1 cocoon-2.1/src/resources/targetdocs/test-targets.dia
<<Binary file>>
1.1 cocoon-2.1/src/resources/targetdocs/test-targets.png
<<Binary file>>
1.1 cocoon-2.1/src/resources/targetdocs/validate-targets.dia
<<Binary file>>
1.1 cocoon-2.1/src/resources/targetdocs/validate-targets.png
<<Binary file>>
1.1 cocoon-2.1/src/resources/targetdocs/webapp-targets.dia
<<Binary file>>
1.1 cocoon-2.1/src/resources/targetdocs/webapp-targets.png
<<Binary file>>
1.3 +6 -0 cocoon-2.1/src/targets/compile-build.xml
Index: compile-build.xml
===================================================================
RCS file: /home/cvs/cocoon-2.1/src/targets/compile-build.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- compile-build.xml 22 Mar 2003 15:05:38 -0000 1.2
+++ compile-build.xml 22 Mar 2003 16:46:38 -0000 1.3
@@ -5,6 +5,12 @@
<!-- compiles everything -->
<target name="compile" depends="compile-core, compile-scratchpad,
compile-deprecated"/>
+ <!-- Prepare the build directories -->
+ <target name="prepare-core" depends="prepare">
+ <mkdir dir="${build.dest}"/>
+ <mkdir dir="${build.mocks}"/>
+ </target>
+
<!-- compiles the core -->
<target name="compile-core" depends="prepare-core">
1.3 +0 -6 cocoon-2.1/src/targets/init-build.xml
Index: init-build.xml
===================================================================
RCS file: /home/cvs/cocoon-2.1/src/targets/init-build.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- init-build.xml 22 Mar 2003 15:05:38 -0000 1.2
+++ init-build.xml 22 Mar 2003 16:46:38 -0000 1.3
@@ -178,12 +178,6 @@
<mkdir dir="${build}"/>
</target>
- <!-- Prepare the build directories -->
- <target name="prepare-core" depends="prepare">
- <mkdir dir="${build.dest}"/>
- <mkdir dir="${build.mocks}"/>
- </target>
-
<!-- Clean Targets ========================================================= -->
<!-- Clean -->