From: Aron Roberts Date: Wed, 1 Jul 2009 21:43:57 +0000 (+0000) Subject: CSPACE-245: Added the ID Service to three Services build-related files and checked... X-Git-Url: https://git.aero2k.de/?a=commitdiff_plain;h=34661b47f2bfa2e03f045d73537ddbe8b6e88135;p=tmp%2Fjakarta-migration.git CSPACE-245: Added the ID Service to three Services build-related files and checked that builds are now incorporating the ID Service's artifacts. --- diff --git a/services/JaxRsServiceProvider/pom.xml b/services/JaxRsServiceProvider/pom.xml index 061a7a11e..83bdb6a83 100644 --- a/services/JaxRsServiceProvider/pom.xml +++ b/services/JaxRsServiceProvider/pom.xml @@ -37,6 +37,11 @@ org.collectionspace.services.collectionobject.service 1.0 + + org.collectionspace.services + org.collectionspace.services.id.service + 1.0 + org.collectionspace.services org.collectionspace.services.intake.service diff --git a/services/JaxRsServiceProvider/src/main/java/org/collectionspace/services/jaxrs/CollectionSpaceJaxRsApplication.java b/services/JaxRsServiceProvider/src/main/java/org/collectionspace/services/jaxrs/CollectionSpaceJaxRsApplication.java index 13e60cad3..59fda2050 100644 --- a/services/JaxRsServiceProvider/src/main/java/org/collectionspace/services/jaxrs/CollectionSpaceJaxRsApplication.java +++ b/services/JaxRsServiceProvider/src/main/java/org/collectionspace/services/jaxrs/CollectionSpaceJaxRsApplication.java @@ -1,6 +1,7 @@ package org.collectionspace.services.jaxrs; import org.collectionspace.services.CollectionObjectResource; +import org.collectionspace.services.IDResource; import org.collectionspace.services.IntakeResource; import javax.ws.rs.core.Application; @@ -14,6 +15,7 @@ public class CollectionSpaceJaxRsApplication extends Application { public CollectionSpaceJaxRsApplication() { singletons.add(new CollectionObjectResource()); + singletons.add(new IDResource()); singletons.add(new IntakeResource()); // singletons.add(new DomainIdentifierResource()); // singletons.add(new PingResource()); diff --git a/services/pom.xml b/services/pom.xml index 2d48b01cb..dcf87756a 100644 --- a/services/pom.xml +++ b/services/pom.xml @@ -25,6 +25,7 @@ authentication client collectionobject + id intake JaxRsServiceProvider @@ -118,6 +119,24 @@ + + + org.apache.maven.plugins + maven-dependency-plugin + + + classpath + + build-classpath + + + classpath + + + + + +