Author: mbo
Date: Mon Mar 21 08:52:10 2005
New Revision: 158482

URL: http://svn.apache.org/viewcvs?view=rev&rev=158482
Log:
add maven files

Added:
    incubator/jdo/trunk/api20/maven.xml
    incubator/jdo/trunk/api20/project.xml
    incubator/jdo/trunk/api20/xdocs/
    incubator/jdo/trunk/api20/xdocs/index.xml
    incubator/jdo/trunk/api20/xdocs/navigation.xml

Added: incubator/jdo/trunk/api20/maven.xml
URL: 
http://svn.apache.org/viewcvs/incubator/jdo/trunk/api20/maven.xml?view=auto&rev=158482
==============================================================================
--- incubator/jdo/trunk/api20/maven.xml (added)
+++ incubator/jdo/trunk/api20/maven.xml Mon Mar 21 08:52:10 2005
@@ -0,0 +1,47 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Copyright 2005 The Apache Software Foundation
+
+    Licensed 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 default="default"
+    xmlns:j="jelly:core"
+    xmlns:ant="jelly:ant"
+    >
+
+    <!-- ==================== -->
+    <!-- Default Global Goals -->
+    <!-- ==================== -->
+
+    <goal name="default">
+        <attainGoal name="jar:install"/>
+    </goal>
+
+    <goal name="build">
+        <attainGoal name="default"/>
+    </goal>
+
+    <goal name="rebuild">
+        <attainGoal name="clean"/>
+        <attainGoal name="build"/>
+    </goal>
+
+    <goal name="clobber">
+        <attainGoal name="clean"/>
+        <delete>
+            <fileset dir="." defaultexcludes="no" includes="**/*~"/>
+        </delete>
+    </goal>
+
+</project>

Added: incubator/jdo/trunk/api20/project.xml
URL: 
http://svn.apache.org/viewcvs/incubator/jdo/trunk/api20/project.xml?view=auto&rev=158482
==============================================================================
--- incubator/jdo/trunk/api20/project.xml (added)
+++ incubator/jdo/trunk/api20/project.xml Mon Mar 21 08:52:10 2005
@@ -0,0 +1,77 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Copyright 2005 The Apache Software Foundation
+
+    Licensed 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>
+    <pomVersion>3</pomVersion>
+    <extend>../project.xml</extend>
+    <!-- ============== -->
+    <!-- Identification -->
+    <!-- ============== -->
+    <name>JDO API 2.0</name>
+    <artifactId>jdo-api</artifactId>
+    <currentVersion>2.0</currentVersion>
+    <package>javax.jdo</package>
+    <shortDescription>Java Data Object (JDO) API 2.0</shortDescription>
+    <description>The Java Data Objects (JDO) API is a standard interface-based 
+Java model abstraction of persistence, developed as Java Specification 
+Request 243 under the auspices of the Java Community Process.</description>
+    <repository />
+    <!-- ============ -->
+    <!-- Dependencies -->
+    <!-- ============ -->
+    <dependencies>
+        <dependency>
+            <groupId>geronimo-spec</groupId>
+            <artifactId>geronimo-spec-jta</artifactId>
+            <version>1.0.1B-rc2</version>
+        </dependency>
+    </dependencies>
+    <!-- =================== -->
+    <!-- Build Specification -->
+    <!-- =================== -->
+    <build>
+        <sourceDirectory>src/java</sourceDirectory>
+        <unitTestSourceDirectory>test/java</unitTestSourceDirectory>
+        <!-- Unit test cases -->
+        <unitTest>
+            <includes>
+                <include>**/*Test.java</include>
+            </includes>
+            <excludes>
+                <exclude>javax/jdo/util/AbstractTest.java</exclude>
+                <exclude>javax/jdo/pc/*.java</exclude>
+            </excludes>
+        </unitTest>
+        <!-- J A R  R E S O U R C E S -->
+        <!-- Resources that are packaged up inside the JAR file -->
+        <resources>
+            <resource>
+                <directory>${basedir}/src/java</directory>
+                <includes>
+                    <include>javax/jdo/*.properties</include>
+                </includes>
+            </resource>
+            <resource>
+                <directory>${basedir}/src/dtd</directory>
+                <includes>
+                    <include>javax/jdo/*.dtd</include>
+                </includes>
+            </resource>
+        </resources>
+    </build>
+</project>
+

Added: incubator/jdo/trunk/api20/xdocs/index.xml
URL: 
http://svn.apache.org/viewcvs/incubator/jdo/trunk/api20/xdocs/index.xml?view=auto&rev=158482
==============================================================================
--- incubator/jdo/trunk/api20/xdocs/index.xml (added)
+++ incubator/jdo/trunk/api20/xdocs/index.xml Mon Mar 21 08:52:10 2005
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Copyright 2005 The Apache Software Foundation
+
+    Licensed 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.
+-->
+
+<document>
+  <properties> <title>JDO API</title> </properties>
+
+  <body>
+    <section name="JDO API">
+      <p>The Java Data Objects (JDO) API is a standard interface-based 
+Java model abstraction of persistence, developed as 
+<a href="http://www.jcp.org/en/jsr/detail?id=243";>Java Specification 
+Request 243</a> under the auspices of the <a href="http://www.jcp.org";>
+Java Community Process</a>.
+      </p>
+      <p>
+This project implements the public interfaces, helper classes and exceptions 
+as specified in the JDO 2.0 specification. They are indented to be shared by 
all 
+JDO implementations. 
+      </p>
+    </section>
+
+  </body>
+</document>

Added: incubator/jdo/trunk/api20/xdocs/navigation.xml
URL: 
http://svn.apache.org/viewcvs/incubator/jdo/trunk/api20/xdocs/navigation.xml?view=auto&rev=158482
==============================================================================
--- incubator/jdo/trunk/api20/xdocs/navigation.xml (added)
+++ incubator/jdo/trunk/api20/xdocs/navigation.xml Mon Mar 21 08:52:10 2005
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    Copyright 2005 The Apache Software Foundation
+
+    Licensed 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="JDO API">
+
+  <title>JDO API</title>
+
+  <body>
+    <links>
+      <item name="Apache" href="http://www.apache.org"/>
+      <item name="JDO Wiki" href="http://wiki.apache.org/jdo"/>
+    </links>
+
+    <menu name="JDO Links">
+      <item name="JDO Wiki" href="http://wiki.apache.org/jdo"/>
+    </menu>
+    <menu name="JCP Links">
+      <item name="JDO 1.0 JSR-12" 
href="http://www.jcp.org/en/jsr/detail?id=12"/>
+      <item name="JDO 2.0 JSR-243" 
href="http://www.jcp.org/en/jsr/detail?id=243"/>
+    </menu>
+
+    <footer><div>Java, J2EE, and JCP are trademarks or registered trademarks of
+      Sun Microsystems, Inc. in the United States and other 
countries.</div></footer>
+  </body>
+</project>


Reply via email to