Skip to content

Commit

Permalink
Back to relying on bagit as a dependency rather than inlining.
Browse files Browse the repository at this point in the history
  • Loading branch information
Edwin Shin committed Jun 27, 2013
1 parent e551973 commit 4685ebe
Show file tree
Hide file tree
Showing 142 changed files with 53 additions and 11,533 deletions.
60 changes: 53 additions & 7 deletions pom.xml
Expand Up @@ -10,6 +10,59 @@
<name>fcrepo-bagit-modeshape-federation-connector</name>
<description>Connects ModeShape to a filesystem directory containing BagIt directories.</description>
<dependencies>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>
<dependency>
<groupId>gov.loc</groupId>
<artifactId>bagit</artifactId>
<version>4.4</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging-api</artifactId>
</exclusion>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
<!-- Dependency convergence: bagit:4.4 declares a dependency on commons-codec:1.3
but also has a transitive dependency (via httpclient:4.2.5) on commons-codec:1.6 -->
<exclusion>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</exclusion>
<!-- Dependency convergence: bagit:4.4 depends on commons-io:2.0.1 -->
<exclusion>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
<!-- Dependency convergence: bagit:4.4 depends on jaxen:1.1.1 which itself
depends on both jaxen:1.0-FCS and jaxen:1.1-beta-6 -->
<exclusion>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- jaxen is only explicitly declared here because we had to exclude it from
bagit:4.4 because its dependency convergence issue with jaxen:1.1.1 -->
<dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
<version>1.1.4</version>
</dependency>
<!-- jcl-over-slf4j is for bagit:4.4 -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.modeshape</groupId>
<artifactId>modeshape-jcr</artifactId>
Expand Down Expand Up @@ -42,13 +95,6 @@
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>

<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.4</version>
</dependency>

<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
Expand Down

0 comments on commit 4685ebe

Please sign in to comment.