diff options
author | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2008-06-30 17:52:24 +0000 |
---|---|---|
committer | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2008-06-30 17:52:24 +0000 |
commit | 2f2b38cbdc00e1d26bf10858aad7b285d3f957b3 (patch) | |
tree | b899e858af61f7fc0a0326b111e7fd0b0536c867 /java | |
parent | e5216ad499387ffc3dd1795f4d769c5cf0851915 (diff) |
Added a profile to help generate *-sources.jar jars.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@672842 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | java/sca/pom.xml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/java/sca/pom.xml b/java/sca/pom.xml index 06894520d5..86ee9864e9 100644 --- a/java/sca/pom.xml +++ b/java/sca/pom.xml @@ -107,6 +107,40 @@ </profile> <profile> + <id>sources</id> + <modules> + <module>modules</module> + <module>tools</module> + <module>samples</module> + <module>itest</module> + <module>vtest</module> + <module>tutorial</module> + </modules> + <properties> + <maven.test.skip>true</maven.test.skip> + </properties> + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-source-plugin</artifactId> + <configuration> + <attach>true</attach> + </configuration> + <executions> + <execution> + <id>attach-sources</id> + <goals> + <goal>jar</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + + <profile> <id>eclipse</id> <modules> <module>modules</module> |