2007-02-26 12:04:17 -05:00
|
|
|
<?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.
|
|
|
|
-->
|
|
|
|
|
2007-06-01 13:10:13 -04:00
|
|
|
<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">
|
2007-02-26 12:04:17 -05:00
|
|
|
<parent>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2008-03-28 23:09:22 -04:00
|
|
|
<artifactId>archiva-modules</artifactId>
|
2008-01-17 00:55:30 -05:00
|
|
|
<version>1.1-SNAPSHOT</version>
|
2007-02-26 12:04:17 -05:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>archiva-database</artifactId>
|
2008-01-17 00:55:30 -05:00
|
|
|
<version>1.1-SNAPSHOT</version>
|
2007-02-26 12:04:17 -05:00
|
|
|
<name>Archiva Database</name>
|
|
|
|
<dependencies>
|
2007-06-17 00:50:05 -04:00
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-06-17 00:50:05 -04:00
|
|
|
<artifactId>archiva-repository-layer</artifactId>
|
|
|
|
</dependency>
|
2007-04-09 12:39:58 -04:00
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-04-09 12:39:58 -04:00
|
|
|
<artifactId>archiva-consumer-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-04-09 12:39:58 -04:00
|
|
|
<artifactId>archiva-configuration</artifactId>
|
|
|
|
</dependency>
|
2007-02-26 12:04:17 -05:00
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2007-03-15 12:48:40 -04:00
|
|
|
<artifactId>archiva-model</artifactId>
|
2007-02-26 13:01:19 -05:00
|
|
|
</dependency>
|
2007-02-26 15:47:55 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
2007-03-15 12:48:40 -04:00
|
|
|
<artifactId>plexus-jdo2</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>xerces</groupId>
|
|
|
|
<artifactId>xercesImpl</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>xerces</groupId>
|
|
|
|
<artifactId>xmlParserAPIs</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2007-02-26 15:47:55 -05:00
|
|
|
</dependency>
|
2007-02-26 12:04:17 -05:00
|
|
|
<dependency>
|
2007-03-15 12:48:40 -04:00
|
|
|
<groupId>jpox</groupId>
|
|
|
|
<artifactId>jpox</artifactId>
|
|
|
|
<scope>compile</scope>
|
|
|
|
<exclusions>
|
|
|
|
<!-- targeting JDK 1.4 we don't need this -->
|
|
|
|
<exclusion>
|
|
|
|
<groupId>javax.sql</groupId>
|
|
|
|
<artifactId>jdbc-stdext</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2007-02-26 12:04:17 -05:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-container-default</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
</dependency>
|
2007-02-26 15:47:55 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.derby</groupId>
|
|
|
|
<artifactId>derby</artifactId>
|
|
|
|
</dependency>
|
2007-03-21 11:46:41 -04:00
|
|
|
<!-- TEST DEPS -->
|
2007-05-17 18:16:57 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.plexus.registry</groupId>
|
|
|
|
<artifactId>plexus-registry-commons</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2007-03-21 11:46:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>hsqldb</groupId>
|
|
|
|
<artifactId>hsqldb</artifactId>
|
2007-04-19 08:25:11 -04:00
|
|
|
<scope>test</scope>
|
2007-03-21 11:46:41 -04:00
|
|
|
</dependency>
|
2007-02-26 15:47:55 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.derby</groupId>
|
|
|
|
<artifactId>derbytools</artifactId>
|
|
|
|
<scope>test</scope>
|
2007-02-26 12:04:17 -05:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
2007-03-21 10:30:32 -04:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
2007-02-26 15:47:55 -05:00
|
|
|
<groupId>org.codehaus.plexus</groupId>
|
|
|
|
<artifactId>plexus-maven-plugin</artifactId>
|
2007-03-21 10:30:32 -04:00
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2007-02-26 12:04:17 -05:00
|
|
|
</build>
|
|
|
|
</project>
|