You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ps...@apache.org on 2009/11/25 20:39:47 UTC

svn commit: r884236 - in /commons/sandbox/runtime/trunk: maven.xml pom.xml project.xml src/site/ src/site/site.xml xdocs/index.xml

Author: psteitz
Date: Wed Nov 25 19:39:47 2009
New Revision: 884236

URL: http://svn.apache.org/viewvc?rev=884236&view=rev
Log:
Dropped maven 1 artifacts and added minimal maven 2 pom, site.xml for site generation only.

Added:
    commons/sandbox/runtime/trunk/pom.xml   (with props)
    commons/sandbox/runtime/trunk/src/site/
    commons/sandbox/runtime/trunk/src/site/site.xml   (with props)
Removed:
    commons/sandbox/runtime/trunk/maven.xml
    commons/sandbox/runtime/trunk/project.xml
Modified:
    commons/sandbox/runtime/trunk/xdocs/index.xml

Added: commons/sandbox/runtime/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/pom.xml?rev=884236&view=auto
==============================================================================
--- commons/sandbox/runtime/trunk/pom.xml (added)
+++ commons/sandbox/runtime/trunk/pom.xml Wed Nov 25 19:39:47 2009
@@ -0,0 +1,100 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+   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.
+-->
+
+<!-- 
+    Minimal POM to support site generation only.  This component does not use maven
+    as its build tool.  Use "mvn site" to generate the component site.
+
+   $Revision$ $Date$  
+-->
+
+<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-parent</artifactId>
+        <version>7</version>
+    </parent>
+
+    <artifactId>commons-runtime</artifactId>
+    <version>1.0-SNAPSHOT</version>
+    <name>Commons Runtime (Sandbox)</name>
+    <inceptionYear>2008</inceptionYear>
+    <description>
+    </description>
+
+    <url>http://commons.apache.org/sandbox/runtime/</url>
+
+    <scm>
+        <connection>
+            scm:svn:http://svn.apache.org/repos/asf/commons/sandbox/runtime/trunk/
+        </connection>
+        <developerConnection>
+            scm:svn:https://svn.apache.org/repos/asf/commons/sandbox/runtime/trunk/
+        </developerConnection>
+        <url>
+            http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/
+        </url>
+    </scm>
+
+    <distributionManagement>
+        <site>
+            <id>people.apache.org</id>
+            <name>Commons Runtime</name>
+            <url>
+                ${commons.deployment.protocol}://people.apache.org/www/commons.apache.org/sandbox/runtime
+            </url>
+        </site>
+    </distributionManagement>
+
+    <developers>
+        <developer>
+            <name>Mladen Turk</name>
+            <id>mturk</id>
+            <email>mturk at apache dot org</email>
+        </developer>
+    </developers>
+
+    <dependencies>
+    </dependencies>
+
+    <build>
+      <!-- prevent compilation -->
+      <sourceDirectory></sourceDirectory>
+      <testSourceDirectory></testSourceDirectory>
+      <!-- turn off reports -->
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-site-plugin</artifactId>
+          <configuration>
+            <generateReports>false</generateReports>
+          </configuration>
+        </plugin>
+      </plugins>
+    </build>
+
+    <reporting>
+    </reporting>
+ 
+    <properties>
+        <commons.componentid>runtime</commons.componentid>
+    </properties>
+</project>

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

Propchange: commons/sandbox/runtime/trunk/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: commons/sandbox/runtime/trunk/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: commons/sandbox/runtime/trunk/src/site/site.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/site/site.xml?rev=884236&view=auto
==============================================================================
--- commons/sandbox/runtime/trunk/src/site/site.xml (added)
+++ commons/sandbox/runtime/trunk/src/site/site.xml Wed Nov 25 19:39:47 2009
@@ -0,0 +1,34 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  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="runtime">
+  <bannerRight>
+    <name>Commons Runtime</name>
+    <href>/index.html</href>
+  </bannerRight>
+  <body>
+    <menu name="Runtime">
+      <item name="Overview"      href="/index.html" />
+    </menu>
+    <menu name="Development">
+      <item name="Mailing Lists"           href="/mail-lists.html"/>
+      <item name="Issue Tracking"          href="/issue-tracking.html"/>
+      <item name="Source Repository"       href="/source-repository.html"/>
+      <item name="Javadoc"                 href="/apidocs/index.html"/>
+    </menu>
+  </body>
+</project>

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

Propchange: commons/sandbox/runtime/trunk/src/site/site.xml
------------------------------------------------------------------------------
    svn:keywords = Date Revision

Propchange: commons/sandbox/runtime/trunk/src/site/site.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Modified: commons/sandbox/runtime/trunk/xdocs/index.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/xdocs/index.xml?rev=884236&r1=884235&r2=884236&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/xdocs/index.xml (original)
+++ commons/sandbox/runtime/trunk/xdocs/index.xml Wed Nov 25 19:39:47 2009
@@ -26,8 +26,8 @@
 
 <body>
 <section name="Apache Commons Runtime">
-<p>In today's world Java&trade; is used mainly to develop server based
-application. On the other hand Java&trade; doesn't offer API that
+<p>In today's world Java is used mainly to develop server based
+application. On the other hand Java doesn't offer API that
 can fully benefit from the features most modern operating systems provide.
 </p>