You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-commits@axis.apache.org by bi...@apache.org on 2020/04/16 07:38:54 UTC

[axis-axis2-java-savan] 22/36: Added pom.xml to samples module & added it to parent pom.xml

This is an automated email from the ASF dual-hosted git repository.

billblough pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-savan.git

commit babb5678ff04c6a4f1be7e26fb25cdceeff2dd04
Author: Sumedha Rubasinghe <su...@apache.org>
AuthorDate: Fri Aug 17 06:45:58 2007 +0000

    Added pom.xml to samples module & added it to parent pom.xml
---
 modules/samples/pom.xml | 59 +++++++++++++++++++++++++++++++++++++++++++++++++
 pom.xml                 |  5 +----
 2 files changed, 60 insertions(+), 4 deletions(-)

diff --git a/modules/samples/pom.xml b/modules/samples/pom.xml
new file mode 100755
index 0000000..3d9f79f
--- /dev/null
+++ b/modules/samples/pom.xml
@@ -0,0 +1,59 @@
+<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.apache.ws.savan</groupId>
+	<artifactId>savan-parent</artifactId>
+        <version>SNAPSHOT</version>
+    </parent>
+	
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>org.apache.ws.savan</groupId>
+    <artifactId>savan-samples</artifactId>
+    <packaging>jar</packaging>
+    <name>Savan - Samples</name>
+
+    <dependencies>
+        <dependency>
+          <groupId>org.apache.ws.savan</groupId>
+          <artifactId>savan-core</artifactId>
+          <version>SNAPSHOT</version>
+        </dependency>
+    </dependencies>
+    
+    <build>
+        <sourceDirectory>eventing/src</sourceDirectory>
+        <testSourceDirectory>eventing/src</testSourceDirectory>
+        <resources>
+            <resource>
+                <directory>eventing</directory>
+            </resource>
+        </resources>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.4</source>
+                    <target>1.4</target>
+                </configuration>
+            </plugin>
+            <!--
+            <plugin>
+                <artifactId>maven-surefire-plugin</artifactId>
+                <inherited>true</inherited>
+                <configuration>
+                    <skip>false</skip>
+                    <excludes>
+                        <exclude>**/*Abstract*.java</exclude>
+                        <exclude>**/*Util*.java</exclude>
+                        <exclude>**/AtomTest.java</exclude>
+                    </excludes>
+                </configuration>
+            </plugin>
+            -->
+         </plugins>
+    </build>
+
+</project>
diff --git a/pom.xml b/pom.xml
index d70c13c..83948a2 100644
--- a/pom.xml
+++ b/pom.xml
@@ -231,15 +231,12 @@
 			<id>website</id>
 			<url>scpexe://people.apache.org/www/ws.apache.org/savan</url>
 		</site>
-	
 	</distributionManagement>
 	
 	<modules>
 		<module>modules/core</module>
 		<module>modules/mar</module>
-	<!-- <module>modules/samples</module> -->
-<!--	<module>modules/eventing-client</module>
-		<module>modules/distribution</module>-->
+	        <module>modules/samples</module>
   	</modules>
 	
 	<properties>