Skip to content

Commit 14c0124

Browse files
author
Vladimir Kotal
committed
it should be possible to do 'ant clean; ant plugins'
1 parent 6352c24 commit 14c0124

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ Portions Copyright (c) 2017, Chris Fraire <[email protected]>.
575575
dest="lib/${junit.jar}" verbose="true" usetimestamp="true"/>
576576
</target>
577577

578-
<target name="-post-jar" depends="-copy-lib-without-netbeans, plugins">
578+
<target name="-post-jar" depends="-copy-lib-without-netbeans">
579579
<war destfile="${dist.war}" webxml="web/WEB-INF/web.xml">
580580
<fileset dir="web" excludes="META-INF/context.xml"/>
581581
<lib dir="${dist.dir}" includes="opengrok.jar"/>
@@ -1101,7 +1101,7 @@ Portions Copyright (c) 2017, Chris Fraire <[email protected]>.
11011101
</target>
11021102

11031103
<!-- Build the plugins. -->
1104-
<target name="plugins" depends="-pre-pre-compile">
1104+
<target name="plugins" depends="jar">
11051105
<mkdir dir="${build.dir}/plugins"/>
11061106
<javac srcdir="plugins/"
11071107
destdir="${build.dir}/plugins"
@@ -1252,5 +1252,5 @@ Portions Copyright (c) 2017, Chris Fraire <[email protected]>.
12521252
</exec>
12531253
</target>
12541254

1255-
<target name="all" depends="clean,jar,compile.jsp,test,javadoc,pmd,findbugs-xml,checkstyle" />
1255+
<target name="all" depends="clean,plugins,jar,compile.jsp,test,javadoc,pmd,findbugs-xml,checkstyle" />
12561256
</project>

0 commit comments

Comments
 (0)