Skip to content

Commit

Permalink
Define snapshots-repo to resolve latest Fedora build artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
claussni committed Jun 2, 2015
1 parent 37bc32f commit bbd38f5
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions pom.xml
@@ -1,5 +1,6 @@
<?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">
<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>
Expand All @@ -8,6 +9,19 @@
<version>4.2.1-SNAPSHOT</version>
</parent>

<repositories>
<repository>
<id>snapshots-repo</id>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>

<artifactId>fcrepo-swordserver</artifactId>
<name>Fedora Repository SWORD Provider</name>
<description>
Expand All @@ -31,7 +45,7 @@
<dependency>
<groupId>org.fcrepo</groupId>
<artifactId>fcrepo-http-commons</artifactId>
<version>4.2.1-SNAPSHOT</version>
<version>${project.version}</version>
</dependency>

<dependency>
Expand Down

0 comments on commit bbd38f5

Please sign in to comment.