Skip to content

Commit

Permalink
add apache commons-collections into ejp's weaver so pointcutargs will…
Browse files Browse the repository at this point in the history
… work in Eclipse
  • Loading branch information
ahadas committed Mar 13, 2015
1 parent 575e57b commit 5a1800e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,19 @@
</manifest>
</jar>

<if>
<isset property="deps"/>
<then>
<for list="${deps}" param="dep">
<sequential>
<jar destfile="dist/awesome_weaver.jar" update="yes">
<zipfileset src="@{dep}"/>
</jar>
</sequential>
</for>
</then>
</if>

<copy file="dist/awesome_weaver.jar" tofile="dist/org.aspectj.weaver_1.7.3.20130613144500-a.jar"/>
</target>

Expand Down
2 changes: 1 addition & 1 deletion ejp_compile.scrpt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ant clean
ant tools -Ddeps=libs/strategoxt.jar -Dfrontends=ejpf/target/ejpf-1.0-SNAPSHOT.jar
ant weaver -Dmechanisms=ejpm/target/ejpm-1.0-SNAPSHOT.jar,aspectjm/target/aspectjm-1.0-SNAPSHOT.jar
ant weaver -Dmechanisms=ejpm/target/ejpm-1.0-SNAPSHOT.jar,aspectjm/target/aspectjm-1.0-SNAPSHOT.jar -Ddeps=libs/commons-collections-3.2.1.jar
ant runtime -Dmechanisms=ejpm/target/ejpm-1.0-SNAPSHOT.jar

0 comments on commit 5a1800e

Please sign in to comment.