NetBeans Forums
| View previous topic :: View next topic |
| Author |
Message |
libor
Joined: 03 Jun 2011 Posts: 60
|
Posted: Mon Jan 16, 2012 1:05 pm Post subject: [platform-dev] Where in "NBP's Ant hell" add trigger calling bytecode instrumentation? |
|
|
Hello,I would like to use ActiveJDBC library (http://code.google.com/p/activejdbc/, implementation of Active Record pattern in Java. Inspired by Ruby on Rails ActiveRecord). Library needs to modify compiled bytecode to add all "magic" that makes this library easy to use.
In non-NBP Java project it's easy to find in build-impl.xml that I need to override "-post-compile" target and that's it...
<target name="-post-compile">
<java classname="org.javalite.instrumentation.Main" failonerror="true">
<sysproperty key="outputDirectory" value="${build.classes.dir}"/>
<classpath>
<pathelement path="${build.classes.dir}" />
<pathelement path="${javac.classpath}" />
<pathelement path="${javac.processorpath}" />
</classpath>
</java>
</target>
ActiveJDBC has also how-to page for NetBeans: http://code.google.com/p/activejdbc/wiki/NetbeansIntegration. In another words: Where is similar equivalent for -post-compile in NBP's Ant hell?
PS: Sorry for term "ant hell" but IMHO it is - this area is poor/chaotic documented at least to me
Thanks!
Libor |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You can attach files in this forum You can download files in this forum
|
|