NetBeans Forums

 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister   ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
  

[platform-dev] Where in "NBP's Ant hell" add trigger calling bytecode instrumentation?

 
Post new topic   Reply to topic    NetBeans Forums -> NetBeans Platform Users
View previous topic :: View next topic  
Author Message
libor



Joined: 03 Jun 2011
Posts: 60

PostPosted: Mon Jan 16, 2012 1:05 pm    Post subject: [platform-dev] Where in "NBP's Ant hell" add trigger calling bytecode instrumentation? Reply with quote

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
Display posts from previous:   
Post new topic   Reply to topic    NetBeans Forums -> NetBeans Platform Users All times are GMT
Page 1 of 1

 
Jump to:  
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


Powered by phpBB
By use of this website, you agree to the NetBeans Policies and Terms of Use. © 2012, Oracle Corporation and/or its affiliates. Sponsored by Oracle logo