Skip to content

Commit

Permalink
Updates for being a standalone project
Browse files Browse the repository at this point in the history
  • Loading branch information
whikloj authored and Andrew Woods committed Oct 19, 2015
1 parent 22ced59 commit 0519e66
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 16 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Expand Up @@ -10,3 +10,8 @@

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

target/
.classpath
.project

40 changes: 24 additions & 16 deletions pom.xml
@@ -1,13 +1,25 @@
<?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>fcrepo</artifactId>
<groupId>org.fcrepo</groupId>
<version>4.3.1-SNAPSHOT</version>
<version>4.4.1-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>org.fcrepo.transform</groupId>
<artifactId>fcrepo-transform</artifactId>
<packaging>bundle</packaging>

<version>4.4.1-SNAPSHOT</version>

<name>Fedora Repository RDF Transformations Module</name>
<description>The Fedora Commons repository transformations module: Provides facilities to use SPARQL or LDPath to tranform repository RDF into desired forms.</description>

<properties>
<ldpath.version>3.2.1</ldpath.version>
<fcrepo.version>${project.version}</fcrepo.version>
<osgi.import.packages>
org.fcrepo.kernel.api,
org.fcrepo.http.api,
Expand Down Expand Up @@ -37,18 +49,12 @@
</osgi.export.packages>
</properties>


<artifactId>fcrepo-transform</artifactId>
<name>Fedora Repository RDF Transformations Module</name>
<description>The Fedora Commons repository transformations module: Provides facilities to use SPARQL or LDPath to tranform repository RDF into desired forms.</description>
<packaging>bundle</packaging>

<dependencies>

<dependency>
<groupId>org.fcrepo</groupId>
<artifactId>fcrepo-kernel-api</artifactId>
<version>${project.version}</version>
<version>${fcrepo.version}</version>
<exclusions>
<exclusion>
<groupId>ch.qos.logback</groupId>
Expand All @@ -68,14 +74,14 @@
<dependency>
<groupId>org.fcrepo</groupId>
<artifactId>fcrepo-http-commons</artifactId>
<version>${project.version}</version>
<version>${fcrepo.version}</version>
</dependency>


<dependency>
<groupId>org.fcrepo</groupId>
<artifactId>fcrepo-http-api</artifactId>
<version>${project.version}</version>
<version>${fcrepo.version}</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -103,15 +109,15 @@
<dependency>
<groupId>org.fcrepo</groupId>
<artifactId>fcrepo-http-commons</artifactId>
<version>${project.version}</version>
<version>${fcrepo.version}</version>
<scope>test</scope>
<type>test-jar</type>
</dependency>

<dependency>
<groupId>org.fcrepo</groupId>
<artifactId>fcrepo-kernel-modeshape</artifactId>
<version>${project.version}</version>
<version>${fcrepo.version}</version>
<scope>test</scope>
</dependency>

Expand All @@ -124,14 +130,14 @@
<dependency>
<groupId>org.fcrepo</groupId>
<artifactId>fcrepo-configs</artifactId>
<version>${project.version}</version>
<version>${fcrepo.version}</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.fcrepo</groupId>
<artifactId>fcrepo-auth-common</artifactId>
<version>${project.version}</version>
<version>${fcrepo.version}</version>
<scope>test</scope>
</dependency>

Expand Down Expand Up @@ -161,10 +167,12 @@
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>${spring.version}</version>
</dependency>
<dependency>
<groupId>org.glassfish.jersey.ext</groupId>
Expand Down Expand Up @@ -253,7 +261,7 @@
<dependency>
<groupId>org.fcrepo</groupId>
<artifactId>fcrepo-jcr-bom</artifactId>
<version>${project.version}</version>
<version>${fcrepo.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down

0 comments on commit 0519e66

Please sign in to comment.