Author: dims
Date: Tue Mar 20 08:41:13 2007
New Revision: 520436
URL: http://svn.apache.org/viewvc?view=rev&rev=520436
Log:
m2 pom's for scout
Added:
webservices/scout/trunk/modules/jaxr-api/pom.xml
webservices/scout/trunk/modules/scout/pom.xml
webservices/scout/trunk/pom.xml
Added: webservices/scout/trunk/modules/jaxr-api/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/scout/trunk/modules/jaxr-api/pom.xml?view=auto&rev=520436
==============================================================================
--- webservices/scout/trunk/modules/jaxr-api/pom.xml (added)
+++ webservices/scout/trunk/modules/jaxr-api/pom.xml Tue Mar 20 08:41:13 2007
@@ -0,0 +1,57 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.ws.scout</groupId>
+ <artifactId>scout-parent</artifactId>
+ <version>SNAPSHOT</version>
+ </parent>
+ <artifactId>jaxr-api</artifactId>
+ <name>JAXR API</name>
+ <version>SNAPSHOT</version>
+ <description>The JAXR API</description>
+ <dependencies>
+ <dependency>
+ <groupId>geronimo-spec</groupId>
+ <artifactId>geronimo-spec-activation</artifactId>
+ <version>1.0.2-rc4</version>
+ </dependency>
+ </dependencies>
+ <build>
+ <sourceDirectory>src</sourceDirectory>
+ <testSourceDirectory>test</testSourceDirectory>
+ <resources>
+ <resource>
+ <directory>conf</directory>
+ <excludes>
+ <exclude>**/*.properties</exclude>
+ </excludes>
+ <filtering>false</filtering>
+ </resource>
+ <resource>
+ <directory>src</directory>
+ <excludes>
+ <exclude>**/*.java</exclude>
+ </excludes>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <inherited>true</inherited>
+ <configuration>
+ <skip>false</skip>
+ <excludes>
+ <exclude>**/*Abstract*.java</exclude>
+ </excludes>
+ <includes>
+ <include>**/*Test.java</include>
+ </includes>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Added: webservices/scout/trunk/modules/scout/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/scout/trunk/modules/scout/pom.xml?view=auto&rev=520436
==============================================================================
--- webservices/scout/trunk/modules/scout/pom.xml (added)
+++ webservices/scout/trunk/modules/scout/pom.xml Tue Mar 20 08:41:13 2007
@@ -0,0 +1,176 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.apache.ws.scout</groupId>
+ <artifactId>scout-parent</artifactId>
+ <version>SNAPSHOT</version>
+ <!-- Should better be ${axiom.version} -->
+ </parent>
+ <artifactId>scout</artifactId>
+ <name>Scout Implementation</name>
+ <version>SNAPSHOT</version>
+ <description>The Scout Implementation</description>
+ <dependencies>
+ <dependency>
+ <groupId>org.apache.ws.scout</groupId>
+ <artifactId>jaxr-api</artifactId>
+ <version>SNAPSHOT</version>
+ </dependency>
+
+ <!-- external JARs -->
+ <dependency>
+ <groupId>geronimo-spec</groupId>
+ <artifactId>geronimo-spec-activation</artifactId>
+ <version>1.0.2-rc4</version>
+ </dependency>
+ <dependency>
+ <groupId>jdom</groupId>
+ <artifactId>jdom</artifactId>
+ <version>1.0</version>
+ </dependency>
+
+ <dependency>
+ <groupId>commons-logging</groupId>
+ <artifactId>commons-logging</artifactId>
+ <version>1.0.4</version>
+ </dependency>
+ <dependency>
+ <groupId>commons-discovery</groupId>
+ <artifactId>commons-discovery</artifactId>
+ <version>0.2</version>
+ </dependency>
+ <dependency>
+ <groupId>axis</groupId>
+ <artifactId>axis</artifactId>
+ <version>1.4</version>
+ </dependency>
+ <dependency>
+ <groupId>axis</groupId>
+ <artifactId>axis-saaj</artifactId>
+ <version>1.4</version>
+ </dependency>
+ <dependency>
+ <groupId>axis</groupId>
+ <artifactId>axis-jaxrpc</artifactId>
+ <version>1.4</version>
+ </dependency>
+ <dependency>
+ <groupId>xmlbeans</groupId>
+ <artifactId>xbean</artifactId>
+ <version>2.2.0</version>
+ </dependency>
+ <dependency>
+ <groupId>stax</groupId>
+ <artifactId>stax-api</artifactId>
+ <version>1.0.1</version>
+ </dependency>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ </dependency>
+ <dependency>
+ <groupId>xerces</groupId>
+ <artifactId>xercesImpl</artifactId>
+ <version>2.8.0</version>
+ </dependency>
+ </dependencies>
+ <build>
+ <sourceDirectory>src</sourceDirectory>
+ <testSourceDirectory>test</testSourceDirectory>
+ <resources>
+ <resource>
+ <directory>conf</directory>
+ <excludes>
+ <exclude>**/*.properties</exclude>
+ </excludes>
+ <filtering>false</filtering>
+ </resource>
+ <resource>
+ <directory>src</directory>
+ <excludes>
+ <exclude>**/*.java</exclude>
+ </excludes>
+ </resource>
+ </resources>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <inherited>true</inherited>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <inherited>true</inherited>
+ <configuration>
+ <skip>false</skip>
+ <excludes>
+ <exclude>**/*Abstract*.java</exclude>
+ </excludes>
+ <includes>
+ <include>**/*Test.java</include>
+ </includes>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>1.1</version>
+ <executions>
+ <execution>
+ <id>gen-ts</id>
+ <phase>generate-sources</phase>
+ <configuration>
+ <tasks>
+ <property
name="schema.output.base.dir" value="target/schema"/>
+ <property
name="schema.generated.src.dir" value="${schema.output.base.dir}/src"/>
+ <property
name="compiled.classes.dir" value="target/classes"/>
+
+ <mkdir
dir="${schema.output.base.dir}"/>
+ <mkdir
dir="${schema.generated.src.dir}"/>
+ <mkdir
dir="${compiled.classes.dir}"/>
+
+
<echo>Generating xmlbeans from schema</echo>
+ <taskdef name="xmlbean"
classname="org.apache.xmlbeans.impl.tool.XMLBean"
classpathref="maven.runtime.classpath" />
+ <xmlbean
+ classgendir="${compiled.classes.dir}"
+ srcgendir="${schema.generated.src.dir}"
+ classpathref="maven.runtime.classpath">
+ <fileset dir="${basedir}/../../etc/"
includes="uddi_v2.xsd,uddi_v2.xsdconfig"/>
+ </xmlbean>
+ </tasks>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+
<artifactId>build-helper-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>add-source</id>
+ <phase>generate-sources</phase>
+ <goals>
+ <goal>add-source</goal>
+ </goals>
+ <configuration>
+ <sources>
+
<source>target/schema/src</source>
+ </sources>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+</project>
Added: webservices/scout/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/webservices/scout/trunk/pom.xml?view=auto&rev=520436
==============================================================================
--- webservices/scout/trunk/pom.xml (added)
+++ webservices/scout/trunk/pom.xml Tue Mar 20 08:41:13 2007
@@ -0,0 +1,439 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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">
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>org.apache.ws.scout</groupId>
+ <artifactId>scout-parent</artifactId>
+ <packaging>pom</packaging>
+ <name>Scout</name>
+ <version>SNAPSHOT</version>
+ <description>Scout API</description>
+ <url>http://ws.apache.org/scout/</url>
+ <issueManagement>
+ <system>JIRA</system>
+ <url>http://issues.apache.org/jira/browse/SCOUT</url>
+ </issueManagement>
+ <ciManagement>
+ <system>Continuum</system>
+ <url>unknown</url>
+ <notifiers>
+ <notifier>
+ <sendOnError>false</sendOnError>
+ <sendOnFailure>false</sendOnFailure>
+ <sendOnSuccess>false</sendOnSuccess>
+ <sendOnWarning>false</sendOnWarning>
+ <configuration>
+ <address>[email protected]</address>
+ </configuration>
+ </notifier>
+ </notifiers>
+ </ciManagement>
+ <mailingLists>
+ <mailingList>
+ <name>WS Scout Developers</name>
+ <subscribe>[EMAIL PROTECTED]</subscribe>
+ <unsubscribe>[EMAIL PROTECTED]</unsubscribe>
+ <post>[email protected]</post>
+
<archive>http://mail-archives.apache.org/mod_mbox/ws-scout-dev/</archive>
+ </mailingList>
+ </mailingLists>
+ <inceptionYear>2004</inceptionYear>
+ <developers>
+ <developer>
+ <name>Saminda Abeyruwan</name>
+ <id>saminda</id>
+ <email>saminda AT wso2.com</email>
+ <organization>WSO2</organization>
+ </developer>
+ <developer>
+ <name>Afkham Azeez</name>
+ <id>azeez</id>
+ <email>azeez AT wso2.com</email>
+ <organization>WSO2</organization>
+ </developer>
+ <developer>
+ <name>Eran Chinthaka</name>
+ <id>chinthaka</id>
+ <email>chinthaka AT wso2.com</email>
+ <organization>WSO2</organization>
+ <url>http://www.apache.org/~chinthaka</url>
+ </developer>
+ <developer>
+ <name>Glen Daniels</name>
+ <id>gdaniels</id>
+ <email>gdaniels AT apache.org</email>
+ <organization>Sonic Software</organization>
+ </developer>
+ <developer>
+ <name>Jaliya Ekanayake</name>
+ <id>jaliya</id>
+ <email>jaliya AT opensource.lk</email>
+ <organization>Virtusa / Lanka Software Foundation</organization>
+ <url>http://www.apache.org/~jaliya</url>
+ </developer>
+ <developer>
+ <name>Ruchith Fernando</name>
+ <id>ruchith</id>
+ <email>ruchith AT wso2.com</email>
+ <organization>WSO2</organization>
+ </developer>
+ <developer>
+ <id>thilina</id>
+ <name>Thilina Gunarathne</name>
+ <email>thilina AT wso2.com</email>
+ <url>http://www.apache.org/~thilina</url>
+ <organization>WSO2</organization>
+ </developer>
+ <developer>
+ <name>Chathura Herath</name>
+ <id>chathura</id>
+ <email>chathura AT opensource.lk</email>
+ <organization>LSF/MIT</organization>
+ <url>www.apache.org/~chathura</url>
+ </developer>
+ <developer>
+ <name>Deepal Jayasinghe</name>
+ <id>deepal</id>
+ <email>deepal AT wso2.com</email>
+ <organization>WSO2</organization>
+ <url>http://www.apache.org/~deepal</url>
+ </developer>
+ <developer>
+ <name>Chatra Nakkawita</name>
+ <id>chatra</id>
+ <email>chatra AT WSO2.com</email>
+ <organization>WSO2</organization>
+ </developer>
+ <developer>
+ <name>Srinath Perera</name>
+ <id>hemapani</id>
+ <email>hemapani AT apache.org</email>
+ <organization>Lanka Software Foundation</organization>
+ <url>http://www.apache.org/~hemapani</url>
+ </developer>
+ <developer>
+ <name>Ajith Ranabahu</name>
+ <id>ajith</id>
+ <email>ajith AT wso2.com</email>
+ <organization>WSO2</organization>
+ <url>http://www.apache.org/~ajith</url>
+ </developer>
+ <developer>
+ <name>Venkat Reddy</name>
+ <id>venkat</id>
+ <email>vreddyp AT gmail.com</email>
+ <organization>Computer Associates</organization>
+ </developer>
+ <developer>
+ <name>Ashutosh Shahi</name>
+ <id>ashu</id>
+ <email>Ashutosh.Shahi AT ca.com</email>
+ <organization>Computer Associates</organization>
+ </developer>
+ <developer>
+ <name>Aleksander Slominski</name>
+ <id>alek</id>
+ <email>aslom AT cs.indiana.edu</email>
+ <organization>Indiana University Extreme! Computing
Lab</organization>
+ </developer>
+ <developer>
+ <name>Davanum Srinivas</name>
+ <id>dims</id>
+ <email>dims AT wso2.com</email>
+ <organization>WSO2</organization>
+ </developer>
+ <developer>
+ <name>Jayachandra Sekhara Rao Sunkara</name>
+ <id>jaya</id>
+ <email>jayachandra AT gmail.com</email>
+ <organization>Computer Associates</organization>
+ </developer>
+ <developer>
+ <name>Dasarath Weerathunga</name>
+ <id>dasarath</id>
+ <email>dasarath AT opensource.lk</email>
+ <organization>Lanka Software Foundation</organization>
+ </developer>
+ <developer>
+ <name>Sanjiva Weerawarana</name>
+ <id>sanjiva</id>
+ <email>sanjiva AT wso2.com</email>
+ <organization>WSO2</organization>
+ </developer>
+ </developers>
+ <contributors>
+
+ <contributor>
+ <name>Dharshana Dias</name>
+ <email/>
+ <organization>Lanka Software Foundation / University of
Moratuwa</organization>
+ </contributor>
+ <contributor>
+ <name>Anushka Kumara</name>
+ <email>anushkakumar AT gmail.com</email>
+ <organization>Lanka Software Foundation / University of
Moratuwa</organization>
+ </contributor>
+ <contributor>
+ <name>Chinthaka Thilakarathne</name>
+ <email/>
+ <organization>Lanka Software Foundation / University of
Moratuwa</organization>
+ </contributor>
+ <contributor>
+ <name>Jochen Wiedmann</name>
+ <email>jochen.wiedmann AT gmail.com</email>
+ </contributor>
+ </contributors>
+ <licenses>
+ <license>
+ <name>The Apache Software License, Version 2.0</name>
+ <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
+ <distribution>repo</distribution>
+ </license>
+ </licenses>
+ <scm>
+
<connection>scm:svn:http://svn.apache.org/repos/asf/webservices/scout/trunk/</connection>
+ <developerConnection>
+
scm:svn:https://svn.apache.org/repos/asf/webservices/scout/trunk/</developerConnection>
+ <url>http://svn.apache.org/viewcvs.cgi/webservices/scout/trunk/</url>
+ </scm>
+ <organization>
+ <name>Apache Software Foundation</name>
+ <url>http://www.apache.org/</url>
+ </organization>
+ <profiles>
+ <profile>
+ <id>release</id>
+ <activation>
+ <property>
+ <name>release</name>
+ <value></value>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <attach>true</attach>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-one-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>install-maven-one-repository</goal>
+ <goal>deploy-maven-one-repository</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+
<remoteRepositoryId>apache-snapshots</remoteRepositoryId>
+
<remoteRepositoryUrl>scp://people.apache.org/www/people.apache.org/repo/m1-ibiblio-rsync-repository</remoteRepositoryUrl>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-release-plugin</artifactId>
+ <configuration>
+
<tagBase>http://svn.apache.org/repos/asf/webservices/scout/tags/</tagBase>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ <profile>
+ <id>rc</id>
+ <activation>
+ <property>
+ <name>rc</name>
+ <value></value>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <attach>true</attach>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-one-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>install-maven-one-repository</goal>
+ <goal>deploy-maven-one-repository</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+
<remoteRepositoryId>apache-snapshots</remoteRepositoryId>
+
<remoteRepositoryUrl>scp://people.apache.org/www/people.apache.org/repo/m1-snapshot-repository</remoteRepositoryUrl>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <inherited>true</inherited>
+ <configuration>
+ <source>1.5</source>
+ <target>1.5</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-assembly-plugin</artifactId>
+ <configuration>
+ <descriptors>
+ <descriptor>src/main/assembly/bin.xml</descriptor>
+ <descriptor>src/main/assembly/src.xml</descriptor>
+ </descriptors>
+ <tarLongFileMode>gnu</tarLongFileMode>
+ </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-source-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>jar</goal>
+ </goals>
+ </execution>
+ </executions>
+ <configuration>
+ <attach>true</attach>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ <pluginRepositories>
+ <pluginRepository>
+ <id>snapshot</id>
+ <name>Snapshot repository</name>
+ <url>http://snapshots.maven.codehaus.org/maven2/</url>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ </pluginRepository>
+ <pluginRepository>
+ <id>snapshot-apache</id>
+ <name>Apache Snapshot repository</name>
+ <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <releases>
+ <enabled>false</enabled>
+ </releases>
+ </pluginRepository>
+ </pluginRepositories>
+ <dependencyManagement>
+ <dependencies>
+ <dependency>
+ <groupId>xmlbeans</groupId>
+ <artifactId>xbean</artifactId>
+ <version>2.2.0</version>
+ </dependency>
+ <dependency>
+ <groupId>stax</groupId>
+ <artifactId>stax-api</artifactId>
+ <version>1.0.1</version>
+ </dependency>
+ </dependencies>
+ </dependencyManagement>
+ <reporting>
+ <plugins>
+ <!--<plugin>-->
+ <!--<inherited>false</inherited>-->
+ <!--<artifactId>maven-javadoc-plugin</artifactId>-->
+ <!--<configuration>-->
+ <!--<aggregate>true</aggregate>-->
+ <!--</configuration>-->
+ <!--</plugin>-->
+ <!--<plugin>-->
+ <!--<artifactId>maven-changes-plugin</artifactId>-->
+ <!--<reportSets>-->
+ <!--<reportSet>-->
+ <!--<reports>-->
+ <!--<report>changes-report</report>-->
+ <!--</reports>-->
+ <!--</reportSet>-->
+ <!--</reportSets>-->
+ <!--</plugin>-->
+ <plugin>
+ <artifactId>maven-project-info-reports-plugin</artifactId>
+ </plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>jdepend-maven-plugin</artifactId>
+ </plugin>
+ <!--<plugin>-->
+ <!--<groupId>org.codehaus.mojo</groupId>-->
+ <!--<artifactId>jxr-maven-plugin</artifactId>-->
+ <!--<version>2.0-beta-2-SNAPSHOT</version>-->
+ <!--</plugin>-->
+ <plugin>
+ <artifactId>maven-site-plugin</artifactId>
+ <inherited>false</inherited>
+ </plugin>
+ </plugins>
+ </reporting>
+ <distributionManagement>
+ <repository>
+ <id>apache-repo</id>
+ <name>Maven Central Repository</name>
+
<url>scpexe://people.apache.org//www/people.apache.org/repo/m2-ibiblio-rsync-repository</url>
+ </repository>
+ <snapshotRepository>
+ <id>apache-snapshots</id>
+ <name>Apache Development Repository</name>
+
<url>scpexe://people.apache.org//www/people.apache.org/repo/m2-snapshot-repository</url>
+ </snapshotRepository>
+ <site>
+ <id>website</id>
+ <url>scpexe://people.apache.org/www/ws.apache.org/scout</url>
+ </site>
+ </distributionManagement>
+
+ <!-- maven download repositry -->
+ <repositories>
+ <repository>
+ <id>maven2</id>
+ <name>Maven Central Development Repository</name>
+ <url>http://repo1.maven.org/maven2</url>
+ </repository>
+ </repositories>
+
+ <modules>
+ <module>modules/jaxr-api</module>
+ <module>modules/scout</module>
+ </modules>
+ <properties>
+ <scout.version>${pom.version}</scout.version>
+ </properties>
+</project>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]