forked from phoedos/pmd
Use plugin-classpath to simplify javacc-wrapper.xml
javacc is on the antrun plugin's classpath. The javacc jar file doesn't need to be copied explicitly.
This commit is contained in:
parent
0ea42b94e0
commit
867b142ee4
@ -25,9 +25,9 @@
|
||||
It also uses the following maven properties:
|
||||
|
||||
- javacc.outputDirectory: Directory in which to root the generated package tree
|
||||
- javacc.jar: JAR of JavaCC in the local maven repository
|
||||
- plugin-classpath: The classpath of maven-antrun-plugin with javacc.jar dependency
|
||||
Provided by maven via "<property name="plugin-classpath" refid="maven.plugin.classpath"/>"
|
||||
- some properties of project.build
|
||||
|
||||
-->
|
||||
|
||||
<condition property="lang-name-camelcase" value="${lang-name}">
|
||||
@ -40,8 +40,6 @@
|
||||
<property name="target-package-dir" value="${javacc.outputDirectory}/net/sourceforge/pmd/lang/${lang-id}/ast" />
|
||||
<property name="stamp-file" value="${project.build.directory}/last-generated-timestamp" />
|
||||
|
||||
<property name="javacc-home.path" value="${project.build.directory}/lib/javacc" />
|
||||
|
||||
<property name="lang-ast-package" value="net.sourceforge.pmd.lang.${lang-id}.ast" />
|
||||
<property name="ast-api-package" value="net.sourceforge.pmd.lang.ast" />
|
||||
<property name="ast-impl-package" value="${ast-api-package}.impl.javacc" />
|
||||
@ -84,7 +82,7 @@
|
||||
|
||||
<target name="alljavacc"
|
||||
description="Generates JavaCC sources and cleans them up"
|
||||
depends="checkUpToDate,init,jjtree,jjtree-ersatz,javacc,adapt-generated,default-visitor,cleanup" />
|
||||
depends="checkUpToDate,init,jjtree,jjtree-ersatz,javacc,adapt-generated,default-visitor" />
|
||||
|
||||
<target name="checkUpToDate"
|
||||
description="Checks the input files are up to date">
|
||||
@ -104,9 +102,6 @@
|
||||
|
||||
|
||||
<target name="init" unless="javaccBuildNotRequired" description="Initialize build">
|
||||
<mkdir dir="${javacc-home.path}" />
|
||||
<copy file="${javacc.jar}" tofile="${javacc-home.path}/javacc.jar" />
|
||||
|
||||
<mkdir dir="${javacc.outputDirectory}" />
|
||||
<touch file="${stamp-file}" />
|
||||
<delete dir="${target-package-dir}" />
|
||||
@ -117,11 +112,6 @@
|
||||
</condition>
|
||||
</target>
|
||||
|
||||
<target name="cleanup" unless="javaccBuildNotRequired">
|
||||
<delete dir="${javacc-home.path}" />
|
||||
</target>
|
||||
|
||||
|
||||
<target name="jjtree" unless="jjtreeBuildNotRequired" description="Runs JJTree">
|
||||
|
||||
<!--
|
||||
@ -130,7 +120,7 @@
|
||||
-->
|
||||
<java fork="true"
|
||||
classname="jjtree"
|
||||
classpath="${javacc-home.path}/javacc.jar">
|
||||
classpath="${plugin-classpath}">
|
||||
<sysproperty key="file.encoding" value="UTF-8" />
|
||||
<arg value="-OUTPUT_DIRECTORY:${target-package-dir}" />
|
||||
<arg value="-NODE_USES_PARSER:false" />
|
||||
@ -148,7 +138,7 @@
|
||||
<target name="javacc" depends="jjtree" unless="javaccBuildNotRequired">
|
||||
<java fork="true"
|
||||
classname="javacc"
|
||||
classpath="${javacc-home.path}/javacc.jar">
|
||||
classpath="${plugin-classpath}">
|
||||
<sysproperty key="file.encoding" value="UTF-8" />
|
||||
<arg value="-STATIC:false" />
|
||||
<arg value="-USER_CHAR_STREAM:true" />
|
||||
|
@ -34,10 +34,10 @@
|
||||
<configuration>
|
||||
<target>
|
||||
<ant antfile="${javacc.ant.wrapper}" target="alljavacc">
|
||||
<property name="plugin-classpath" refid="maven.plugin.classpath"/>
|
||||
<property name="no-jjtree" value="true" /> <!-- This is a CPD module -->
|
||||
<property name="lang-name" value="Cpp" />
|
||||
<property name="lang-id" value="cpp" />
|
||||
<property name="javacc.jar" value="${javacc.jar}" />
|
||||
</ant>
|
||||
</target>
|
||||
</configuration>
|
||||
|
@ -105,7 +105,7 @@
|
||||
<configuration>
|
||||
<target>
|
||||
<ant antfile="${javacc.ant.wrapper}" target="alljavacc">
|
||||
<property name="javacc.jar" value="${javacc.jar}" />
|
||||
<property name="plugin-classpath" refid="maven.plugin.classpath"/>
|
||||
<property name="lang-name" value="Java" />
|
||||
<property name="lang-id" value="java" />
|
||||
</ant>
|
||||
|
@ -47,10 +47,10 @@
|
||||
<configuration>
|
||||
<target>
|
||||
<ant antfile="${javacc.ant.wrapper}" target="alljavacc">
|
||||
<property name="plugin-classpath" refid="maven.plugin.classpath"/>
|
||||
<property name="no-jjtree" value="true" /> <!-- This is a CPD module -->
|
||||
<property name="lang-name" value="Ecmascript5" />
|
||||
<property name="lang-id" value="ecmascript5" />
|
||||
<property name="javacc.jar" value="${javacc.jar}" />
|
||||
</ant>
|
||||
</target>
|
||||
</configuration>
|
||||
|
@ -40,7 +40,7 @@
|
||||
<configuration>
|
||||
<target>
|
||||
<ant antfile="${javacc.ant.wrapper}" target="alljavacc">
|
||||
<property name="javacc.jar" value="${javacc.jar}" />
|
||||
<property name="plugin-classpath" refid="maven.plugin.classpath"/>
|
||||
<property name="lang-name" value="Jsp" />
|
||||
<property name="lang-id" value="jsp" />
|
||||
</ant>
|
||||
|
@ -34,10 +34,10 @@
|
||||
<configuration>
|
||||
<target>
|
||||
<ant antfile="${javacc.ant.wrapper}" target="alljavacc">
|
||||
<property name="plugin-classpath" refid="maven.plugin.classpath"/>
|
||||
<property name="no-jjtree" value="true" /> <!-- This is a CPD module -->
|
||||
<property name="lang-name" value="Matlab" />
|
||||
<property name="lang-id" value="matlab" />
|
||||
<property name="javacc.jar" value="${javacc.jar}" />
|
||||
</ant>
|
||||
</target>
|
||||
</configuration>
|
||||
|
@ -64,7 +64,7 @@
|
||||
<configuration>
|
||||
<target>
|
||||
<ant antfile="${javacc.ant.wrapper}" target="alljavacc">
|
||||
<property name="javacc.jar" value="${javacc.jar}" />
|
||||
<property name="plugin-classpath" refid="maven.plugin.classpath"/>
|
||||
<property name="lang-name" value="Modelica" />
|
||||
<property name="lang-id" value="modelica" />
|
||||
</ant>
|
||||
|
@ -34,10 +34,10 @@
|
||||
<configuration>
|
||||
<target>
|
||||
<ant antfile="${javacc.ant.wrapper}" target="alljavacc">
|
||||
<property name="plugin-classpath" refid="maven.plugin.classpath"/>
|
||||
<property name="no-jjtree" value="true" /> <!-- This is a CPD module -->
|
||||
<property name="lang-name" value="ObjectiveC" />
|
||||
<property name="lang-id" value="objectivec" />
|
||||
<property name="javacc.jar" value="${javacc.jar}" />
|
||||
</ant>
|
||||
</target>
|
||||
</configuration>
|
||||
|
@ -40,7 +40,7 @@
|
||||
<configuration>
|
||||
<target>
|
||||
<ant antfile="${javacc.ant.wrapper}" target="alljavacc">
|
||||
<property name="javacc.jar" value="${javacc.jar}" />
|
||||
<property name="plugin-classpath" refid="maven.plugin.classpath"/>
|
||||
<property name="lang-name" value="PLSQL" />
|
||||
<property name="lang-name-camelcase" value="Plsql" />
|
||||
<property name="lang-id" value="plsql" />
|
||||
|
@ -34,10 +34,10 @@
|
||||
<configuration>
|
||||
<target>
|
||||
<ant antfile="${javacc.ant.wrapper}" target="alljavacc">
|
||||
<property name="plugin-classpath" refid="maven.plugin.classpath"/>
|
||||
<property name="no-jjtree" value="true" /> <!-- This is a CPD module -->
|
||||
<property name="lang-name" value="Python" />
|
||||
<property name="lang-id" value="python" />
|
||||
<property name="javacc.jar" value="${javacc.jar}" />
|
||||
</ant>
|
||||
</target>
|
||||
</configuration>
|
||||
|
@ -43,7 +43,7 @@
|
||||
<configuration>
|
||||
<target>
|
||||
<ant antfile="${javacc.ant.wrapper}" target="alljavacc">
|
||||
<property name="javacc.jar" value="${javacc.jar}" />
|
||||
<property name="plugin-classpath" refid="maven.plugin.classpath"/>
|
||||
<property name="lang-name" value="Vtl" />
|
||||
<property name="lang-id" value="velocity" />
|
||||
</ant>
|
||||
|
@ -47,7 +47,7 @@
|
||||
<configuration>
|
||||
<target>
|
||||
<ant antfile="${javacc.ant.wrapper}" target="alljavacc">
|
||||
<property name="javacc.jar" value="${javacc.jar}" />
|
||||
<property name="plugin-classpath" refid="maven.plugin.classpath"/>
|
||||
<property name="lang-name" value="Vf" />
|
||||
<property name="lang-id" value="visualforce" />
|
||||
</ant>
|
||||
|
2
pom.xml
2
pom.xml
@ -118,7 +118,7 @@
|
||||
<pmd.build-tools.version>27</pmd.build-tools.version>
|
||||
|
||||
<pmd-designer.version>7.2.0</pmd-designer.version>
|
||||
<javacc.jar>${settings.localRepository}/net/java/dev/javacc/javacc/${javacc.version}/javacc-${javacc.version}.jar</javacc.jar>
|
||||
|
||||
<javacc.outputDirectory>${project.build.directory}/generated-sources/javacc</javacc.outputDirectory>
|
||||
<javacc.ant.wrapper>${project.basedir}/../javacc-wrapper.xml</javacc.ant.wrapper>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user