diff options
author | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2008-10-30 22:59:04 +0000 |
---|---|---|
committer | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2008-10-30 22:59:04 +0000 |
commit | 9038563ccdec886a25f39c6483bcd8e46e5cea99 (patch) | |
tree | 664bb5b80b4d8e29bd4c971a0867ed0a63c11e8e /branches | |
parent | 32cbb290f48584a96460127ef9ecdbd70ff2b156 (diff) |
Added plugin to generate correct PDE project .classpath and .project files.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@709273 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches')
-rw-r--r-- | branches/sca-equinox/modules/pom.xml | 30 |
1 files changed, 19 insertions, 11 deletions
diff --git a/branches/sca-equinox/modules/pom.xml b/branches/sca-equinox/modules/pom.xml index 4df1419f5b..56195a19e5 100644 --- a/branches/sca-equinox/modules/pom.xml +++ b/branches/sca-equinox/modules/pom.xml @@ -168,20 +168,28 @@ <artifactId>maven-eclipse-plugin</artifactId> <version>2.5.1</version> <configuration> - <buildcommands> - <buildcommand>org.eclipse.pde.ManifestBuilder</buildcommand> - <buildcommand>org.eclipse.jdt.core.javabuilder</buildcommand> - </buildcommands> - <projectnatures> - <projectnature>org.eclipse.jdt.core.javanature</projectnature> - <projectnature>org.eclipse.pde.PluginNature</projectnature> - </projectnatures> - <classpathContainers> - <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer> - </classpathContainers> + <skip>true</skip> </configuration> </plugin> + <plugin> + <groupId>org.apache.tuscany.sca</groupId> + <artifactId>tuscany-maven-bundle-plugin</artifactId> + <version>1.4-SNAPSHOT</version> + <extensions>true</extensions> + <executions> + <execution> + <id>generate-pde</id> + <phase>generate-resources</phase> + <goals> + <goal>generate-pde</goal> + </goals> + <configuration> + </configuration> + </execution> + </executions> + </plugin> + <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> |