Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "OTHowtos/Compiling With Ant"

 
Line 5: Line 5:
  
 
Should you need to compile an [[OTJ|OT/J]] program outside the [[Object Teams Development Tooling|OTDT]], the following steps should enable you to use ANT for this task:  
 
Should you need to compile an [[OTJ|OT/J]] program outside the [[Object Teams Development Tooling|OTDT]], the following steps should enable you to use ANT for this task:  
* [https://www.eclipse.org/objectteams/download.php download] ecotj.jar
+
* [https://www.eclipse.org/objectteams/download.php download] '''ecotj.jar''' — ''please find the desired version in the column "Command Line Compiler"''
: ''you'll always find the latest version [http://www.eclipse.org/objectteams/download.php here] in the column "Command Line Compiler"''
+
 
* add it to your ANT runtime classpath (either place it in your ant_lib directory or provide the path by a <code>-lib</code> command line option to ant).  
 
* add it to your ANT runtime classpath (either place it in your ant_lib directory or provide the path by a <code>-lib</code> command line option to ant).  
 
* in your <code>build.xml</code> set the property <code>build.compiler</code> to use the OTDT compiler in <code><nowiki><javac></nowiki></code> tasks, like that:  
 
* in your <code>build.xml</code> set the property <code>build.compiler</code> to use the OTDT compiler in <code><nowiki><javac></nowiki></code> tasks, like that:  

Latest revision as of 08:13, 26 June 2015

Compiling OT/J source using ANT

Thanks to Carsten Pfeiffer for these instructions. Cf. also this Eclipse help page (scroll to "Using the ant javac adapter").


Should you need to compile an OT/J program outside the OTDT, the following steps should enable you to use ANT for this task:

  • download ecotj.jarplease find the desired version in the column "Command Line Compiler"
  • add it to your ANT runtime classpath (either place it in your ant_lib directory or provide the path by a -lib command line option to ant).
  • in your build.xml set the property build.compiler to use the OTDT compiler in <javac> tasks, like that:
<property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter" />
  • just use <javac> tasks in your build.xml to compile the code.

Here is a build.xml that can be used for compiling the sample OTSample-Flightbonus, provided that subcomponents have already been compiled into booking.jar and bonussystem.jar:

<?xml version="1.0" encoding="UTF-8"?>
<project name="fbapplication" default="all" basedir=".">
    <property name="build.compiler" value="org.eclipse.jdt.core.JDTCompilerAdapter" />
    <!-- adjust this to your project's requirements: -->
    <property name="user.classpath" value="booking.jar:bonussystem.jar" />
    <target name="compile">
        <!-- regular use of javac task (source="1.5" or greater is actually required): -->
        <javac srcdir="src" destdir="bin" 
               classpath="${otre.jar}:${user.classpath}" 
               source="1.5" target="1.5"/>
    </target>
</project>

This script is invoked with

$ ant -lib ecj-dir -Dotre.jar=otre-jar

You'll have to substitute the following paths:

  • ecj-dir: directory containing the appropriate ecotj-version.jar
  • otre-jar: path to the Object Teams Runtime Environment (OTRE), pointing to eclipse/plugins/org.eclipse.objectteams.runtime_version.jar.
    This path can of course also be defined using a property definition within the build script.

Back to the top