0

same as title, how to install activejdbc for java using Netbeans IDE? somebody can help me?

user3510768
  • 135
  • 2
  • 10

1 Answers1

1

<target name="-post-compile"> <java classname="org.javalite.instrumentation.Main" failonerror="true"> <sysproperty key="outputDirectory" value="${build.classes.dir}"></sysproperty> <classpath> <pathelement path="${build.classes.dir}"> <pathelement path="${javac.classpath}"> <pathelement path="${javac.processorpath}"> </pathelement></pathelement></pathelement></classpath> </java> </target>

  • Save and close the file

If you are running project from Netbeans you need to perform additional step:

Right click on the project -> Properties -> Compiling and uncheck "Compile on save"

ipolevoy
  • 5,432
  • 2
  • 31
  • 46