You are viewing a plain text version of this content. The canonical link for it is here.
Posted to batik-commits@xmlgraphics.apache.org by lb...@apache.org on 2015/03/04 15:36:17 UTC

svn commit: r1664016 - in /xmlgraphics/batik/branches/submodules_cyclic_deps: builddeps.sh buildpom.sh buildpoms.sh

Author: lbernardo
Date: Wed Mar  4 14:36:17 2015
New Revision: 1664016

URL: http://svn.apache.org/r1664016
Log:
added some comments regarding the generation of the dependencies diagram and the pom template files

Modified:
    xmlgraphics/batik/branches/submodules_cyclic_deps/builddeps.sh
    xmlgraphics/batik/branches/submodules_cyclic_deps/buildpom.sh
    xmlgraphics/batik/branches/submodules_cyclic_deps/buildpoms.sh

Modified: xmlgraphics/batik/branches/submodules_cyclic_deps/builddeps.sh
URL: http://svn.apache.org/viewvc/xmlgraphics/batik/branches/submodules_cyclic_deps/builddeps.sh?rev=1664016&r1=1664015&r2=1664016&view=diff
==============================================================================
--- xmlgraphics/batik/branches/submodules_cyclic_deps/builddeps.sh (original)
+++ xmlgraphics/batik/branches/submodules_cyclic_deps/builddeps.sh Wed Mar  4 14:36:17 2015
@@ -1,4 +1,8 @@
 #!/bin/bash
+# This scripts generates a diagram of the dependencies between the different jars.
+# To run it both jdeps (comes with jdk 1.8) and dot (comes with graphviz) need to
+# be present. The diagram, batik-jars-deps.svg, can be found in the checkdeps folder.
+# NOTE: Before running the script run "ant jars maven-artifacts".
 rm -rf checkdeps
 mkdir checkdeps
 ls -l batik-svn-trunk/maven/batik-*/*/*.jar | awk '{printf("cp %s checkdeps/\n", $9)}' > cp.sh

Modified: xmlgraphics/batik/branches/submodules_cyclic_deps/buildpom.sh
URL: http://svn.apache.org/viewvc/xmlgraphics/batik/branches/submodules_cyclic_deps/buildpom.sh?rev=1664016&r1=1664015&r2=1664016&view=diff
==============================================================================
--- xmlgraphics/batik/branches/submodules_cyclic_deps/buildpom.sh (original)
+++ xmlgraphics/batik/branches/submodules_cyclic_deps/buildpom.sh Wed Mar  4 14:36:17 2015
@@ -1,4 +1,5 @@
 #!/bin/bash
+# See buildpoms script. This is an auxiliar script used by buildpoms.sh.
 desc="Batik module description"
 case "$1" in
 'batik-anim')

Modified: xmlgraphics/batik/branches/submodules_cyclic_deps/buildpoms.sh
URL: http://svn.apache.org/viewvc/xmlgraphics/batik/branches/submodules_cyclic_deps/buildpoms.sh?rev=1664016&r1=1664015&r2=1664016&view=diff
==============================================================================
--- xmlgraphics/batik/branches/submodules_cyclic_deps/buildpoms.sh (original)
+++ xmlgraphics/batik/branches/submodules_cyclic_deps/buildpoms.sh Wed Mar  4 14:36:17 2015
@@ -1,4 +1,8 @@
 #!/bin/bash
+# This script is used to generate the pom files needed to build the maven jars.
+# After running the script the new pom template files are in the checkpoms directory;
+# check them and if they look OK move them to the sources directory. Note that
+# this script runs builddeps first.
 ./builddeps.sh
 rm -rf checkpoms
 mkdir checkpoms