You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by ju...@apache.org on 2007/04/16 07:42:30 UTC

svn commit: r529137 - in /jackrabbit/trunk: jackrabbit-classloader/NOTICE.txt jackrabbit-classloader/README.txt jackrabbit-classloader/pom.xml pom.xml

Author: jukka
Date: Sun Apr 15 22:42:28 2007
New Revision: 529137

URL: http://svn.apache.org/viewvc?view=rev&rev=529137
Log:
classloader: Integrated in the main build

Added:
    jackrabbit/trunk/jackrabbit-classloader/README.txt   (with props)
Modified:
    jackrabbit/trunk/jackrabbit-classloader/NOTICE.txt
    jackrabbit/trunk/jackrabbit-classloader/pom.xml
    jackrabbit/trunk/pom.xml

Modified: jackrabbit/trunk/jackrabbit-classloader/NOTICE.txt
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-classloader/NOTICE.txt?view=diff&rev=529137&r1=529136&r2=529137
==============================================================================
--- jackrabbit/trunk/jackrabbit-classloader/NOTICE.txt (original)
+++ jackrabbit/trunk/jackrabbit-classloader/NOTICE.txt Sun Apr 15 22:42:28 2007
@@ -1,5 +1,5 @@
 Apache Jackrabbit
-Copyright 2006 The Apache Software Foundation
+Copyright 2007 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).

Added: jackrabbit/trunk/jackrabbit-classloader/README.txt
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-classloader/README.txt?view=auto&rev=529137
==============================================================================
--- jackrabbit/trunk/jackrabbit-classloader/README.txt (added)
+++ jackrabbit/trunk/jackrabbit-classloader/README.txt Sun Apr 15 22:42:28 2007
@@ -0,0 +1,61 @@
+============================================
+Welcome to Jackrabbit Repository Classloader
+============================================
+
+The Jackrabbit Repository Classloader component provides support for
+loading Java classes from content repositories that implement the
+Content Repository for Java Technology API (JCR). The component is
+mostly independent of the underlying JCR implementation.
+
+See the Apache Jackrabbit web site (http://jackrabbit.apache.org/)
+for documentation and other information. You are welcome to join the
+Jackrabbit mailing lists (http://jackrabbit.apache.org/mail-lists.html)
+to discuss this compoment and to use the Jackrabbit issue tracker
+(http://issues.apache.org/jira/browse/JCR) to report issues or request
+new features.
+
+Apache Jackrabbit is a project of the Apache Software Foundation
+(http://www.apache.org).
+
+
+License (see also LICENSE.txt)
+==============================
+
+Collective work: Copyright 2007 The Apache Software Foundation.
+
+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.
+
+
+Getting Started
+===============
+
+This compoment uses a Maven 2 (http://maven.apache.org/) build
+environment. If you have Maven 2 installed, you can compile and
+package the jacrabbit-classloader jar using the following command:
+
+    mvn package
+
+See the Maven 2 documentation for other build features.
+
+The latest source code for this compoment is available in the
+Subversion (http://subversion.tigris.org/) source repository of
+the Apache Software Foundation. If you have Subversion installed,
+you can checkout the latest source using the following command:
+
+    svn checkout \
+      http://svn.apache.org/repos/asf/jackrabbit/trunk/jackrabbit-classloader
+
+See the Subversion documentation for other source control features.

Propchange: jackrabbit/trunk/jackrabbit-classloader/README.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: jackrabbit/trunk/jackrabbit-classloader/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-classloader/pom.xml?view=diff&rev=529137&r1=529136&r2=529137
==============================================================================
--- jackrabbit/trunk/jackrabbit-classloader/pom.xml (original)
+++ jackrabbit/trunk/jackrabbit-classloader/pom.xml Sun Apr 15 22:42:28 2007
@@ -26,38 +26,18 @@
   <!-- ====================================================================== -->
   <!-- P R O J E C T  D E S C R I P T I O N                                   -->
   <!-- ====================================================================== -->
-  <groupId>org.apache.jackrabbit</groupId>
+  <parent>
+    <groupId>org.apache.jackrabbit</groupId>
+    <artifactId>jackrabbit</artifactId>
+    <version>1.3-SNAPSHOT</version>
+    <relativePath>..</relativePath>
+  </parent>
   <artifactId>jackrabbit-classloader</artifactId>
   <name>Jackrabbit Repository Classloader</name>
-  <version>1.2-SNAPSHOT</version>
-  <description>
-    Classloader is an independent subproject of the Jackrabbit project.
-    It provides support for loading classes from from Java Content Repository
-    for Java Technology API (JCR) implementations.
-    Although implemented as a contribution to the Jackrabbit project,
-    the Jackrabbit Repository Classloader layer is independent of the underlying
-    JCR repository implementation, with a small exception regarding node type
-    creation.
-  </description>
+  <description>The Jackrabbit Repository Classloader component provides support for
+loading Java classes from content repositories that implement the Content Repository for Java Technology API (JCR). The component is mostly independent of the underlying JCR implementation.</description>
   <inceptionYear>2005</inceptionYear>
 
-  <developers>
-    <developer>
-      <name>Felix Meschberger</name>
-      <id>1</id>
-      <email>fmeschbe@apache.org</email>
-      <organization>Day Software</organization>
-      <timezone>+1</timezone>
-    </developer>
-  </developers>
-  <licenses>
-    <license>
-      <name>The Apache Software License, Version 2.0</name>
-      <url>/LICENSE.txt</url>
-      <distribution>repo</distribution>
-    </license>
-  </licenses>
-
   <!-- ====================================================================== -->
   <!-- D E P E N D E N C I E S                                                -->
   <!-- ====================================================================== -->
@@ -65,40 +45,38 @@
     <dependency>
       <groupId>javax.jcr</groupId>
       <artifactId>jcr</artifactId>
-      <version>1.0</version>
       <scope>provided</scope>
     </dependency>
 
     <dependency>
       <groupId>org.apache.jackrabbit</groupId>
       <artifactId>jackrabbit-api</artifactId>
-      <version>1.2.1</version>
     </dependency>
     <dependency>
       <groupId>org.apache.jackrabbit</groupId>
       <artifactId>jackrabbit-jcr-commons</artifactId>
-      <version>1.2.1</version>
     </dependency>
 
     <!-- Logging -->
     <dependency>
       <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-simple</artifactId>
-      <version>1.0.1</version>
-      <scope>provided</scope>
+      <artifactId>slf4j-api</artifactId>
     </dependency>
 
     <!-- Unit Testing -->
     <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
-      <version>3.8.1</version>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.jackrabbit</groupId>
       <artifactId>jackrabbit-core</artifactId>
-      <version>1.2.1</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
       <scope>test</scope>
     </dependency>
   </dependencies>
@@ -107,19 +85,6 @@
   <!-- B U I L D                                                              -->
   <!-- ====================================================================== -->
   <build>
-    <sourceDirectory>src/main/java</sourceDirectory>
-    <resources>
-      <resource>
-        <directory>src/main/resources</directory>
-      </resource>
-    </resources>
-
-    <testSourceDirectory>src/test/java</testSourceDirectory>
-    <testResources>
-      <testResource>
-        <directory>src/test/resources</directory>
-      </testResource>
-    </testResources>
     <plugins>
       <plugin>
         <artifactId>maven-surefire-plugin</artifactId>
@@ -146,11 +111,5 @@
       </plugin>
     </plugins>
   </build>
-
-  <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/jackrabbit/trunk/contrib/classloader</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/jackrabbit/trunk/contrib/classloader</developerConnection>
-    <url>http://svn.apache.org/viewvc/jackrabbit/trunk/contrib/classloader</url>
-  </scm>
 
 </project>

Modified: jackrabbit/trunk/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/pom.xml?view=diff&rev=529137&r1=529136&r2=529137
==============================================================================
--- jackrabbit/trunk/pom.xml (original)
+++ jackrabbit/trunk/pom.xml Sun Apr 15 22:42:28 2007
@@ -56,6 +56,7 @@
     <module>jackrabbit-jcr-rmi</module>
     <module>jackrabbit-webdav</module>
     <module>jackrabbit-jcr-server</module>
+    <module>jackrabbit-classloader</module>
     <module>jackrabbit-webapp</module>
     <module>jackrabbit-jca</module>
   </modules>