]> git.aero2k.de Git - tmp/jakarta-migration.git/commitdiff
CSPACE-245: Added the ID Service to three Services build-related files and checked...
authorAron Roberts <aron@socrates.berkeley.edu>
Wed, 1 Jul 2009 21:43:57 +0000 (21:43 +0000)
committerAron Roberts <aron@socrates.berkeley.edu>
Wed, 1 Jul 2009 21:43:57 +0000 (21:43 +0000)
services/JaxRsServiceProvider/pom.xml
services/JaxRsServiceProvider/src/main/java/org/collectionspace/services/jaxrs/CollectionSpaceJaxRsApplication.java
services/pom.xml

index 061a7a11e7bc4565db9dc9723d2a01f2a886505b..83bdb6a83c0fc583259271985b5f9c8710ef2658 100644 (file)
             <artifactId>org.collectionspace.services.collectionobject.service</artifactId>\r
             <version>1.0</version>\r
         </dependency>\r
+        <dependency>\r
+            <groupId>org.collectionspace.services</groupId>\r
+            <artifactId>org.collectionspace.services.id.service</artifactId>\r
+            <version>1.0</version>\r
+        </dependency>\r
         <dependency>\r
             <groupId>org.collectionspace.services</groupId>\r
             <artifactId>org.collectionspace.services.intake.service</artifactId>\r
index 13e60cad3819dd458c9fb946a488172a684f831f..59fda2050b5ca0f261544fc7f60a23fbed53eda6 100644 (file)
@@ -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());
index 2d48b01cbbf0c04c808ba9e4b83c92df07910154..dcf87756a59685ca537f139fc46f26982f5f28aa 100644 (file)
@@ -25,6 +25,7 @@
         <module>authentication</module>
         <module>client</module>
         <module>collectionobject</module>
+        <module>id</module>
         <module>intake</module>
         <module>JaxRsServiceProvider</module>
   </modules>
                         </archive>
                     </configuration>
                 </plugin>
+                
+               <plugin>
+                  <groupId>org.apache.maven.plugins</groupId>
+                  <artifactId>maven-dependency-plugin</artifactId>
+                  <executions>
+                    <execution>
+                      <id>classpath</id>
+                      <goals>
+                        <goal>build-classpath</goal>
+                      </goals>
+                      <configuration>
+                      <outputFile>classpath</outputFile>
+                      </configuration>
+                    </execution>
+                  </executions>
+                </plugin>
+
+
             </plugins>
         </pluginManagement>
     </build>