diff options
author | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-04-22 14:50:27 +0000 |
---|---|---|
committer | antelder <antelder@13f79535-47bb-0310-9956-ffa450edef68> | 2009-04-22 14:50:27 +0000 |
commit | 0bf9e7251e3a9667602d5ed8bdf4c390076aa08e (patch) | |
tree | 4ae5e1addd30370c6b2f0c039907b47e425a3fc0 /maven-plugins | |
parent | 29c1a15715c32b173ff53dd215e3465058103e6d (diff) |
Update doc files for alpha1 release
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@767552 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'maven-plugins')
-rw-r--r-- | maven-plugins/trunk/maven-zip-plugin/README | 28 | ||||
-rw-r--r-- | maven-plugins/trunk/maven-zip-plugin/RELEASE_NOTES | 2 |
2 files changed, 23 insertions, 7 deletions
diff --git a/maven-plugins/trunk/maven-zip-plugin/README b/maven-plugins/trunk/maven-zip-plugin/README index 7afd5ff24c..ee4adda4f1 100644 --- a/maven-plugins/trunk/maven-zip-plugin/README +++ b/maven-plugins/trunk/maven-zip-plugin/README @@ -1,7 +1,23 @@ -This module is a Maven compiler which uses the Eclipse Java compiler which is -used by the Tuscany SCA project build. - -To build, from the top maven-eclipse-compiler run maven: +This module is a Maven plugin which supports using a packaging of zip in a pom.xml to +create a zip format SCA contribution. + +An exmaple pom.xml: + <packaging>zip</packaging> + ... + <build> + ... + <plugins> + <plugin> + <groupId>org.apache.tuscany.maven.plugins</groupId> + <artifactId>maven-zip-plugin</artifactId> + <extensions>true</extensions> + </plugin> + ... + </plugins> + </build> + + +To build, from the top maven-zip-plugin run maven: mvn @@ -47,7 +63,7 @@ and a profile named "release". For example: <id>release</id> <properties> <gpg.passphrase>...</gpg.passphrase> - <deploy.altRepository>apache.releases::default::scp://people.apache.org/home/antelder/public_html/tuscany/maven-eclipse-compiler-1.0</deploy.altRepository> + <deploy.altRepository>apache.releases::default::scp://people.apache.org/home/antelder/public_html/tuscany/maven-zip-plugin-1.0</deploy.altRepository> </properties> </profile> </profiles> @@ -56,7 +72,7 @@ Call a vote to release the module, eg: http://apache.markmail.org/message/6jnlfx After a successfule vote copy the staging artifacts to the live repository, eg: -cp -p -v -R maven-eclipse-compiler-1.0/org/apache/tuscany/maven/plugins/ /x1/www/people.apache.org/repo/m2-ibiblio-rsync-repository/org/apache/tuscany/maven/plugins +cp -p -v -R maven-zip-plugin-alpha1/org/apache/tuscany/maven/plugins/ /x1/www/people.apache.org/repo/m2-ibiblio-rsync-repository/org/apache/tuscany/maven/plugins diff --git a/maven-plugins/trunk/maven-zip-plugin/RELEASE_NOTES b/maven-plugins/trunk/maven-zip-plugin/RELEASE_NOTES index db546eb4a7..e1de8a42ad 100644 --- a/maven-plugins/trunk/maven-zip-plugin/RELEASE_NOTES +++ b/maven-plugins/trunk/maven-zip-plugin/RELEASE_NOTES @@ -3,5 +3,5 @@ Apache Tuscany Maven Zip Plugin Alpha1 Release Notes Initial release
-Supports using a packaging of sca-zip in a pom.xml to create a zip format SCA contribution
+Supports using a packaging of zip in a pom.xml to create a zip format SCA contribution
|