From: Richard Millet Date: Tue, 4 Aug 2009 00:00:30 +0000 (+0000) Subject: cspace-271: Adding build dependency for the new Relation service and adding Relation... X-Git-Url: https://git.aero2k.de/?a=commitdiff_plain;h=c8c2cec300317160ccb2261bf6858f2ed60fdf95;p=tmp%2Fjakarta-migration.git cspace-271: Adding build dependency for the new Relation service and adding Relation resource to JAX-RS application. --- diff --git a/services/JaxRsServiceProvider/pom.xml b/services/JaxRsServiceProvider/pom.xml index a4c1e3d48..a3edaf321 100644 --- a/services/JaxRsServiceProvider/pom.xml +++ b/services/JaxRsServiceProvider/pom.xml @@ -47,6 +47,11 @@ org.collectionspace.services.intake.service 1.0 + + org.collectionspace.services + org.collectionspace.services.relation.service + 1.0 + org.jboss.resteasy resteasy-jaxrs 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 2b2abb223..df1802523 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 @@ -3,6 +3,7 @@ package org.collectionspace.services.jaxrs; import org.collectionspace.services.collectionobject.CollectionObjectResource; import org.collectionspace.services.id.IDResource; import org.collectionspace.services.intake.IntakeResource; +import org.collectionspace.services.RelationResource; import javax.ws.rs.core.Application; import java.util.HashSet; @@ -18,6 +19,7 @@ public class CollectionSpaceJaxRsApplication extends Application { singletons.add(new CollectionObjectResource()); singletons.add(new IDResource()); singletons.add(new IntakeResource()); + singletons.add(new RelationResource()); // singletons.add(new DomainIdentifierResource()); // singletons.add(new PingResource()); }