You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jackrabbit.apache.org by "Darren Hartford (JIRA)" <ji...@apache.org> on 2006/09/13 18:13:29 UTC

[jira] Created: (JCR-571) jackrabbit JCA pom.xml

jackrabbit JCA pom.xml
----------------------

                 Key: JCR-571
                 URL: http://issues.apache.org/jira/browse/JCR-571
             Project: Jackrabbit
          Issue Type: Improvement
    Affects Versions: 1.1
         Environment: maven 2
            Reporter: Darren Hartford


do not see a way to add attachments, so here it is below inline.
Note, need to move the src/rar/META-INF/ra.xml to src/main/rar/META-INF/ra.xml (which is the default location with maven rar packager).
==========================================
<?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                                   -->
<!-- ====================================================================== -->
  <groupId>org.apache.jackrabbit</groupId>
  <artifactId>jackrabbit-jca</artifactId>
  <packaging>rar</packaging>
  <name>Jackrabbit JCA</name>
  <version>1.1-SNAPSHOT</version>
  <!--
    Keep the description on a single line. Otherwise Maven might generate
    a corrupted MANIFEST.MF (see http://jira.codehaus.org/browse/MJAR-4)
   -->
  <description>
A resource adapter for Jackrabbit as specified by JCA 1.0.
</description>
  <url>http://jackrabbit.apache.org/</url>
  <prerequisites>
    <maven>2.0</maven>
  </prerequisites>
  <issueManagement>
    <system>Jira</system>
    <url>http://issues.apache.org/jira/browse/JCR</url>
  </issueManagement>
  <inceptionYear>2005</inceptionYear>




<!-- ====================================================================== -->
<!-- M A I L I N G   L I S T S                                              -->
<!-- ====================================================================== -->
  <mailingLists>
    <mailingList>
      <name>Jackrabbit Announce List</name>
      <subscribe>announce-subscribe@jackrabbit.apache.org</subscribe>
      <unsubscribe>announce-unsubscribe@jackrabbit.apache.org</unsubscribe>
      <archive>http://mail-archives.apache.org/mod_mbox/jackrabbit-announce/</archive>
    </mailingList>
    <mailingList>
      <name>Jackrabbit Users List</name>
      <subscribe>users-subscribe@jackrabbit.apache.org</subscribe>
      <unsubscribe>users-unsubscribe@jackrabbit.apache.org</unsubscribe>
      <post>users at jackrabbit.apache.org</post>
      <archive>http://mail-archives.apache.org/mod_mbox/jackrabbit-users/</archive>
      <otherArchives>
        <otherArchive>
          http://dir.gmane.org/gmane.comp.apache.jackrabbit.user
        </otherArchive>
        <otherArchive>
          http://www.mail-archive.com/users@jackrabbit.apache.org/
        </otherArchive>
      </otherArchives>
    </mailingList>
    <mailingList>
      <name>Jackrabbit Development List</name>
      <subscribe>dev-subscribe@jackrabbit.apache.org</subscribe>
      <unsubscribe>dev-unsubscribe@jackrabbit.apache.org</unsubscribe>
      <post>dev at jackrabbit.apache.org</post>
      <archive>http://mail-archives.apache.org/mod_mbox/jackrabbit-dev/</archive>
      <otherArchives>
        <otherArchive>
          http://dir.gmane.org/gmane.comp.apache.jackrabbit.devel
        </otherArchive>
        <otherArchive>
          http://www.mail-archive.com/dev@jackrabbit.apache.org/
        </otherArchive>
        <otherArchive>
          http://www.mail-archive.com/jackrabbit-dev@incubator.apache.org/
        </otherArchive>
      </otherArchives>
    </mailingList>
    <mailingList>
      <name>Jackrabbit Source Control List</name>
      <subscribe>commits-subscribe@jackrabbit.apache.org</subscribe>
      <unsubscribe>commits-unsubscribe@jackrabbit.apache.org</unsubscribe>
      <archive>http://mail-archives.apache.org/mod_mbox/jackrabbit-commits/</archive>
    </mailingList>
  </mailingLists>


  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <connection>scm:svn:http://svn.apache.org/repos/asf/jackrabbit/trunk/jca</connection>
    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/jackrabbit/trunk/jca</developerConnection>
    <url>http://svn.apache.org/viewvc/jackrabbit/trunk/jca</url>
  </scm>
  <organization>
    <name>The Apache Software Foundation</name>
    <url>http://www.apache.org/</url>
  </organization>
  <build>
    <resources>
      <resource>
        <directory>src/java</directory>
      </resource>
    </resources>
<!-- 
   <testResources>
      <testResource>
        <directory>applications/test</directory>
        <includes>
          <include>*.properties</include>
          <include>*.xml</include>
        </includes>
      </testResource>
      <testResource>
        <directory>src/test/java</directory>
        <includes>
          <include>**/*.xml</include>
          <include>**/*.txt</include>
        </includes>
      </testResource>
    </testResources>
-->
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <target>1.4</target>
          <source>1.4</source>
        </configuration>
      </plugin>
<!-- 
      <plugin>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <excludes>
            <exclude>**/init/*</exclude>
          </excludes>
          <includes>
            <include>**/*TestAll.java</include>
          </includes>
          <forkMode>once</forkMode>
          <argLine>-Xmx128m -enableassertions</argLine>
          <systemProperties>
            <property>
              <name>derby.system.durability</name>
              <value>test</value>
            </property>
            <property>
              <name>known.issues</name>
              <value>org.apache.jackrabbit.core.xml.DocumentViewTest#testMultiValue org.apache.jackrabbit.value.BinaryValueTest#testBinaryValueEquals</value>
            </property>
          </systemProperties>          
        </configuration>
      </plugin>
-->
    </plugins>
  </build>

  <dependencies>
  
  	<dependency>
	    <groupId>org.apache.jackrabbit</groupId>
	    <artifactId>jackrabbit-core</artifactId>
	    <version>1.1-SNAPSHOT</version>
	</dependency>
    <dependency>
      <groupId>concurrent</groupId>
      <artifactId>concurrent</artifactId>
      <version>1.3.4</version>
    </dependency>
    <dependency>
      <groupId>commons-collections</groupId>
      <artifactId>commons-collections</artifactId>
      <version>3.1</version>
    </dependency>
    <dependency>
      <groupId>org.apache.geronimo.specs</groupId>
      <artifactId>geronimo-jta_1.0.1B_spec</artifactId>
      <version>1.0.1</version>
    </dependency>
    <dependency>
      <groupId>javax.jcr</groupId>
      <artifactId>jcr</artifactId>
      <version>1.0</version>
    </dependency>
    <dependency>
      <groupId>log4j</groupId>
      <artifactId>log4j</artifactId>
      <version>1.2.8</version>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-log4j12</artifactId>
      <version>1.0</version>
    </dependency>
    <dependency>
      <groupId>lucene</groupId>
      <artifactId>lucene</artifactId>
      <version>1.4.3</version>
    </dependency>
    <dependency>
      <groupId>org.apache.derby</groupId>
      <artifactId>derby</artifactId>
      <version>10.1.1.0</version>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <distributionManagement>
    <repository>
      <id>apache.releases</id>
      <name>Apache Repository for PMC approved releases</name>
      <url>scp://people.apache.org/www/www.apache.org/dist/maven-repository/</url>
    </repository>
    <snapshotRepository>
      <id>apache.snapshots</id>
      <name>Apache Development Repository</name>
      <url>scp://people.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>
    </snapshotRepository>
    <site>
      <id>website</id>
      <url>scp://people.apache.org/www/jackrabbit.apache.org/</url>
    </site>
  </distributionManagement>

</project>

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (JCR-571) jackrabbit JCA pom.xml

Posted by "Darren Hartford (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/JCR-571?page=all ]

Darren Hartford updated JCR-571:
--------------------------------

    Attachment: pom.xml

ahh...attach file on sidebar. Here is the JCA pom.xml

> jackrabbit JCA pom.xml
> ----------------------
>
>                 Key: JCR-571
>                 URL: http://issues.apache.org/jira/browse/JCR-571
>             Project: Jackrabbit
>          Issue Type: Improvement
>    Affects Versions: 1.1
>         Environment: maven 2
>            Reporter: Darren Hartford
>         Attachments: pom.xml
>
>
> do not see a way to add attachments, so here it is below inline.
> Note, need to move the src/rar/META-INF/ra.xml to src/main/rar/META-INF/ra.xml (which is the default location with maven rar packager).
> ==========================================
> <?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                                   -->
> <!-- ====================================================================== -->
>   <groupId>org.apache.jackrabbit</groupId>
>   <artifactId>jackrabbit-jca</artifactId>
>   <packaging>rar</packaging>
>   <name>Jackrabbit JCA</name>
>   <version>1.1-SNAPSHOT</version>
>   <!--
>     Keep the description on a single line. Otherwise Maven might generate
>     a corrupted MANIFEST.MF (see http://jira.codehaus.org/browse/MJAR-4)
>    -->
>   <description>
> A resource adapter for Jackrabbit as specified by JCA 1.0.
> </description>
>   <url>http://jackrabbit.apache.org/</url>
>   <prerequisites>
>     <maven>2.0</maven>
>   </prerequisites>
>   <issueManagement>
>     <system>Jira</system>
>     <url>http://issues.apache.org/jira/browse/JCR</url>
>   </issueManagement>
>   <inceptionYear>2005</inceptionYear>
> <!-- ====================================================================== -->
> <!-- M A I L I N G   L I S T S                                              -->
> <!-- ====================================================================== -->
>   <mailingLists>
>     <mailingList>
>       <name>Jackrabbit Announce List</name>
>       <subscribe>announce-subscribe@jackrabbit.apache.org</subscribe>
>       <unsubscribe>announce-unsubscribe@jackrabbit.apache.org</unsubscribe>
>       <archive>http://mail-archives.apache.org/mod_mbox/jackrabbit-announce/</archive>
>     </mailingList>
>     <mailingList>
>       <name>Jackrabbit Users List</name>
>       <subscribe>users-subscribe@jackrabbit.apache.org</subscribe>
>       <unsubscribe>users-unsubscribe@jackrabbit.apache.org</unsubscribe>
>       <post>users at jackrabbit.apache.org</post>
>       <archive>http://mail-archives.apache.org/mod_mbox/jackrabbit-users/</archive>
>       <otherArchives>
>         <otherArchive>
>           http://dir.gmane.org/gmane.comp.apache.jackrabbit.user
>         </otherArchive>
>         <otherArchive>
>           http://www.mail-archive.com/users@jackrabbit.apache.org/
>         </otherArchive>
>       </otherArchives>
>     </mailingList>
>     <mailingList>
>       <name>Jackrabbit Development List</name>
>       <subscribe>dev-subscribe@jackrabbit.apache.org</subscribe>
>       <unsubscribe>dev-unsubscribe@jackrabbit.apache.org</unsubscribe>
>       <post>dev at jackrabbit.apache.org</post>
>       <archive>http://mail-archives.apache.org/mod_mbox/jackrabbit-dev/</archive>
>       <otherArchives>
>         <otherArchive>
>           http://dir.gmane.org/gmane.comp.apache.jackrabbit.devel
>         </otherArchive>
>         <otherArchive>
>           http://www.mail-archive.com/dev@jackrabbit.apache.org/
>         </otherArchive>
>         <otherArchive>
>           http://www.mail-archive.com/jackrabbit-dev@incubator.apache.org/
>         </otherArchive>
>       </otherArchives>
>     </mailingList>
>     <mailingList>
>       <name>Jackrabbit Source Control List</name>
>       <subscribe>commits-subscribe@jackrabbit.apache.org</subscribe>
>       <unsubscribe>commits-unsubscribe@jackrabbit.apache.org</unsubscribe>
>       <archive>http://mail-archives.apache.org/mod_mbox/jackrabbit-commits/</archive>
>     </mailingList>
>   </mailingLists>
>   <licenses>
>     <license>
>       <name>The Apache Software License, Version 2.0</name>
>       <url>http://www.apache.org/licenses/LICENSE-2.0</url>
>       <distribution>repo</distribution>
>     </license>
>   </licenses>
>   <scm>
>     <connection>scm:svn:http://svn.apache.org/repos/asf/jackrabbit/trunk/jca</connection>
>     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/jackrabbit/trunk/jca</developerConnection>
>     <url>http://svn.apache.org/viewvc/jackrabbit/trunk/jca</url>
>   </scm>
>   <organization>
>     <name>The Apache Software Foundation</name>
>     <url>http://www.apache.org/</url>
>   </organization>
>   <build>
>     <resources>
>       <resource>
>         <directory>src/java</directory>
>       </resource>
>     </resources>
> <!-- 
>    <testResources>
>       <testResource>
>         <directory>applications/test</directory>
>         <includes>
>           <include>*.properties</include>
>           <include>*.xml</include>
>         </includes>
>       </testResource>
>       <testResource>
>         <directory>src/test/java</directory>
>         <includes>
>           <include>**/*.xml</include>
>           <include>**/*.txt</include>
>         </includes>
>       </testResource>
>     </testResources>
> -->
>     <plugins>
>       <plugin>
>         <artifactId>maven-compiler-plugin</artifactId>
>         <configuration>
>           <target>1.4</target>
>           <source>1.4</source>
>         </configuration>
>       </plugin>
> <!-- 
>       <plugin>
>         <artifactId>maven-surefire-plugin</artifactId>
>         <configuration>
>           <excludes>
>             <exclude>**/init/*</exclude>
>           </excludes>
>           <includes>
>             <include>**/*TestAll.java</include>
>           </includes>
>           <forkMode>once</forkMode>
>           <argLine>-Xmx128m -enableassertions</argLine>
>           <systemProperties>
>             <property>
>               <name>derby.system.durability</name>
>               <value>test</value>
>             </property>
>             <property>
>               <name>known.issues</name>
>               <value>org.apache.jackrabbit.core.xml.DocumentViewTest#testMultiValue org.apache.jackrabbit.value.BinaryValueTest#testBinaryValueEquals</value>
>             </property>
>           </systemProperties>          
>         </configuration>
>       </plugin>
> -->
>     </plugins>
>   </build>
>   <dependencies>
>   
>   	<dependency>
> 	    <groupId>org.apache.jackrabbit</groupId>
> 	    <artifactId>jackrabbit-core</artifactId>
> 	    <version>1.1-SNAPSHOT</version>
> 	</dependency>
>     <dependency>
>       <groupId>concurrent</groupId>
>       <artifactId>concurrent</artifactId>
>       <version>1.3.4</version>
>     </dependency>
>     <dependency>
>       <groupId>commons-collections</groupId>
>       <artifactId>commons-collections</artifactId>
>       <version>3.1</version>
>     </dependency>
>     <dependency>
>       <groupId>org.apache.geronimo.specs</groupId>
>       <artifactId>geronimo-jta_1.0.1B_spec</artifactId>
>       <version>1.0.1</version>
>     </dependency>
>     <dependency>
>       <groupId>javax.jcr</groupId>
>       <artifactId>jcr</artifactId>
>       <version>1.0</version>
>     </dependency>
>     <dependency>
>       <groupId>log4j</groupId>
>       <artifactId>log4j</artifactId>
>       <version>1.2.8</version>
>     </dependency>
>     <dependency>
>       <groupId>org.slf4j</groupId>
>       <artifactId>slf4j-log4j12</artifactId>
>       <version>1.0</version>
>     </dependency>
>     <dependency>
>       <groupId>lucene</groupId>
>       <artifactId>lucene</artifactId>
>       <version>1.4.3</version>
>     </dependency>
>     <dependency>
>       <groupId>org.apache.derby</groupId>
>       <artifactId>derby</artifactId>
>       <version>10.1.1.0</version>
>       <optional>true</optional>
>     </dependency>
>     <dependency>
>       <groupId>junit</groupId>
>       <artifactId>junit</artifactId>
>       <version>3.8.1</version>
>       <scope>test</scope>
>     </dependency>
>   </dependencies>
>   <distributionManagement>
>     <repository>
>       <id>apache.releases</id>
>       <name>Apache Repository for PMC approved releases</name>
>       <url>scp://people.apache.org/www/www.apache.org/dist/maven-repository/</url>
>     </repository>
>     <snapshotRepository>
>       <id>apache.snapshots</id>
>       <name>Apache Development Repository</name>
>       <url>scp://people.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>
>     </snapshotRepository>
>     <site>
>       <id>website</id>
>       <url>scp://people.apache.org/www/jackrabbit.apache.org/</url>
>     </site>
>   </distributionManagement>
> </project>

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Resolved: (JCR-571) jackrabbit JCA pom.xml

Posted by "Edgar Poce (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/JCR-571?page=all ]

Edgar Poce resolved JCR-571.
----------------------------

    Resolution: Fixed

thanks Darren

> jackrabbit JCA pom.xml
> ----------------------
>
>                 Key: JCR-571
>                 URL: http://issues.apache.org/jira/browse/JCR-571
>             Project: Jackrabbit
>          Issue Type: Improvement
>    Affects Versions: 1.1
>         Environment: maven 2
>            Reporter: Darren Hartford
>         Attachments: pom.xml
>
>
> do not see a way to add attachments, so here it is below inline.
> Note, need to move the src/rar/META-INF/ra.xml to src/main/rar/META-INF/ra.xml (which is the default location with maven rar packager).
> ==========================================
> <?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                                   -->
> <!-- ====================================================================== -->
>   <groupId>org.apache.jackrabbit</groupId>
>   <artifactId>jackrabbit-jca</artifactId>
>   <packaging>rar</packaging>
>   <name>Jackrabbit JCA</name>
>   <version>1.1-SNAPSHOT</version>
>   <!--
>     Keep the description on a single line. Otherwise Maven might generate
>     a corrupted MANIFEST.MF (see http://jira.codehaus.org/browse/MJAR-4)
>    -->
>   <description>
> A resource adapter for Jackrabbit as specified by JCA 1.0.
> </description>
>   <url>http://jackrabbit.apache.org/</url>
>   <prerequisites>
>     <maven>2.0</maven>
>   </prerequisites>
>   <issueManagement>
>     <system>Jira</system>
>     <url>http://issues.apache.org/jira/browse/JCR</url>
>   </issueManagement>
>   <inceptionYear>2005</inceptionYear>
> <!-- ====================================================================== -->
> <!-- M A I L I N G   L I S T S                                              -->
> <!-- ====================================================================== -->
>   <mailingLists>
>     <mailingList>
>       <name>Jackrabbit Announce List</name>
>       <subscribe>announce-subscribe@jackrabbit.apache.org</subscribe>
>       <unsubscribe>announce-unsubscribe@jackrabbit.apache.org</unsubscribe>
>       <archive>http://mail-archives.apache.org/mod_mbox/jackrabbit-announce/</archive>
>     </mailingList>
>     <mailingList>
>       <name>Jackrabbit Users List</name>
>       <subscribe>users-subscribe@jackrabbit.apache.org</subscribe>
>       <unsubscribe>users-unsubscribe@jackrabbit.apache.org</unsubscribe>
>       <post>users at jackrabbit.apache.org</post>
>       <archive>http://mail-archives.apache.org/mod_mbox/jackrabbit-users/</archive>
>       <otherArchives>
>         <otherArchive>
>           http://dir.gmane.org/gmane.comp.apache.jackrabbit.user
>         </otherArchive>
>         <otherArchive>
>           http://www.mail-archive.com/users@jackrabbit.apache.org/
>         </otherArchive>
>       </otherArchives>
>     </mailingList>
>     <mailingList>
>       <name>Jackrabbit Development List</name>
>       <subscribe>dev-subscribe@jackrabbit.apache.org</subscribe>
>       <unsubscribe>dev-unsubscribe@jackrabbit.apache.org</unsubscribe>
>       <post>dev at jackrabbit.apache.org</post>
>       <archive>http://mail-archives.apache.org/mod_mbox/jackrabbit-dev/</archive>
>       <otherArchives>
>         <otherArchive>
>           http://dir.gmane.org/gmane.comp.apache.jackrabbit.devel
>         </otherArchive>
>         <otherArchive>
>           http://www.mail-archive.com/dev@jackrabbit.apache.org/
>         </otherArchive>
>         <otherArchive>
>           http://www.mail-archive.com/jackrabbit-dev@incubator.apache.org/
>         </otherArchive>
>       </otherArchives>
>     </mailingList>
>     <mailingList>
>       <name>Jackrabbit Source Control List</name>
>       <subscribe>commits-subscribe@jackrabbit.apache.org</subscribe>
>       <unsubscribe>commits-unsubscribe@jackrabbit.apache.org</unsubscribe>
>       <archive>http://mail-archives.apache.org/mod_mbox/jackrabbit-commits/</archive>
>     </mailingList>
>   </mailingLists>
>   <licenses>
>     <license>
>       <name>The Apache Software License, Version 2.0</name>
>       <url>http://www.apache.org/licenses/LICENSE-2.0</url>
>       <distribution>repo</distribution>
>     </license>
>   </licenses>
>   <scm>
>     <connection>scm:svn:http://svn.apache.org/repos/asf/jackrabbit/trunk/jca</connection>
>     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/jackrabbit/trunk/jca</developerConnection>
>     <url>http://svn.apache.org/viewvc/jackrabbit/trunk/jca</url>
>   </scm>
>   <organization>
>     <name>The Apache Software Foundation</name>
>     <url>http://www.apache.org/</url>
>   </organization>
>   <build>
>     <resources>
>       <resource>
>         <directory>src/java</directory>
>       </resource>
>     </resources>
> <!-- 
>    <testResources>
>       <testResource>
>         <directory>applications/test</directory>
>         <includes>
>           <include>*.properties</include>
>           <include>*.xml</include>
>         </includes>
>       </testResource>
>       <testResource>
>         <directory>src/test/java</directory>
>         <includes>
>           <include>**/*.xml</include>
>           <include>**/*.txt</include>
>         </includes>
>       </testResource>
>     </testResources>
> -->
>     <plugins>
>       <plugin>
>         <artifactId>maven-compiler-plugin</artifactId>
>         <configuration>
>           <target>1.4</target>
>           <source>1.4</source>
>         </configuration>
>       </plugin>
> <!-- 
>       <plugin>
>         <artifactId>maven-surefire-plugin</artifactId>
>         <configuration>
>           <excludes>
>             <exclude>**/init/*</exclude>
>           </excludes>
>           <includes>
>             <include>**/*TestAll.java</include>
>           </includes>
>           <forkMode>once</forkMode>
>           <argLine>-Xmx128m -enableassertions</argLine>
>           <systemProperties>
>             <property>
>               <name>derby.system.durability</name>
>               <value>test</value>
>             </property>
>             <property>
>               <name>known.issues</name>
>               <value>org.apache.jackrabbit.core.xml.DocumentViewTest#testMultiValue org.apache.jackrabbit.value.BinaryValueTest#testBinaryValueEquals</value>
>             </property>
>           </systemProperties>          
>         </configuration>
>       </plugin>
> -->
>     </plugins>
>   </build>
>   <dependencies>
>   
>   	<dependency>
> 	    <groupId>org.apache.jackrabbit</groupId>
> 	    <artifactId>jackrabbit-core</artifactId>
> 	    <version>1.1-SNAPSHOT</version>
> 	</dependency>
>     <dependency>
>       <groupId>concurrent</groupId>
>       <artifactId>concurrent</artifactId>
>       <version>1.3.4</version>
>     </dependency>
>     <dependency>
>       <groupId>commons-collections</groupId>
>       <artifactId>commons-collections</artifactId>
>       <version>3.1</version>
>     </dependency>
>     <dependency>
>       <groupId>org.apache.geronimo.specs</groupId>
>       <artifactId>geronimo-jta_1.0.1B_spec</artifactId>
>       <version>1.0.1</version>
>     </dependency>
>     <dependency>
>       <groupId>javax.jcr</groupId>
>       <artifactId>jcr</artifactId>
>       <version>1.0</version>
>     </dependency>
>     <dependency>
>       <groupId>log4j</groupId>
>       <artifactId>log4j</artifactId>
>       <version>1.2.8</version>
>     </dependency>
>     <dependency>
>       <groupId>org.slf4j</groupId>
>       <artifactId>slf4j-log4j12</artifactId>
>       <version>1.0</version>
>     </dependency>
>     <dependency>
>       <groupId>lucene</groupId>
>       <artifactId>lucene</artifactId>
>       <version>1.4.3</version>
>     </dependency>
>     <dependency>
>       <groupId>org.apache.derby</groupId>
>       <artifactId>derby</artifactId>
>       <version>10.1.1.0</version>
>       <optional>true</optional>
>     </dependency>
>     <dependency>
>       <groupId>junit</groupId>
>       <artifactId>junit</artifactId>
>       <version>3.8.1</version>
>       <scope>test</scope>
>     </dependency>
>   </dependencies>
>   <distributionManagement>
>     <repository>
>       <id>apache.releases</id>
>       <name>Apache Repository for PMC approved releases</name>
>       <url>scp://people.apache.org/www/www.apache.org/dist/maven-repository/</url>
>     </repository>
>     <snapshotRepository>
>       <id>apache.snapshots</id>
>       <name>Apache Development Repository</name>
>       <url>scp://people.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>
>     </snapshotRepository>
>     <site>
>       <id>website</id>
>       <url>scp://people.apache.org/www/jackrabbit.apache.org/</url>
>     </site>
>   </distributionManagement>
> </project>

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Updated: (JCR-571) jackrabbit JCA pom.xml

Posted by "Edgar Poce (JIRA)" <ji...@apache.org>.
     [ http://issues.apache.org/jira/browse/JCR-571?page=all ]

Edgar Poce updated JCR-571:
---------------------------

    Component/s: jca

updating component

> jackrabbit JCA pom.xml
> ----------------------
>
>                 Key: JCR-571
>                 URL: http://issues.apache.org/jira/browse/JCR-571
>             Project: Jackrabbit
>          Issue Type: Improvement
>          Components: jca
>    Affects Versions: 1.1
>         Environment: maven 2
>            Reporter: Darren Hartford
>         Attachments: pom.xml
>
>
> do not see a way to add attachments, so here it is below inline.
> Note, need to move the src/rar/META-INF/ra.xml to src/main/rar/META-INF/ra.xml (which is the default location with maven rar packager).
> ==========================================
> <?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                                   -->
> <!-- ====================================================================== -->
>   <groupId>org.apache.jackrabbit</groupId>
>   <artifactId>jackrabbit-jca</artifactId>
>   <packaging>rar</packaging>
>   <name>Jackrabbit JCA</name>
>   <version>1.1-SNAPSHOT</version>
>   <!--
>     Keep the description on a single line. Otherwise Maven might generate
>     a corrupted MANIFEST.MF (see http://jira.codehaus.org/browse/MJAR-4)
>    -->
>   <description>
> A resource adapter for Jackrabbit as specified by JCA 1.0.
> </description>
>   <url>http://jackrabbit.apache.org/</url>
>   <prerequisites>
>     <maven>2.0</maven>
>   </prerequisites>
>   <issueManagement>
>     <system>Jira</system>
>     <url>http://issues.apache.org/jira/browse/JCR</url>
>   </issueManagement>
>   <inceptionYear>2005</inceptionYear>
> <!-- ====================================================================== -->
> <!-- M A I L I N G   L I S T S                                              -->
> <!-- ====================================================================== -->
>   <mailingLists>
>     <mailingList>
>       <name>Jackrabbit Announce List</name>
>       <subscribe>announce-subscribe@jackrabbit.apache.org</subscribe>
>       <unsubscribe>announce-unsubscribe@jackrabbit.apache.org</unsubscribe>
>       <archive>http://mail-archives.apache.org/mod_mbox/jackrabbit-announce/</archive>
>     </mailingList>
>     <mailingList>
>       <name>Jackrabbit Users List</name>
>       <subscribe>users-subscribe@jackrabbit.apache.org</subscribe>
>       <unsubscribe>users-unsubscribe@jackrabbit.apache.org</unsubscribe>
>       <post>users at jackrabbit.apache.org</post>
>       <archive>http://mail-archives.apache.org/mod_mbox/jackrabbit-users/</archive>
>       <otherArchives>
>         <otherArchive>
>           http://dir.gmane.org/gmane.comp.apache.jackrabbit.user
>         </otherArchive>
>         <otherArchive>
>           http://www.mail-archive.com/users@jackrabbit.apache.org/
>         </otherArchive>
>       </otherArchives>
>     </mailingList>
>     <mailingList>
>       <name>Jackrabbit Development List</name>
>       <subscribe>dev-subscribe@jackrabbit.apache.org</subscribe>
>       <unsubscribe>dev-unsubscribe@jackrabbit.apache.org</unsubscribe>
>       <post>dev at jackrabbit.apache.org</post>
>       <archive>http://mail-archives.apache.org/mod_mbox/jackrabbit-dev/</archive>
>       <otherArchives>
>         <otherArchive>
>           http://dir.gmane.org/gmane.comp.apache.jackrabbit.devel
>         </otherArchive>
>         <otherArchive>
>           http://www.mail-archive.com/dev@jackrabbit.apache.org/
>         </otherArchive>
>         <otherArchive>
>           http://www.mail-archive.com/jackrabbit-dev@incubator.apache.org/
>         </otherArchive>
>       </otherArchives>
>     </mailingList>
>     <mailingList>
>       <name>Jackrabbit Source Control List</name>
>       <subscribe>commits-subscribe@jackrabbit.apache.org</subscribe>
>       <unsubscribe>commits-unsubscribe@jackrabbit.apache.org</unsubscribe>
>       <archive>http://mail-archives.apache.org/mod_mbox/jackrabbit-commits/</archive>
>     </mailingList>
>   </mailingLists>
>   <licenses>
>     <license>
>       <name>The Apache Software License, Version 2.0</name>
>       <url>http://www.apache.org/licenses/LICENSE-2.0</url>
>       <distribution>repo</distribution>
>     </license>
>   </licenses>
>   <scm>
>     <connection>scm:svn:http://svn.apache.org/repos/asf/jackrabbit/trunk/jca</connection>
>     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/jackrabbit/trunk/jca</developerConnection>
>     <url>http://svn.apache.org/viewvc/jackrabbit/trunk/jca</url>
>   </scm>
>   <organization>
>     <name>The Apache Software Foundation</name>
>     <url>http://www.apache.org/</url>
>   </organization>
>   <build>
>     <resources>
>       <resource>
>         <directory>src/java</directory>
>       </resource>
>     </resources>
> <!-- 
>    <testResources>
>       <testResource>
>         <directory>applications/test</directory>
>         <includes>
>           <include>*.properties</include>
>           <include>*.xml</include>
>         </includes>
>       </testResource>
>       <testResource>
>         <directory>src/test/java</directory>
>         <includes>
>           <include>**/*.xml</include>
>           <include>**/*.txt</include>
>         </includes>
>       </testResource>
>     </testResources>
> -->
>     <plugins>
>       <plugin>
>         <artifactId>maven-compiler-plugin</artifactId>
>         <configuration>
>           <target>1.4</target>
>           <source>1.4</source>
>         </configuration>
>       </plugin>
> <!-- 
>       <plugin>
>         <artifactId>maven-surefire-plugin</artifactId>
>         <configuration>
>           <excludes>
>             <exclude>**/init/*</exclude>
>           </excludes>
>           <includes>
>             <include>**/*TestAll.java</include>
>           </includes>
>           <forkMode>once</forkMode>
>           <argLine>-Xmx128m -enableassertions</argLine>
>           <systemProperties>
>             <property>
>               <name>derby.system.durability</name>
>               <value>test</value>
>             </property>
>             <property>
>               <name>known.issues</name>
>               <value>org.apache.jackrabbit.core.xml.DocumentViewTest#testMultiValue org.apache.jackrabbit.value.BinaryValueTest#testBinaryValueEquals</value>
>             </property>
>           </systemProperties>          
>         </configuration>
>       </plugin>
> -->
>     </plugins>
>   </build>
>   <dependencies>
>   
>   	<dependency>
> 	    <groupId>org.apache.jackrabbit</groupId>
> 	    <artifactId>jackrabbit-core</artifactId>
> 	    <version>1.1-SNAPSHOT</version>
> 	</dependency>
>     <dependency>
>       <groupId>concurrent</groupId>
>       <artifactId>concurrent</artifactId>
>       <version>1.3.4</version>
>     </dependency>
>     <dependency>
>       <groupId>commons-collections</groupId>
>       <artifactId>commons-collections</artifactId>
>       <version>3.1</version>
>     </dependency>
>     <dependency>
>       <groupId>org.apache.geronimo.specs</groupId>
>       <artifactId>geronimo-jta_1.0.1B_spec</artifactId>
>       <version>1.0.1</version>
>     </dependency>
>     <dependency>
>       <groupId>javax.jcr</groupId>
>       <artifactId>jcr</artifactId>
>       <version>1.0</version>
>     </dependency>
>     <dependency>
>       <groupId>log4j</groupId>
>       <artifactId>log4j</artifactId>
>       <version>1.2.8</version>
>     </dependency>
>     <dependency>
>       <groupId>org.slf4j</groupId>
>       <artifactId>slf4j-log4j12</artifactId>
>       <version>1.0</version>
>     </dependency>
>     <dependency>
>       <groupId>lucene</groupId>
>       <artifactId>lucene</artifactId>
>       <version>1.4.3</version>
>     </dependency>
>     <dependency>
>       <groupId>org.apache.derby</groupId>
>       <artifactId>derby</artifactId>
>       <version>10.1.1.0</version>
>       <optional>true</optional>
>     </dependency>
>     <dependency>
>       <groupId>junit</groupId>
>       <artifactId>junit</artifactId>
>       <version>3.8.1</version>
>       <scope>test</scope>
>     </dependency>
>   </dependencies>
>   <distributionManagement>
>     <repository>
>       <id>apache.releases</id>
>       <name>Apache Repository for PMC approved releases</name>
>       <url>scp://people.apache.org/www/www.apache.org/dist/maven-repository/</url>
>     </repository>
>     <snapshotRepository>
>       <id>apache.snapshots</id>
>       <name>Apache Development Repository</name>
>       <url>scp://people.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>
>     </snapshotRepository>
>     <site>
>       <id>website</id>
>       <url>scp://people.apache.org/www/jackrabbit.apache.org/</url>
>     </site>
>   </distributionManagement>
> </project>

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

[jira] Closed: (JCR-571) jackrabbit JCA pom.xml

Posted by "Jukka Zitting (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/JCR-571?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jukka Zitting closed JCR-571.
-----------------------------


> jackrabbit JCA pom.xml
> ----------------------
>
>                 Key: JCR-571
>                 URL: https://issues.apache.org/jira/browse/JCR-571
>             Project: Jackrabbit
>          Issue Type: Improvement
>          Components: jca
>    Affects Versions: 1.1
>         Environment: maven 2
>            Reporter: Darren Hartford
>         Attachments: pom.xml
>
>
> do not see a way to add attachments, so here it is below inline.
> Note, need to move the src/rar/META-INF/ra.xml to src/main/rar/META-INF/ra.xml (which is the default location with maven rar packager).
> ==========================================
> <?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                                   -->
> <!-- ====================================================================== -->
>   <groupId>org.apache.jackrabbit</groupId>
>   <artifactId>jackrabbit-jca</artifactId>
>   <packaging>rar</packaging>
>   <name>Jackrabbit JCA</name>
>   <version>1.1-SNAPSHOT</version>
>   <!--
>     Keep the description on a single line. Otherwise Maven might generate
>     a corrupted MANIFEST.MF (see http://jira.codehaus.org/browse/MJAR-4)
>    -->
>   <description>
> A resource adapter for Jackrabbit as specified by JCA 1.0.
> </description>
>   <url>http://jackrabbit.apache.org/</url>
>   <prerequisites>
>     <maven>2.0</maven>
>   </prerequisites>
>   <issueManagement>
>     <system>Jira</system>
>     <url>http://issues.apache.org/jira/browse/JCR</url>
>   </issueManagement>
>   <inceptionYear>2005</inceptionYear>
> <!-- ====================================================================== -->
> <!-- M A I L I N G   L I S T S                                              -->
> <!-- ====================================================================== -->
>   <mailingLists>
>     <mailingList>
>       <name>Jackrabbit Announce List</name>
>       <subscribe>announce-subscribe@jackrabbit.apache.org</subscribe>
>       <unsubscribe>announce-unsubscribe@jackrabbit.apache.org</unsubscribe>
>       <archive>http://mail-archives.apache.org/mod_mbox/jackrabbit-announce/</archive>
>     </mailingList>
>     <mailingList>
>       <name>Jackrabbit Users List</name>
>       <subscribe>users-subscribe@jackrabbit.apache.org</subscribe>
>       <unsubscribe>users-unsubscribe@jackrabbit.apache.org</unsubscribe>
>       <post>users at jackrabbit.apache.org</post>
>       <archive>http://mail-archives.apache.org/mod_mbox/jackrabbit-users/</archive>
>       <otherArchives>
>         <otherArchive>
>           http://dir.gmane.org/gmane.comp.apache.jackrabbit.user
>         </otherArchive>
>         <otherArchive>
>           http://www.mail-archive.com/users@jackrabbit.apache.org/
>         </otherArchive>
>       </otherArchives>
>     </mailingList>
>     <mailingList>
>       <name>Jackrabbit Development List</name>
>       <subscribe>dev-subscribe@jackrabbit.apache.org</subscribe>
>       <unsubscribe>dev-unsubscribe@jackrabbit.apache.org</unsubscribe>
>       <post>dev at jackrabbit.apache.org</post>
>       <archive>http://mail-archives.apache.org/mod_mbox/jackrabbit-dev/</archive>
>       <otherArchives>
>         <otherArchive>
>           http://dir.gmane.org/gmane.comp.apache.jackrabbit.devel
>         </otherArchive>
>         <otherArchive>
>           http://www.mail-archive.com/dev@jackrabbit.apache.org/
>         </otherArchive>
>         <otherArchive>
>           http://www.mail-archive.com/jackrabbit-dev@incubator.apache.org/
>         </otherArchive>
>       </otherArchives>
>     </mailingList>
>     <mailingList>
>       <name>Jackrabbit Source Control List</name>
>       <subscribe>commits-subscribe@jackrabbit.apache.org</subscribe>
>       <unsubscribe>commits-unsubscribe@jackrabbit.apache.org</unsubscribe>
>       <archive>http://mail-archives.apache.org/mod_mbox/jackrabbit-commits/</archive>
>     </mailingList>
>   </mailingLists>
>   <licenses>
>     <license>
>       <name>The Apache Software License, Version 2.0</name>
>       <url>http://www.apache.org/licenses/LICENSE-2.0</url>
>       <distribution>repo</distribution>
>     </license>
>   </licenses>
>   <scm>
>     <connection>scm:svn:http://svn.apache.org/repos/asf/jackrabbit/trunk/jca</connection>
>     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/jackrabbit/trunk/jca</developerConnection>
>     <url>http://svn.apache.org/viewvc/jackrabbit/trunk/jca</url>
>   </scm>
>   <organization>
>     <name>The Apache Software Foundation</name>
>     <url>http://www.apache.org/</url>
>   </organization>
>   <build>
>     <resources>
>       <resource>
>         <directory>src/java</directory>
>       </resource>
>     </resources>
> <!-- 
>    <testResources>
>       <testResource>
>         <directory>applications/test</directory>
>         <includes>
>           <include>*.properties</include>
>           <include>*.xml</include>
>         </includes>
>       </testResource>
>       <testResource>
>         <directory>src/test/java</directory>
>         <includes>
>           <include>**/*.xml</include>
>           <include>**/*.txt</include>
>         </includes>
>       </testResource>
>     </testResources>
> -->
>     <plugins>
>       <plugin>
>         <artifactId>maven-compiler-plugin</artifactId>
>         <configuration>
>           <target>1.4</target>
>           <source>1.4</source>
>         </configuration>
>       </plugin>
> <!-- 
>       <plugin>
>         <artifactId>maven-surefire-plugin</artifactId>
>         <configuration>
>           <excludes>
>             <exclude>**/init/*</exclude>
>           </excludes>
>           <includes>
>             <include>**/*TestAll.java</include>
>           </includes>
>           <forkMode>once</forkMode>
>           <argLine>-Xmx128m -enableassertions</argLine>
>           <systemProperties>
>             <property>
>               <name>derby.system.durability</name>
>               <value>test</value>
>             </property>
>             <property>
>               <name>known.issues</name>
>               <value>org.apache.jackrabbit.core.xml.DocumentViewTest#testMultiValue org.apache.jackrabbit.value.BinaryValueTest#testBinaryValueEquals</value>
>             </property>
>           </systemProperties>          
>         </configuration>
>       </plugin>
> -->
>     </plugins>
>   </build>
>   <dependencies>
>   
>   	<dependency>
> 	    <groupId>org.apache.jackrabbit</groupId>
> 	    <artifactId>jackrabbit-core</artifactId>
> 	    <version>1.1-SNAPSHOT</version>
> 	</dependency>
>     <dependency>
>       <groupId>concurrent</groupId>
>       <artifactId>concurrent</artifactId>
>       <version>1.3.4</version>
>     </dependency>
>     <dependency>
>       <groupId>commons-collections</groupId>
>       <artifactId>commons-collections</artifactId>
>       <version>3.1</version>
>     </dependency>
>     <dependency>
>       <groupId>org.apache.geronimo.specs</groupId>
>       <artifactId>geronimo-jta_1.0.1B_spec</artifactId>
>       <version>1.0.1</version>
>     </dependency>
>     <dependency>
>       <groupId>javax.jcr</groupId>
>       <artifactId>jcr</artifactId>
>       <version>1.0</version>
>     </dependency>
>     <dependency>
>       <groupId>log4j</groupId>
>       <artifactId>log4j</artifactId>
>       <version>1.2.8</version>
>     </dependency>
>     <dependency>
>       <groupId>org.slf4j</groupId>
>       <artifactId>slf4j-log4j12</artifactId>
>       <version>1.0</version>
>     </dependency>
>     <dependency>
>       <groupId>lucene</groupId>
>       <artifactId>lucene</artifactId>
>       <version>1.4.3</version>
>     </dependency>
>     <dependency>
>       <groupId>org.apache.derby</groupId>
>       <artifactId>derby</artifactId>
>       <version>10.1.1.0</version>
>       <optional>true</optional>
>     </dependency>
>     <dependency>
>       <groupId>junit</groupId>
>       <artifactId>junit</artifactId>
>       <version>3.8.1</version>
>       <scope>test</scope>
>     </dependency>
>   </dependencies>
>   <distributionManagement>
>     <repository>
>       <id>apache.releases</id>
>       <name>Apache Repository for PMC approved releases</name>
>       <url>scp://people.apache.org/www/www.apache.org/dist/maven-repository/</url>
>     </repository>
>     <snapshotRepository>
>       <id>apache.snapshots</id>
>       <name>Apache Development Repository</name>
>       <url>scp://people.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>
>     </snapshotRepository>
>     <site>
>       <id>website</id>
>       <url>scp://people.apache.org/www/jackrabbit.apache.org/</url>
>     </site>
>   </distributionManagement>
> </project>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.