Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[pde-build-dev] Mavenish folder structure

Hi,

I'm trying to build a plugin using a maven-like project structure in eclipse 3.3

Project source folders:
src/main/java/
src/test/java/

The plugin build.properties file (for clean export of plugin without tests):
source..=src/main/java/
jars.extra.classpath = dependencies/junit-4.1.jar

I tried to pass the source.. property in the allElemennts file without success:

<ant antfile="${genericTargets}" target="${target}">
 <property name="type" value="feature" />
 <property name="id" value="my.feature" />
 <property name="source.." value="=src/test/java/" />
</ant>

Is it possible to override the "source.." property to include test
classes in the PDE Build?

BR,
Per


Back to the top