You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mrunit.apache.org by es...@apache.org on 2011/06/13 22:28:00 UTC

svn commit: r1135261 - in /incubator/mrunit/trunk: pom.xml src/site/ src/site/site.xml

Author: esammer
Date: Mon Jun 13 20:28:00 2011
New Revision: 1135261

URL: http://svn.apache.org/viewvc?rev=1135261&view=rev
Log:
MRUNIT-2: Create a project site

Added:
    incubator/mrunit/trunk/src/site/
    incubator/mrunit/trunk/src/site/site.xml
Modified:
    incubator/mrunit/trunk/pom.xml

Modified: incubator/mrunit/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/mrunit/trunk/pom.xml?rev=1135261&r1=1135260&r2=1135261&view=diff
==============================================================================
--- incubator/mrunit/trunk/pom.xml (original)
+++ incubator/mrunit/trunk/pom.xml Mon Jun 13 20:28:00 2011
@@ -25,11 +25,38 @@
   <artifactId>mrunit</artifactId>
   <version>0.5.0-incubating</version>
   <name>MRUnit</name>
+  <url>http://incubator.apache.org/mrunit/</url>
+
+  <description>
+    MRUnit is a Java library that helps developers unit test Apache Hadoop map
+    reduce jobs.
+  </description>
+
+  <organization>
+    <name>Apache Software Foundation</name>
+    <url>http://www.apache.org</url>
+  </organization>
 
   <properties>
     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
   </properties>
 
+  <issueManagement>
+    <system>JIRA</system>
+    <url>http://issues.apache.org/jira/browse/MRUNIT</url>
+  </issueManagement>
+
+  <ciManagement>
+    <system>Jenkins</system>
+    <url>http://builds.apache.org/job/mrunit-trunk/</url>
+  </ciManagement>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/mrunit/trunk/</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/mrunit/trunk/</developerConnection>
+    <url>http://svn.apache.org/viewvc/incubator/mrunit/trunk/</url>
+  </scm>
+
   <licenses>
     <license>
       <name>The Apache Software License, Version 2.0</name>
@@ -37,8 +64,54 @@
     </license>
   </licenses>
 
-  <build>
+  <mailingLists>
+    <mailingList>
+      <name>mrunit user</name>
+      <post>mrunit-user@incubator.apache.org</post>
+      <subscribe>mrunit-user-subscribe@incubator.apache.org</subscribe>
+      <unsubscribe>mrunit-user-unsubscribe@incubator.apache.org</unsubscribe>
+      <archive>http://mail-archives.apache.org/mod_mbox/incubator-mrunit-user</archive>
+    </mailingList>
+    <mailingList>
+      <name>mrunit dev</name>
+      <post>mrunit-dev@incubator.apache.org</post>
+      <subscribe>mrunit-dev-subscribe@incubator.apache.org</subscribe>
+      <unsubscribe>mrunit-dev-unsubscribe@incubator.apache.org</unsubscribe>
+      <archive>http://mail-archives.apache.org/mod_mbox/incubator-mrunit-dev</archive>
+    </mailingList>
+    <mailingList>
+      <name>mrunit commits</name>
+      <post>mrunit-commits@incubator.apache.org</post>
+      <subscribe>mrunit-commits-subscribe@incubator.apache.org</subscribe>
+      <unsubscribe>mrunit-commits-unsubscribe@incubator.apache.org</unsubscribe>
+      <archive>http://mail-archives.apache.org/mod_mbox/incubator-mrunit-commits</archive>
+    </mailingList>
+  </mailingLists>
+
+  <developers>
+    <developer>
+      <id>kimballa.apache.org</id>
+      <email>kimballa@apache.org</email>
+      <name>Aaron Kimball</name>
+    </developer>
+    <developer>
+      <id>cos.apache.org</id>
+      <email>cos@apache.org</email>
+      <name>Konstantin Boudnik</name>
+    </developer>
+    <developer>
+      <id>gwu.apache.org</id>
+      <email>gwu@apache.org</email>
+      <name>Garrett Wu</name>
+    </developer>
+    <developer>
+      <id>esammer.apache.org</id>
+      <email>esammer@apache.org</email>
+      <name>Eric Sammer</name>
+    </developer>
+  </developers>
 
+  <build>
     <plugins>
 
       <plugin>
@@ -100,8 +173,21 @@
         </executions>
       </plugin>
 
-    </plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-site-plugin</artifactId>
+        <version>3.0-beta-3</version>
+      </plugin>
 
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>2.8</version>
+        <configuration>
+        </configuration>
+      </plugin>
+
+    </plugins>
   </build>
 
   <dependencies>
@@ -151,4 +237,29 @@
 
   </dependencies>
 
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+        <version>2.4</version>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-report-plugin</artifactId>
+        <version>2.8.1</version>
+      </plugin>
+        <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jxr-plugin</artifactId>
+        <version>2.2</version>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+        <version>2.8</version>
+      </plugin>
+    </plugins>
+  </reporting>
+
 </project>

Added: incubator/mrunit/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/incubator/mrunit/trunk/src/site/site.xml?rev=1135261&view=auto
==============================================================================
--- incubator/mrunit/trunk/src/site/site.xml (added)
+++ incubator/mrunit/trunk/src/site/site.xml Mon Jun 13 20:28:00 2011
@@ -0,0 +1,70 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+      http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<project name="MRUnit">
+  <bannerLeft>
+    <name>MRUnit</name>
+    <href>http://incubator.apache.org/mrunit/</href>
+  </bannerLeft>
+  <bannerRight>
+    <src>http://incubator.apache.org/images/apache-incubator-logo.png</src>
+    <href>http://incubator.apache.org/</href>
+  </bannerRight>
+
+  <publishDate position="right"/>
+  <version position="right"/>
+
+  <body>
+    <links position="left">
+      <item name="Wiki" href="https://cwiki.apache.org/confluence/display/MRUNIT" />
+      <item name="JIRA" href="https://issues.apache.org/jira/browse/MRUNIT" />
+      <item name="SVN" href="https://svn.apache.org/repos/asf/incubator/mrunit/" />
+    </links>
+
+    <breadcrumbs position="left">
+      <item name="Apache" href="http://www.apache.org/" />
+      <item name="Apache Incubator" href="http://incubator.apache.org/" />
+      <item name="MRUnit" href="http://incubator.apache.org/mrunit/"/>
+    </breadcrumbs>
+
+    <menu name="MRUnit">
+      <item name="About" href="index.html"/>
+      <item name="Download" href="http://www.apache.org/dyn/closer.cgi/incubator/mrunit/"/>
+      <item name="Road Map" href="https://issues.apache.org/jira/browse/MRUNIT#selectedTab=com.atlassian.jira.plugin.system.project%3Aroadmap-panel" />
+      <item name="Wiki" href="https://cwiki.apache.org/confluence/display/MRUNIT" />
+    </menu>
+
+    <menu name="Project Information">
+      <item name="Summary" href="project-info.html" />
+      <item name="Mailing Lists" href="mail-lists.html" />
+      <item name="Issue Tracking" href="issue-tracking.html" />
+      <item name="Source" href="source-repository.html" />
+      <item name="Team" href="team-list.html" />
+      <item name="License" href="license.html" />
+      <item name="Dependencies" href="dependencies.html" />
+    </menu>
+
+    <menu name="Reports">
+      <item name="Summary" href="project-reports.html" />
+      <item name="Unit Test Report" href="surefire-report.html" />
+      <item name="Javadoc" href="apidocs" />
+      <item name="Source Xref" href="xref/index.html" />
+      <item name="Test Source Xref" href="xref-test/index.html" />
+    </menu>
+
+  </body>
+</project>