Skip to content

Commit

Permalink
Set up version connections
Browse files Browse the repository at this point in the history
  • Loading branch information
ajs6f committed Feb 7, 2013
1 parent 67d7544 commit 5f89c07
Show file tree
Hide file tree
Showing 3 changed files with 110 additions and 22 deletions.
38 changes: 38 additions & 0 deletions audit/pom.xml
@@ -0,0 +1,38 @@
<?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/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>

<parent>
<artifactId>modeshape-prototype</artifactId>
<groupId>org.fcrepo.modeshape</groupId>
<version>1.0-SNAPSHOT</version>
</parent>

<artifactId>audit</artifactId>
<packaging>jar</packaging>

<name>Audit</name>

<dependencies>
<dependency>
<groupId>org.fcrepo.modeshape</groupId>
<artifactId>kernel</artifactId>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
</plugin>
</plugins>
</build>

</project>
21 changes: 7 additions & 14 deletions kernel/pom.xml
Expand Up @@ -2,9 +2,13 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>org.fcrepo.modeshape</groupId>
<parent>
<groupId>org.fcrepo.modeshape</groupId>
<artifactId>modeshape-prototype</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>

<artifactId>kernel</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>

<name>ModeShape prototype kernel</name>
Expand Down Expand Up @@ -235,18 +239,7 @@
</pluginManagement>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<compilerArguments>
<endorseddirs>${endorsed.dir}</endorseddirs>
</compilerArguments>
</configuration>
</plugin>

<plugin>
<groupId>org.scala-tools</groupId>
<artifactId>maven-scala-plugin</artifactId>
Expand Down
73 changes: 65 additions & 8 deletions pom.xml
@@ -1,9 +1,66 @@
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.fcrepo.modeshape</groupId>
<artifactId>modeshape-prototype</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>ModeShape prototype</name>
<description>Parent project for ModeShape prototype.</description>
<?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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.fcrepo.modeshape</groupId>
<artifactId>modeshape-prototype</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<name>ModeShape prototype</name>
<description>Parent project for ModeShape prototype.</description>


<properties>
<fcrepo.version>1.0-SNAPSHOT</fcrepo.version>
</properties>

<modules>
<module>kernel</module>
<module>audit</module>
</modules>




<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.fcrepo.modeshape</groupId>
<artifactId>kernel</artifactId>
<version>${fcrepo.version}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>2.3.7</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<compilerArguments>
<endorseddirs>${endorsed.dir}</endorseddirs>
</compilerArguments>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 5f89c07

Please sign in to comment.