[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
|
[pde-build-dev] Mavenish folder structure
|
- From: "Per Böckman" <dev2null@xxxxxxxxx>
- Date: Tue, 3 Jul 2007 10:59:24 +0200
- Delivered-to: pde-build-dev@eclipse.org
- Dkim-signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=nmsE30nBzN7F66dJuTvHgwwUfiS1KvWYgJniXwF46qegyBzT6Kjs68ZANdNc6oOrtf2tI1HzSeoiEkyu7YEkS34m5uhv5jpvgqRYOquNbRAIZ9bPfASxt3V8LOsHCUjjBYJgWmqBmcALMJg0Y84aAZPskMGYyezsLHBjjqRjV8E=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=t0YntyAEodb2b9kU8OzfOaMb7KWWLTfohZd0XU0XiZ2Ms87xdXr92pNFR/QGOIx766FmRJkVVDQoEcIAnBoPpG2ZNVIckUkY/W1kXmq377sT+EwEt5ailxPSvxsq24L1Bm6lme7xnMJN1YkZXv1wm4peSfHRN4/5YedU6ZIgGs0=
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