|
Revision 2790, 442 bytes
(checked in by michael, 5 years ago)
|
Ant task for generating an Eclipse project
|
| Line | |
|---|
| 1 |
<project name="test" default="test"> |
|---|
| 2 |
<target name="test"> |
|---|
| 3 |
<taskdef name="eclipse" classname="org.sarugo.ant.eclipse.EclipseTask" classpath="build"/> |
|---|
| 4 |
<eclipse todir="test" defaultBuildDir="bin"> |
|---|
| 5 |
<sourcepath> |
|---|
| 6 |
<pathelement path="src/main/java"/> |
|---|
| 7 |
</sourcepath> |
|---|
| 8 |
<globmapper from="src/*" to="build/*"/> |
|---|
| 9 |
<classpath> |
|---|
| 10 |
<pathelement path="lib"/> |
|---|
| 11 |
</classpath> |
|---|
| 12 |
</eclipse> |
|---|
| 13 |
</target> |
|---|
| 14 |
</project> |
|---|