summaryrefslogtreecommitdiffstats
path: root/branches/sca-equinox/modules/thirdparty-library
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2008-10-16 02:58:13 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2008-10-16 02:58:13 +0000
commit6e1fe17f597e9fdfc7778e4f4c89612f145cb28c (patch)
tree0651e74b686155db6ff99042c90c0adf3fab9e28 /branches/sca-equinox/modules/thirdparty-library
parentfdf80a2492bdb2ed237da8244b905b388bfbc1f9 (diff)
Moved thirdparty library bundle to the 'eclipse' profile. Changed Maven Bundle plugin to execute within the process-resources phase. Minor cleanup of the BundleUtil class.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@705123 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches/sca-equinox/modules/thirdparty-library')
-rw-r--r--branches/sca-equinox/modules/thirdparty-library/pom.xml94
1 files changed, 53 insertions, 41 deletions
diff --git a/branches/sca-equinox/modules/thirdparty-library/pom.xml b/branches/sca-equinox/modules/thirdparty-library/pom.xml
index ba23527f22..16d57ef5fc 100644
--- a/branches/sca-equinox/modules/thirdparty-library/pom.xml
+++ b/branches/sca-equinox/modules/thirdparty-library/pom.xml
@@ -44,45 +44,57 @@
</dependency>
</dependencies>
- <build>
- <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>
-
- <plugin>
- <groupId>org.apache.tuscany.sca</groupId>
- <artifactId>tuscany-maven-bundle-plugin</artifactId>
- <executions>
- <execution>
- <id>assemble-thirdparty-bundle</id>
- <goals>
- <goal>assemble-thirdparty-bundle</goal>
- </goals>
- <configuration>
- <symbolicName>org.apache.tuscany.sca.thirdparty.library</symbolicName>
- </configuration>
- </execution>
- <execution>
- <id>generate-pde-classpath</id>
- <goals>
- <goal>generate-pde-classpath</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
-
- </plugins>
- </build>
+ <profiles>
+ <profile>
+ <id>eclipse</id>
+ <build>
+ <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>
+
+ <plugin>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-maven-bundle-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>assemble-thirdparty-bundle</id>
+ <goals>
+ <goal>assemble-thirdparty-bundle</goal>
+ </goals>
+ <configuration>
+ <symbolicName>org.apache.tuscany.sca.thirdparty.library</symbolicName>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.apache.tuscany.sca</groupId>
+ <artifactId>tuscany-maven-bundle-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>generate-pde-classpath</id>
+ <goals>
+ <goal>generate-pde-classpath</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
</project>