leosimons 2003/12/02 11:43:00 Modified: . maven-common-gump-build.xml Log: allow for the "no dependency on altrmi" build of the manager again Revision Changes Path 1.6 +10 -4 avalon-excalibur/maven-common-gump-build.xml Index: maven-common-gump-build.xml =================================================================== RCS file: /home/cvs/avalon-excalibur/maven-common-gump-build.xml,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- maven-common-gump-build.xml 2 Dec 2003 19:24:24 -0000 1.5 +++ maven-common-gump-build.xml 2 Dec 2003 19:43:00 -0000 1.6 @@ -38,6 +38,9 @@ jarfile = ${maven.build.dir}/${project.name}-${project.version}.jar javadocs = ${maven.build.dir}/docs/apidocs junitreports = ${maven.build.dir}/docs/junitreports + + src.exclude.pattern = ${src.exclude.pattern} + test.exclude.pattern = ${test.exclude.pattern} ======================================================================= </echo> </target> @@ -106,6 +109,9 @@ <property name="maven.junit.dir" value="${basedir}"/> <property name="maven.junit.usefile" value="true"/> + <property name="src.exclude.pattern" value="**/package.html"/> + <property name="test.exclude.pattern" value="**/package.html"/> + <property name="project.name" value="some-nameless-gump-built-component"/> <tstamp> <format property="project.version" pattern="yyyyMMdd"/> @@ -152,7 +158,7 @@ <mkdir dir="${maven.build.dir}/impl-classes"/><!-- to ensure <classpath/> works --> <javac destdir="${maven.build.dir}/classes" - excludes="**/package.html" + excludes="${src.exclude.pattern}" debug="${maven.compile.debug}" deprecation="${maven.compile.deprecation}" optimize="${maven.compile.optimize}"> @@ -181,7 +187,7 @@ <mkdir dir="${maven.build.dir}/api-classes"/> <javac destdir="${maven.build.dir}/api-classes" - excludes="**/package.html" + excludes="${src.exclude.pattern}" debug="${maven.compile.debug}" deprecation="${maven.compile.deprecation}" optimize="${maven.compile.optimize}"> @@ -213,7 +219,7 @@ <mkdir dir="${maven.build.dir}/api-classes"/><!-- to ensure <classpath/> works --> <javac destdir="${maven.build.dir}/impl-classes" - excludes="**/package.html" + excludes="${src.exclude.pattern}" debug="${maven.compile.debug}" deprecation="${maven.compile.deprecation}" optimize="${maven.compile.optimize}"> @@ -249,7 +255,7 @@ <mkdir dir="${maven.build.dir}/impl-classes"/><!-- to ensure <classpath/> works --> <javac destdir="${maven.build.dir}/test-classes" - excludes="**/package.html" + excludes="${test.exclude.pattern}" debug="${maven.compile.debug}" deprecation="${maven.compile.deprecation}" optimize="${maven.compile.optimize}">
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]