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/01/20 12:20:38 UTC

svn commit: r498101 - in /jackrabbit/trunk/contrib/jcr-ext: ./ NOTICE.txt pom.xml project.properties project.xml src/java/ src/main/ src/main/java/ src/test/java/

Author: jukka
Date: Sat Jan 20 03:20:37 2007
New Revision: 498101

URL: http://svn.apache.org/viewvc?view=rev&rev=498101
Log:
jcr-ext: Switch to Maven 2

Added:
    jackrabbit/trunk/contrib/jcr-ext/pom.xml
    jackrabbit/trunk/contrib/jcr-ext/src/main/
    jackrabbit/trunk/contrib/jcr-ext/src/main/java/
      - copied from r498097, jackrabbit/trunk/contrib/jcr-ext/src/java/
    jackrabbit/trunk/contrib/jcr-ext/src/test/java/
Removed:
    jackrabbit/trunk/contrib/jcr-ext/project.properties
    jackrabbit/trunk/contrib/jcr-ext/project.xml
    jackrabbit/trunk/contrib/jcr-ext/src/java/
Modified:
    jackrabbit/trunk/contrib/jcr-ext/   (props changed)
    jackrabbit/trunk/contrib/jcr-ext/NOTICE.txt

Propchange: jackrabbit/trunk/contrib/jcr-ext/
------------------------------------------------------------------------------
--- svn:ignore (original)
+++ svn:ignore Sat Jan 20 03:20:37 2007
@@ -1 +1,5 @@
 target
+.project
+.classpath
+.settings
+.checkstyle

Modified: jackrabbit/trunk/contrib/jcr-ext/NOTICE.txt
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/contrib/jcr-ext/NOTICE.txt?view=diff&rev=498101&r1=498100&r2=498101
==============================================================================
--- jackrabbit/trunk/contrib/jcr-ext/NOTICE.txt (original)
+++ jackrabbit/trunk/contrib/jcr-ext/NOTICE.txt Sat Jan 20 03:20:37 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/contrib/jcr-ext/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/contrib/jcr-ext/pom.xml?view=auto&rev=498101
==============================================================================
--- jackrabbit/trunk/contrib/jcr-ext/pom.xml (added)
+++ jackrabbit/trunk/contrib/jcr-ext/pom.xml Sat Jan 20 03:20:37 2007
@@ -0,0 +1,83 @@
+<?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 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>
+
+<!-- ====================================================================== -->
+<!-- P R O J E C T  D E S C R I P T I O N                                   -->
+<!-- ====================================================================== -->
+  <parent>
+    <groupId>org.apache.jackrabbit</groupId>
+    <artifactId>jackrabbit</artifactId>
+    <version>1.3-SNAPSHOT</version>
+    <relativePath>../..</relativePath>
+  </parent>
+  <artifactId>jackrabbit-jcr-ext</artifactId>
+  <name>Jackrabbit JCR Extras</name>
+  <description>Utilities for JCR implementations</description>
+
+  <scm>
+    <connection>
+      scm:svn:http://svn.apache.org/repos/asf/jackrabbit/trunk/contrib/jcr-ext
+    </connection>
+    <developerConnection>
+      scm:svn:https://svn.apache.org/repos/asf/jackrabbit/trunk/contrib/jcr-ext
+    </developerConnection>
+    <url>http://svn.apache.org/viewvc/jackrabbit/trunk/contrib/jcr-ext</url>
+  </scm>
+
+  <dependencies>
+    <dependency>
+      <groupId>javax.jcr</groupId>
+      <artifactId>jcr</artifactId>
+      <version>1.0</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.jackrabbit</groupId>
+      <artifactId>jackrabbit-jcr-commons</artifactId>
+      <version>${pom.version}</version>
+    </dependency>
+    <dependency>
+      <groupId>log4j</groupId>
+      <artifactId>log4j</artifactId>
+      <version>1.2.8</version>
+    </dependency>
+    <dependency>
+      <groupId>xerces</groupId>
+      <artifactId>xercesImpl</artifactId>
+      <version>2.6.2</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+      <version>1.3</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+
+</project>