Skip to content
This repository has been archived by the owner on May 15, 2023. It is now read-only.

Commit

Permalink
Add (better) Eclipse project import support: build.eclipse.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
szab100 committed May 3, 2017
1 parent af9982c commit 65ea377
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions build.eclipse.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<project name="plexi-eclipse" default="eclipse-build" basedir=".">
<import file="./build.xml"/>

<path id="eclipse.build.classpath">
<path refid="adaptorlib.build.classpath"/>
<path refid="opensaml.run.classpath"/>
<fileset dir="${lib.dir}">
<include name="junit-4.8.2.jar" />
<include name="commons-fileupload-1.3.jar" />
</fileset>
<fileset dir="${java.home}/..">
<include name="jre/lib/jce.jar" />
<include name="jre/lib/rt.jar" />
</fileset>
</path>

<target name="eclipse-build">
<javac destdir="${build.dir}" debug="true" encoding="utf-8"
includeantruntime="false" target="${compile.java.version}"
source="${compile.java.version}">
<src path="${src.dir}" />
<src path="${test.dir}" />
<src path="${resource.dir}" />
<compilerarg value="-Xlint:unchecked" />
<compilerarg value="-Xlint:deprecation" />
<bootclasspath path="${compile.java.bootclasspath}" />
<classpath refid="eclipse.build.classpath" />
<include name="*/**" />
</javac>
</target>

</project>

0 comments on commit 65ea377

Please sign in to comment.