From: Eric P. <de...@us...> - 2005-05-24 13:11:10
|
dep4b 05/05/24 06:11:04 Modified: . maven.xml Log: Make the fact that we are creating FAKE dependencies more visible. Also update some missing ones. Revision Changes Path 1.30 +17 -1 maven-plugins/maven.xml Index: maven.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/maven.xml,v retrieving revision 1.29 retrieving revision 1.30 diff -u -r1.29 -r1.30 --- maven.xml 12 May 2005 14:39:03 -0000 1.29 +++ maven.xml 24 May 2005 13:11:04 -0000 1.30 @@ -9,7 +9,13 @@ <goal name="create-fake-artifacts"> <!-- Faking any non-free or not on ibiblio runtime dependencies --> - <ant:echo>Creating empty files for non-free runtime dependencies</ant:echo> + <ant:echo> +WARNING WARNING WARNING + +Creating empty files for non-free or unavailable runtime dependencies + +WARNING WARNING WARNING +</ant:echo> <!-- for the kodo plugin --> <ant:mkdir dir="${maven.repo.local}/kodo/jars/"/> @@ -49,6 +55,16 @@ <ant:mkdir dir="${maven.repo.local}/strutsdoc/jars/"/> <ant:touch file="${maven.repo.local}/strutsdoc/jars/strutsdoc-0.5.jar"/> + <!-- for the transform plugin --> + <ant:mkdir dir="${maven.repo.local}/jai/jars/"/> + <ant:touch file="${maven.repo.local}/jai/jars/jai_codec-1.1.2.jar"/> + <ant:touch file="${maven.repo.local}/jai/jars/jai_core-1.1.2.jar"/> + <ant:mkdir dir="${maven.repo.local}/docbook-xsl/jars/"/> + <ant:touch file="${maven.repo.local}/docbook-xsl/jars/saxon-extension-6.5.1.jar"/> + + <!-- for the weblogic plugin --> + <ant:mkdir dir="${maven.repo.local}/weblogic/jars/"/> + <ant:touch file="${maven.repo.local}/weblogic/jars/weblogic-8.1.2.0.jar"/> </goal> <goal name="plugins:clean"> |