Skip to content
This repository has been archived by the owner on Oct 29, 2019. It is now read-only.

Commit

Permalink
Maven 2 Pom Files
Browse files Browse the repository at this point in the history
git-svn-id: https://source.sakaiproject.org/svn/db/trunk@19556 66ffb92e-73f9-0310-93c1-f5514f145a0a
  • Loading branch information
ian@caret.cam.ac.uk committed Dec 14, 2006
1 parent ac38072 commit cf83891
Show file tree
Hide file tree
Showing 7 changed files with 521 additions and 0 deletions.
48 changes: 48 additions & 0 deletions db-api/api/pom.xml
@@ -0,0 +1,48 @@
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>master</artifactId>
<groupId>org.sakaiproject</groupId>
<version>M2</version>
<relativePath>../../../master/pom.xml</relativePath>
</parent>
<name>sakai-db-api</name>
<groupId>org.sakaiproject</groupId>
<artifactId>sakai-db-api</artifactId>
<organization>
<name>University of Michigan</name>
<url>http://sakaiproject.org/</url>
</organization>
<inceptionYear>2003</inceptionYear>
<packaging>jar</packaging>
<properties>
<deploy.target>shared</deploy.target>
</properties>
<dependencies>
<dependency>

<groupId>org.sakaiproject</groupId>
<artifactId>sakai-component</artifactId>
<version>${sakai.version}</version>
<scope>provided</scope>
</dependency>
<dependency>

<groupId>org.sakaiproject</groupId>
<artifactId>sakai-util-api</artifactId>
<version>${sakai.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>






<resources/>

</build>
</project>
69 changes: 69 additions & 0 deletions db-impl/ext/pom.xml
@@ -0,0 +1,69 @@
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>master</artifactId>
<groupId>org.sakaiproject</groupId>
<version>M2</version>
<relativePath>../../../master/pom.xml</relativePath>
</parent>
<name>sakai-db-ext</name>
<groupId>org.sakaiproject</groupId>
<artifactId>sakai-db-ext</artifactId>
<organization>
<name>Sakai Project</name>
<url>http://sakaiproject.org/</url>
</organization>
<inceptionYear>2003</inceptionYear>
<packaging>jar</packaging>
<properties>
<deploy.target>shared</deploy.target>
</properties>
<dependencies>
<dependency>

<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.4</version>
<scope>provided</scope>
</dependency>
<dependency>

<groupId>${sakai.hibernate.groupId}</groupId>
<artifactId>${sakai.hibernate.artifactId}</artifactId>
<version>${sakai.hibernate.version}</version>
<scope>provided</scope>
</dependency>
<dependency>

<groupId>${sakai.spring.groupId}</groupId>
<artifactId>${sakai.spring.artifactId}</artifactId>
<version>${sakai.spring.version}</version>
<scope>provided</scope>
</dependency>
<dependency>

<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
<version>1.2.1</version>
<scope>provided</scope>
</dependency>
<dependency>

<groupId>commons-pool</groupId>
<artifactId>commons-pool</artifactId>
<version>1.2</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>






<resources/>

</build>
</project>
69 changes: 69 additions & 0 deletions db-impl/impl/pom.xml
@@ -0,0 +1,69 @@
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>master</artifactId>
<groupId>org.sakaiproject</groupId>
<version>M2</version>
<relativePath>../../../master/pom.xml</relativePath>
</parent>
<name>sakai-db-impl</name>
<groupId>org.sakaiproject</groupId>
<artifactId>sakai-db-impl</artifactId>
<organization>
<name>University of Michigan</name>
<url>http://sakaiproject.org/</url>
</organization>
<inceptionYear>2003</inceptionYear>
<packaging>jar</packaging>
<properties>
<deploy.target/>
</properties>
<dependencies>
<dependency>

<groupId>org.sakaiproject</groupId>
<artifactId>sakai-db-api</artifactId>
<version>${sakai.version}</version>
<scope>provided</scope>
</dependency>
<dependency>

<groupId>org.sakaiproject</groupId>
<artifactId>sakai-util-api</artifactId>
<version>${sakai.version}</version>
<scope>provided</scope>
</dependency>
<dependency>

<groupId>org.sakaiproject</groupId>
<artifactId>sakai-event-api</artifactId>
<version>${sakai.version}</version>
<scope>provided</scope>
</dependency>
<dependency>

<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.0.4</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>






<resources>
<resource>
<directory>${basedir}/src/sql</directory>
<includes>
<include>**/*.sql</include>
</includes>
</resource>
</resources>

</build>
</project>
147 changes: 147 additions & 0 deletions db-impl/pack/pom.xml
@@ -0,0 +1,147 @@
<?xml version="1.0"?>
<project xmlns="http://maven.apache.org/POM/4.0.0">
<modelVersion>4.0.0</modelVersion>
<parent>
<artifactId>master</artifactId>
<groupId>org.sakaiproject</groupId>
<version>M2</version>
<relativePath>../../../master/pom.xml</relativePath>
</parent>
<name>sakai-db-pack</name>
<groupId>org.sakaiproject</groupId>
<artifactId>sakai-db-pack</artifactId>
<organization>
<name>Sakai Foundation</name>
<url>http://sakaiproject.org/</url>
</organization>
<inceptionYear>2003</inceptionYear>
<packaging>sakai-component</packaging>
<properties>
<deploy.target>components</deploy.target>
</properties>
<dependencies>
<dependency>

<groupId>org.sakaiproject</groupId>
<artifactId>sakai-db-impl</artifactId>
<version>${sakai.version}</version>
</dependency>
<!-- provision the enviromemnt for hsqldb -->
<dependency>

<groupId>hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>1.8.0.5</version>
<!--properties: deploy.target: shared -->
<scope>provided</scope>
</dependency>
<dependency>

<groupId>cglib</groupId>
<artifactId>cglib-nodep</artifactId>
<version>2.1_3</version>
<!--properties: deploy.target: shared -->
<scope>provided</scope>
</dependency>
<dependency>

<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
<version>3.1</version>
<!--properties: deploy.target: shared -->
<scope>provided</scope>
</dependency>
<dependency>

<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
<version>1.2.1</version>
<!--properties: deploy.target: shared -->
<scope>provided</scope>
</dependency>
<dependency>

<groupId>commons-pool</groupId>
<artifactId>commons-pool</artifactId>
<version>1.3</version>
<!--properties: deploy.target: shared -->
<scope>provided</scope>
</dependency>
<dependency>

<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>1.6.1</version>
<!--properties: deploy.target: shared -->
<scope>provided</scope>
</dependency>
<dependency>

<groupId>antlr</groupId>
<artifactId>antlr</artifactId>
<version>2.7.6rc1</version>
<!--properties: deploy.target: shared -->
<scope>provided</scope>
</dependency>
<dependency>

<groupId>ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>1.1</version>
<!--properties: deploy.target: shared -->
<scope>provided</scope>
</dependency>
<dependency>

<groupId>${sakai.hibernate.groupId}</groupId>
<artifactId>${sakai.hibernate.artifactId}</artifactId>
<version>${sakai.hibernate.version}</version>
<!--properties: deploy.target: shared -->
<scope>provided</scope>
</dependency>
<dependency>

<groupId>jdbc</groupId>
<artifactId>jdbc2_0-stdext</artifactId>
<version>h2.1.8</version>
<!--properties: deploy.target: shared -->
<scope>provided</scope>
</dependency>
<dependency>

<groupId>jta</groupId>
<artifactId>jta</artifactId>
<version>h2.1.8</version>
<!--properties: deploy.target: shared -->
<scope>provided</scope>
</dependency>
<dependency>

<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>2.6.0</version>
<!--properties: deploy.target: shared -->
<scope>provided</scope>
</dependency>
<!-- while not directly needed by hibernate, as long as we are deploying hbm+pojo jars to shared, we want them to be able to use this one dependency -ggolden -->
<dependency>

<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>${sakai.commons.lang.version}</version>
<!--properties: deploy.target: shared -->
<scope>provided</scope>
</dependency>
</dependencies>
<build>






<resources/>
<!-- java source -->

</build>
</project>

0 comments on commit cf83891

Please sign in to comment.