You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by de...@apache.org on 2007/01/06 18:59:15 UTC

svn commit: r493521 - in /jakarta/commons/sandbox/i18n/trunk: pom.xml src/site/ src/site/site.xml

Author: dennisl
Date: Sat Jan  6 09:59:15 2007
New Revision: 493521

URL: http://svn.apache.org/viewvc?view=rev&rev=493521
Log:
First shot a Maven 2 build and site.
Note that the right banner image and the class diagram pdf will not be copied to the site. If they are moved to src/site/resources it works.

Added:
    jakarta/commons/sandbox/i18n/trunk/pom.xml   (with props)
    jakarta/commons/sandbox/i18n/trunk/src/site/
    jakarta/commons/sandbox/i18n/trunk/src/site/site.xml   (with props)

Added: jakarta/commons/sandbox/i18n/trunk/pom.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/sandbox/i18n/trunk/pom.xml?view=auto&rev=493521
==============================================================================
--- jakarta/commons/sandbox/i18n/trunk/pom.xml (added)
+++ jakarta/commons/sandbox/i18n/trunk/pom.xml Sat Jan  6 09:59:15 2007
@@ -0,0 +1,130 @@
+<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.commons</groupId>
+    <artifactId>commons-sandbox</artifactId>
+    <version>1-SNAPSHOT</version>
+  </parent>
+  <artifactId>commons-i18n</artifactId>
+  <version>1.0-SNAPSHOT</version>
+  <name>Commons i18n</name>
+  <description>Internationalization package</description>
+  <url>http://jakarta.apache.org/commons/sandbox/i18n/</url>
+  <inceptionYear>2004</inceptionYear>
+  <developers>
+    <developer>
+      <id>dflorey</id>
+      <name>Daniel Florey</name>
+      <email>dflorey@apache.org</email>
+      <organization>Apache Software Foundation</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </developer>
+    <developer>
+      <id>ozeigermann</id>
+      <name>Oliver Zeigermann</name>
+      <email>ozeigermann@apache.org</email>
+      <organization>Apache Software Foundation</organization>
+      <roles>
+        <role>Java Developer</role>
+      </roles>
+      <timezone>+1</timezone>
+    </developer>
+  </developers>
+  <contributors>
+    <contributor>
+      <name>Mattias Jiderhamn</name>
+      <email>mattias.jiderhamn@expertsystem.se</email>
+    </contributor>
+    <contributor>
+      <name>Anaximandro (Woody)</name>
+      <email>agodinhost@globo.com</email>
+    </contributor>
+  </contributors>
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/jakarta/commons/sandbox/i18n/trunk/</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/jakarta/commons/sandbox/i18n/trunk/</developerConnection>
+    <url>http://svn.apache.org/repos/asf/jakarta/commons/sandbox/i18n/trunk/</url>
+  </scm>
+  <build>
+    <sourceDirectory>src/java</sourceDirectory>
+    <testSourceDirectory>src/test</testSourceDirectory>
+    <resources>
+      <resource>
+        <directory>${basedir}/src/resources</directory>
+      </resource>
+    </resources>
+    <testResources>
+      <testResource>
+        <directory>${basedir}/src/test</directory>
+      </testResource>
+    </testResources>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>hsqldb</groupId>
+      <artifactId>hsqldb</artifactId>
+      <version>1.7.3.3</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>commons-dbcp</groupId>
+      <artifactId>commons-dbcp</artifactId>
+      <version>1.2.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>commons-pool</groupId>
+      <artifactId>commons-pool</artifactId>
+      <version>1.2</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+      <version>2.1.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.2</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-changes-plugin</artifactId>
+        <configuration>
+          <xmlPath>${basedir}/xdocs/changes.xml</xmlPath>
+          <issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate>
+        </configuration>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>changes-report</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+    </plugins>
+  </reporting>
+  <distributionManagement>
+    <site>
+      <id>website</id>
+      <name>Apache Website</name>
+      <url>scp://people.apache.org/www/jakarta.apache.org/commons/sandbox/i18n/</url>
+    </site>
+  </distributionManagement>
+</project>

Propchange: jakarta/commons/sandbox/i18n/trunk/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: jakarta/commons/sandbox/i18n/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/sandbox/i18n/trunk/src/site/site.xml?view=auto&rev=493521
==============================================================================
--- jakarta/commons/sandbox/i18n/trunk/src/site/site.xml (added)
+++ jakarta/commons/sandbox/i18n/trunk/src/site/site.xml Sat Jan  6 09:59:15 2007
@@ -0,0 +1,14 @@
+<site>
+  <bannerRight>
+    <name>Commons I18n</name>
+    <src>/images/i18n-logo-white.png</src>
+    <href>http://jakarta.apache.org/commons/sandbox/i18n/</href>
+  </bannerRight>
+  <body>
+    <menu name="Commons I18n">
+      <item name="Overview" href="/index.html" />
+      <item name="Getting started" href="/quickstart.html" />
+      <item name="Examples" href="/examples.html" />
+    </menu>
+  </body>
+</site>

Propchange: jakarta/commons/sandbox/i18n/trunk/src/site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org