Author: sumedha Date: Thu Oct 30 19:07:51 2008 New Revision: 23139 URL: http://wso2.org/svn/browse/wso2?view=rev&revision=23139
Log: adding svn ignore Modified: trunk/wsas/java/carbon/samples/HelloWorld/ (props changed) trunk/wsas/java/carbon/samples/HelloWorld/pom.xml Modified: trunk/wsas/java/carbon/samples/HelloWorld/pom.xml URL: http://wso2.org/svn/browse/wso2/trunk/wsas/java/carbon/samples/HelloWorld/pom.xml?rev=23139&r1=23138&r2=23139&view=diff ============================================================================== --- trunk/wsas/java/carbon/samples/HelloWorld/pom.xml (original) +++ trunk/wsas/java/carbon/samples/HelloWorld/pom.xml Thu Oct 30 19:07:51 2008 @@ -44,6 +44,39 @@ </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-antrun-plugin</artifactId> + <version>1.1</version> + <executions> + <execution> + <id>create_repo</id> + <phase>generate-test-resources</phase> + <configuration> + <tasks> + <!-- Adding the helloworld sample --> + <mkdir dir="target/helloworld/META-INF"/> + <copy todir="target/helloworld"> + <fileset dir="target/classes"> + <include name="org/wso2/wsas/sample/helloworld/**"/> + </fileset> + </copy> + <copy todir="target/helloworld/META-INF"> + <fileset dir="conf"> + <include name="*.*"/> + </fileset> + </copy> + <jar destfile="target/HelloWorld.aar" basedir="target/helloworld"/> + <copy file="target/HelloWorld.aar" + tofile="target/repository/services/HelloWorld.aar"/> + </tasks> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <configuration> <enableRulesSummary>false</enableRulesSummary> _______________________________________________ Wsas-java-dev mailing list [email protected] http://mailman.wso2.org/cgi-bin/mailman/listinfo/wsas-java-dev
