Author: ogusakov
Date: Fri Aug 1 14:43:15 2008
New Revision: 681851
URL: http://svn.apache.org/viewvc?rev=681851&view=rev
Log:
split mercury into modules
Modified:
maven/sandbox/trunk/mercury/pom.xml
Modified: maven/sandbox/trunk/mercury/pom.xml
URL:
http://svn.apache.org/viewvc/maven/sandbox/trunk/mercury/pom.xml?rev=681851&r1=681850&r2=681851&view=diff
==============================================================================
--- maven/sandbox/trunk/mercury/pom.xml (original)
+++ maven/sandbox/trunk/mercury/pom.xml Fri Aug 1 14:43:15 2008
@@ -1,159 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
http://maven.apache.org/maven-v4_0_0.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+<project>
<modelVersion>4.0.0</modelVersion>
<groupId>org.apache.maven.mercury</groupId>
- <artifactId>mercury</artifactId>
- <version>1.0-SNAPSHOT</version>
- <packaging>jar</packaging>
- <name>Batch HTTP Client</name>
- <developers>
- <developer>
- <name>Jan Bartel</name>
- </developer>
- <developer>
- <name>Jesse McConnell</name>
- </developer>
- <developer>
- <name>Oleg Gusakov</name>
- </developer>
- <developer>
- <name>Jason van Zyl</name>
- </developer>
- <developer>
- <name>Greg Wilkins</name>
- </developer>
- </developers>
- <scm>
-
<connection>scm:svn:http://svn.apache.org/repos/asf/maven/sandbox/trunk/mercury/</connection>
-
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/sandbox/trunk/mercury/</developerConnection>
- </scm>
+ <artifactId>mercury</artifactId>
+ <packaging>pom</packaging>
+ <name>Mercury Reactor</name>
+ <version>1.0.0-SNAPSHOT</version>
+
+ <modules>
+ <module>mercury-pom</module>
+ <module>mercury-artifact</module>
+ <module>mercury-md</module>
+ <module>mercury-repo</module>
+ <module>mercury-transport</module>
+ <module>mercury-external</module>
+ </modules>
+
<build>
<defaultGoal>install</defaultGoal>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.codehaus.modello</groupId>
- <artifactId>modello-maven-plugin</artifactId>
- <version>1.0-alpha-17</version>
- <configuration>
- <version>1.0.0</version>
- <model>src/main/mdo/metadata.mdo</model>
- </configuration>
- <executions>
- <execution>
- <id>site-docs</id>
- <phase>pre-site</phase>
- <goals>
- <goal>xdoc</goal>
- <goal>xsd</goal>
- </goals>
- </execution>
- <execution>
- <id>standard</id>
- <goals>
- <goal>java</goal>
- <goal>xpp3-reader</goal>
- <goal>xpp3-writer</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.codehaus.plexus</groupId>
- <artifactId>plexus-maven-plugin</artifactId>
- <version>1.3.8</version>
- <executions>
- <execution>
- <goals>
- <goal>descriptor</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <!--
- <plugin>
- <groupId>com.google.code.maven-license-plugin</groupId>
- <artifactId>maven-license-plugin</artifactId>
- <configuration>
- <basedir>${basedir}</basedir>
- <header>${basedir}/header.txt</header>
- <quiet>false</quiet>
- <includes>
- <include>src/**</include>
- </includes>
- <useDefaultExcludes>true</useDefaultExcludes>
- <useDefaultMapping>true</useDefaultMapping>
- </configuration>
- </plugin>
- -->
- </plugins>
</build>
- <dependencies>
- <dependency>
- <groupId>org.codehaus.plexus</groupId>
- <artifactId>plexus-container-default</artifactId>
- <version>1.0-alpha-43</version>
- </dependency>
- <dependency>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>jetty-client</artifactId>
- <version>7.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>jetty-servlet</artifactId>
- <version>7.0-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>org.codehaus.plexus</groupId>
- <artifactId>plexus-utils</artifactId>
- <version>1.5.1</version>
- </dependency>
- <!-- SAT solver used to calculate viable ranges when dependencies are
expressed pseudo boolean form -->
- <dependency>
- <groupId>org.sat4j</groupId>
- <artifactId>org.sat4j.core</artifactId>
- <version>2.0.0</version>
- </dependency>
- <dependency>
- <groupId>org.sat4j</groupId>
- <artifactId>org.sat4j.pb</artifactId>
- <version>2.0.0</version>
- </dependency>
- <!-- Test Dependencies -->
- <dependency>
- <groupId>org.mortbay.jetty</groupId>
- <artifactId>jetty-servlet-tester</artifactId>
- <version>7.0-SNAPSHOT</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>commons-digester</groupId>
- <artifactId>commons-digester</artifactId>
- <version>1.8</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-simple</artifactId>
- <version>1.5.2</version>
- </dependency>
- <dependency>
- <groupId>org.codehaus.plexus</groupId>
- <artifactId>plexus-i18n</artifactId>
- <version>1.0-beta-10-SNAPSHOT</version>
- </dependency>
- </dependencies>
-</project>
+
+</project>
\ No newline at end of file