diff options
author | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2008-10-21 04:06:31 +0000 |
---|---|---|
committer | rfeng <rfeng@13f79535-47bb-0310-9956-ffa450edef68> | 2008-10-21 04:06:31 +0000 |
commit | 949095c3ee577a6d22cf1af8f5ffe0e4006c7e31 (patch) | |
tree | 914d0c482b55099ca627e3b2881f3e5de362fa8c /branches/sca-equinox/modules/thirdparty-library | |
parent | 6a206b05d8da93f69d8136e747b3f451ce73d64c (diff) |
Configure the eclipse profile to run eclipse:eclipse and process-resources
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@706507 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches/sca-equinox/modules/thirdparty-library')
-rw-r--r-- | branches/sca-equinox/modules/thirdparty-library/pom.xml | 54 |
1 files changed, 32 insertions, 22 deletions
diff --git a/branches/sca-equinox/modules/thirdparty-library/pom.xml b/branches/sca-equinox/modules/thirdparty-library/pom.xml index 16d57ef5fc..61269c9a53 100644 --- a/branches/sca-equinox/modules/thirdparty-library/pom.xml +++ b/branches/sca-equinox/modules/thirdparty-library/pom.xml @@ -41,53 +41,63 @@ <artifactId>tuscany-host-tomcat</artifactId> <type>jar</type> <version>1.4-SNAPSHOT</version> - </dependency> + </dependency> </dependencies> <profiles> <profile> <id>eclipse</id> <build> + <defaultGoal>process-resources</defaultGoal> <plugins> <plugin> - <artifactId>maven-clean-plugin</artifactId> - <configuration> - <filesets> - <fileset> - <directory>${basedir}/lib</directory> - <includes> - <include>*</include> - </includes> - <followSymlinks>false</followSymlinks> - </fileset> - </filesets> - </configuration> - </plugin> - + <artifactId>maven-clean-plugin</artifactId> + <configuration> + <filesets> + <fileset> + <directory>${basedir}/lib</directory> + <includes> + <include>*</include> + </includes> + <followSymlinks>false</followSymlinks> + </fileset> + </filesets> + </configuration> + </plugin> + <plugin> <groupId>org.apache.tuscany.sca</groupId> <artifactId>tuscany-maven-bundle-plugin</artifactId> <executions> <execution> <id>assemble-thirdparty-bundle</id> + <phase>generate-resources</phase> <goals> <goal>assemble-thirdparty-bundle</goal> </goals> <configuration> - <symbolicName>org.apache.tuscany.sca.thirdparty.library</symbolicName> + <symbolicName>org.apache.tuscany.sca.thirdparty.library + </symbolicName> </configuration> </execution> + <execution> + <id>generate-pde-classpath</id> + <phase>process-resources</phase> + <goals> + <goal>generate-pde-classpath</goal> + </goals> + </execution> + </executions> </plugin> - <plugin> - <groupId>org.apache.tuscany.sca</groupId> - <artifactId>tuscany-maven-bundle-plugin</artifactId> + <artifactId>maven-eclipse-plugin</artifactId> <executions> <execution> - <id>generate-pde-classpath</id> + <id>generate-eclipse-metadata</id> + <phase>generate-resources</phase> <goals> - <goal>generate-pde-classpath</goal> + <goal>eclipse</goal> </goals> </execution> </executions> @@ -96,5 +106,5 @@ </build> </profile> </profiles> - + </project> |