Skip to content
This repository has been archived by the owner on Sep 23, 2020. It is now read-only.

Commit

Permalink
Maven work. shelved for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
labisso committed Dec 22, 2009
1 parent 97cad36 commit 569f454
Show file tree
Hide file tree
Showing 268 changed files with 74 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
*.iml
*.ipr
*.iws
target/
build/
dist/
autocontainer/downloads/
Expand Down
6 changes: 6 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@

<modules>
<module>service-api</module>
<module>service/service</module>
</modules>


Expand Down Expand Up @@ -66,6 +67,11 @@
<artifactId>spring</artifactId>
<version>2.5.6</version>
</dependency>
<dependency>
<groupId>backport-util-concurrent</groupId>
<artifactId>backport-util-concurrent</artifactId>
<version>3.1</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down
1 change: 0 additions & 1 deletion service-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
<version>2.3-SNAPSHOT</version>
</parent>

<groupId>org.nimbustools.api</groupId>
<packaging>jar</packaging>
<artifactId>service-api</artifactId>

Expand Down
67 changes: 67 additions & 0 deletions service/service/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>

<parent>
<groupId>org.nimbustools</groupId>
<artifactId>nimbus</artifactId>
<version>2.3-SNAPSHOT</version>
</parent>

<groupId>org.nimbustools</groupId>
<packaging>jar</packaging>
<artifactId>service</artifactId>

<name>Nimbus Service</name>

<dependencies>
<dependency>
<groupId>${groupId}</groupId>
<artifactId>service-api</artifactId>
<version>${version}</version>
</dependency>
<dependency>
<groupId>backport-util-concurrent</groupId>
<artifactId>backport-util-concurrent</artifactId>
</dependency>
<!--<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring</artifactId>
</dependency>
-->
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-j2ee_1.4_spec</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>org.safehaus.jug</groupId>
<artifactId>jug</artifactId>
<version>2.0.0</version>
<classifier>asl</classifier>
</dependency>
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache</artifactId>
<version>1.5.0</version>
</dependency>
<dependency>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
<version>6.1.7</version>
</dependency>
</dependencies>



</project>

File renamed without changes.

0 comments on commit 569f454

Please sign in to comment.