[wsas-java-dev] svn commit r1897 - in
trunk/wsas/java/modules/distribution: . standalone
standalone/deploy-artifact
svn at wso2.org
svn at wso2.org
Thu Apr 19 00:49:27 PDT 2007
Author: saminda
Date: Thu Apr 19 00:49:04 2007
New Revision: 1897
Added:
trunk/wsas/java/modules/distribution/standalone/deploy-artifact/
trunk/wsas/java/modules/distribution/standalone/deploy-artifact/pom.xml
Modified:
trunk/wsas/java/modules/distribution/pom.xml
trunk/wsas/java/modules/distribution/standalone/pom.xml
Log:
deploying the standalone artifact
Modified: trunk/wsas/java/modules/distribution/pom.xml
==============================================================================
--- trunk/wsas/java/modules/distribution/pom.xml (original)
+++ trunk/wsas/java/modules/distribution/pom.xml Thu Apr 19 00:49:04 2007
@@ -90,7 +90,7 @@
<module>common</module>
<module>standalone</module>
<module>webapp</module>
- <!--<module>release</module>-->
+ <module>release</module>
</modules>
</project>
\ No newline at end of file
Added: trunk/wsas/java/modules/distribution/standalone/deploy-artifact/pom.xml
==============================================================================
--- (empty file)
+++ trunk/wsas/java/modules/distribution/standalone/deploy-artifact/pom.xml Thu Apr 19 00:49:04 2007
@@ -0,0 +1,46 @@
+<project xmlns="http://maven.apache.org/POM/4.0.0"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+
+ <parent>
+ <groupId>org.wso2.wsas</groupId>
+ <artifactId>wso2wsas-distribution-standalone</artifactId>
+ <version>1.2-SNAPSHOT</version>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>wso2wsas-standalone-edition-java</artifactId>
+ <packaging>pom</packaging>
+ <version>1.2-SNAPSHOT</version>
+ <name>WSO2 Web Services Application Server - Distribution/Standalone/Deploy</name>
+
+
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>build-helper-maven-plugin</artifactId>
+ <version>1.0</version>
+ <executions>
+ <execution>
+ <id>zip</id>
+ <phase>package</phase>
+ <goals>
+ <goal>attach-artifact</goal>
+ </goals>
+ <configuration>
+ <artifacts>
+ <artifact>
+ <file>../target/${pom.artifactId}-${wso2wsas.version}.zip</file>
+ <type>zip</type>
+ </artifact>
+ </artifacts>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+
+</project>
+
Modified: trunk/wsas/java/modules/distribution/standalone/pom.xml
==============================================================================
--- trunk/wsas/java/modules/distribution/standalone/pom.xml (original)
+++ trunk/wsas/java/modules/distribution/standalone/pom.xml Thu Apr 19 00:49:04 2007
@@ -28,6 +28,7 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.1</version>
+ <inherited>false</inherited>
<executions>
<execution>
<id>distribution-package</id>
@@ -49,6 +50,7 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.0-alpha-1-SNAPSHOT</version>
+ <inherited>false</inherited>
<executions>
<execution>
<id>initialize-copy</id>
@@ -149,6 +151,7 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.1</version>
+ <inherited>false</inherited>
<executions>
<execution>
<id>package</id>
@@ -308,6 +311,10 @@
</plugin>
</plugins>
</build>
+
+ <modules>
+ <module>deploy-artifact</module>
+ </modules>
</profile>
</profiles>
More information about the Wsas-java-dev
mailing list