diff options
author | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2008-10-23 00:37:43 +0000 |
---|---|---|
committer | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2008-10-23 00:37:43 +0000 |
commit | 19af867c442931facd640218c07f5659f1595cb3 (patch) | |
tree | 4d97e30621368c338f8009107436cd68ead5e2c9 /branches/sca-equinox/distribution/features/webservice/pom.xml | |
parent | ae0697630eaca3eaf05080be3d8e3730b675c56b (diff) |
Changed distro builds to build OSGi friendly distributions. Added an Eclipse build profile to build an Eclipse PDE target which can be used to configure an Eclipse workspace.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@707236 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches/sca-equinox/distribution/features/webservice/pom.xml')
-rw-r--r-- | branches/sca-equinox/distribution/features/webservice/pom.xml | 27 |
1 files changed, 22 insertions, 5 deletions
diff --git a/branches/sca-equinox/distribution/features/webservice/pom.xml b/branches/sca-equinox/distribution/features/webservice/pom.xml index d53eff2e70..be9329716e 100644 --- a/branches/sca-equinox/distribution/features/webservice/pom.xml +++ b/branches/sca-equinox/distribution/features/webservice/pom.xml @@ -117,15 +117,32 @@ <profiles> - <!-- Default build profile that can be used to build the distro packages --> + <!-- Build profile that can be used to build the distro packages --> <profile> - <id>default</id> - <activation> - <activeByDefault>true</activeByDefault> - </activation> + <id>distribution</id> <build> <plugins> <plugin> + <groupId>org.apache.tuscany.sca</groupId> + <artifactId>tuscany-maven-bundle-plugin</artifactId> + <executions> + <execution> + <id>distribution-modules</id> + <phase>generate-resources</phase> + <goals> + <goal>generate-modules</goal> + </goals> + <configuration> + <targetDirectory>target/modules</targetDirectory> + <excludeDirectories> + <excludeDirectory>../core/target/modules</excludeDirectory> + </excludeDirectories> + </configuration> + </execution> + </executions> + </plugin> + + <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-assembly-plugin</artifactId> <executions> |