Skip to content

Commit

Permalink
Moved RDF writer to orcid-api-rdf so it can be maintained more loosely
Browse files Browse the repository at this point in the history
  • Loading branch information
stain committed May 23, 2013
1 parent 558a1d7 commit a606551
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 6 deletions.
5 changes: 0 additions & 5 deletions orcid-api-common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,6 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-core</artifactId>
<version>2.10.1</version>
</dependency>
</dependencies>
<build>
<finalName>orcid-api-common</finalName>
Expand Down
24 changes: 24 additions & 0 deletions orcid-api-rdf/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<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>
<groupId>org.orcid</groupId>
<artifactId>orcid-parent</artifactId>
<version>1.1.5-SNAPSHOT</version>
</parent>
<artifactId>orcid-api-rdf</artifactId>
<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>orcid-api-common</artifactId>
<version>${project.parent.version}</version>
</dependency>

<dependency>
<groupId>org.apache.jena</groupId>
<artifactId>jena-core</artifactId>
<version>2.10.1</version>
</dependency>

</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*
* =============================================================================
*/
package org.orcid.api.common.writer;
package org.orcid.api.rdf;

import static org.orcid.api.common.OrcidApiConstants.APPLICATION_RDFXML;

Expand Down
6 changes: 6 additions & 0 deletions orcid-pub-web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@
<artifactId>orcid-api-common</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>orcid-api-rdf</artifactId>
<version>${project.parent.version}</version>
</dependency>

<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>orcid-utils</artifactId>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ the software.
<module>orcid-persistence</module>
<module>orcid-model</module>
<module>orcid-api-common</module>
<module>orcid-api-rdf</module>
<module>orcid-metrics-web</module>
<module>orcid-pub-web</module>
<module>orcid-api-web</module>
Expand Down

0 comments on commit a606551

Please sign in to comment.