blob: 25de4eb64b38a21bfc83a4906d4be2a02cc686b4 [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?>
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.ws.scout</groupId>
<artifactId>scout-parent</artifactId>
<packaging>pom</packaging>
<name>Scout</name>
<version>1.1-SNAPSHOT</version>
<description>Apache Scout is an implementation of the JSR 93 - JavaTM API for
XML Registries 1.0 (JAXR)</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>http://vmbuild.apache.org</url>
<notifiers>
<notifier>
<sendOnError>true</sendOnError>
<sendOnFailure>true</sendOnFailure>
<sendOnSuccess>true</sendOnSuccess>
<sendOnWarning>true</sendOnWarning>
<configuration>
<address>scout-dev@ws.apache.org</address>
</configuration>
</notifier>
</notifiers>
</ciManagement>
<inceptionYear>2004</inceptionYear>
<mailingLists>
<mailingList>
<name>WS Scout Developers</name>
<subscribe>scout-dev-subscribe@ws.apache.org</subscribe>
<unsubscribe>scout-dev-unsubscribe@ws.apache.org</unsubscribe>
<post>scout-dev@ws.apache.org</post>
<archive>http://mail-archives.apache.org/mod_mbox/ws-scout-dev/</archive>
</mailingList>
</mailingLists>
<developers>
<developer>
<id>anil</id>
<name>Anil Saldhana</name>
<email>anil@apache.org</email>
<organization></organization>
</developer>
<developer>
<id>dims</id>
<name>Davanum Srinivas</name>
<email>dims@yahoo.com</email>
<organization></organization>
</developer>
<developer>
<id>kstam</id>
<name>Kurt T Stam</name>
<email>kstam@apache.org</email>
<organization></organization>
</developer>
<developer>
<id>jfaath</id>
<name>Jeff Faath</name>
<email>jfaath@apache.org</email>
<organization></organization>
</developer>
<developer>
<id>linsun</id>
<name>Lin Sun</name>
<email>linsun@apache.org</email>
<organization></organization>
</developer>
<developer>
<id>tcunning</id>
<name>Tom Cunningham</name>
<email>tcunning@apache.org</email>
<organization></organization>
</developer>
</developers>
<contributors>
<contributor>
<name>Deepack Bhole</name>
<email>dbhole@apache.org</email>
<organization></organization>
</contributor>
<contributor>
<name>Steve Viens</name>
<email>sviens@apache.org</email>
<organization></organization>
</contributor>
<contributor>
<name>David Jencks</name>
<email>djencks@apache.org</email>
<organization></organization>
</contributor>
<contributor>
<name>Jeremy Boynes</name>
<email>jboynes@apache.org</email>
<organization></organization>
</contributor>
<contributor>
<name>Jarek Gawor</name>
<email>gawor@apache.org</email>
<organization></organization>
</contributor>
<contributor>
<name>Geir Magnusson Jr.</name>
<email>geirm@apache.org</email>
<organization></organization>
</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>
<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>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1</version>
<configuration>
<attach>true</attach>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<activation>
<property>
<name>release</name>
<value>1.0</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<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>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<tagBase>http://svn.apache.org/repos/asf/webservices/scout/tags/</tagBase>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>rc</id>
<activation>
<property>
<name>rc</name>
<value>1.1rc1</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>
<modules>
<module>jaxr-api</module>
<module>scout</module>
</modules>
<repositories>
<repository>
<id>snapshot-apache</id>
<name>Apache Snapshot repository</name>
<url>http://people.apache.org/repo/m2-snapshot-repository</url>
</repository>
<repository>
<id>maven2</id>
<name>Maven Central Development Repository</name>
<url>http://repo1.maven.org/maven2</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<releases>
<enabled>false</enabled>
</releases>
<snapshots />
<id>snapshot</id>
<name>Snapshot repository</name>
<url>http://snapshots.maven.codehaus.org/maven2/</url>
</pluginRepository>
<pluginRepository>
<releases>
<enabled>false</enabled>
</releases>
<snapshots />
<id>snapshot-apache</id>
<name>Apache Snapshot repository</name>
<url>http://people.apache.org/repo/m2-snapshot-repository</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
<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>4.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.8.0</version>
</dependency>
<dependency>
<groupId>org.apache.juddi</groupId>
<artifactId>juddi</artifactId>
<version>2.0rc7</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>10.1.2.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.13</version>
<scope>test</scope>
</dependency>
</dependencies>
<reporting>
<plugins>
<plugin>
<artifactId>maven-project-info-reports-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>jdepend-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-site-plugin</artifactId>
<inherited>false</inherited>
</plugin>
</plugins>
</reporting>
<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>
<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>
<properties>
<scout.version>${pom.version}</scout.version>
</properties>
</project>