change name of ReferencedMedia to ReferencedMediaBase (#2381)
[cdmlib.git] / cdmlib-services / pom.xml
index 1b9a50088a764e9908aab4fc9959b5885d5daf03..872ba7eca9b4cac6358c60079b56154c164db877 100644 (file)
-<?xml version="1.0" encoding="UTF-8"?>\r
-<project xmlns="http://maven.apache.org/POM/4.0.0" \r
-  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">\r
-  <!-- \r
-    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"\r
-   -->\r
+<?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/maven-v4_0_0.xsd">
+  <!-- 
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
+   -->
        <parent>
                <groupId>eu.etaxonomy</groupId>
                <artifactId>cdmlib-parent</artifactId>
-               <version>1.1.0-SNAPSHOT</version>
-       </parent>\r
-\r
-  <modelVersion>4.0.0</modelVersion>\r
-  <artifactId>cdmlib-services</artifactId>\r
-  <name>EDIT CDM Library Services</name>\r
-  <description>EDIT CDM library services. The local API and basis for webservices too.</description>\r
-  <scm>\r
-    <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlibrary/</connection>\r
-    <developerConnection>scm:svn:https://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlibrary/</developerConnection>\r
-    <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlibrary/</url>\r
-  </scm>\r
-\r
-  <dependencies>\r
-        <dependency>\r
-               <groupId>eu.etaxonomy</groupId>\r
-               <artifactId>cdmlib-persistence</artifactId>\r
-       </dependency>\r
-       <dependency>\r
-               <groupId>org.springframework</groupId>\r
-               <artifactId>spring-test</artifactId>\r
-       </dependency>\r
-       <dependency>\r
-               <groupId>xerces</groupId>\r
-               <artifactId>xercesImpl</artifactId>\r
-       </dependency>\r
-       <dependency>\r
-               <groupId>jaxen</groupId>\r
-               <artifactId>jaxen</artifactId>\r
-       </dependency>\r
-       <dependency>\r
-               <groupId>org.eclipse</groupId>\r
-               <artifactId>osgi</artifactId>\r
-       </dependency>\r
-\r
-  </dependencies>\r
-</project>\r
-\r
+               <version>3.0.7-SNAPSHOT</version>
+               <relativePath>pom.xml</relativePath>
+       </parent>
+
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>cdmlib-services</artifactId>
+  <name>CDM Services</name>
+  <description>EDIT CDM library services. The local API and basis for webservices too.</description>
+  <packaging>bundle</packaging>
+  <scm>
+    <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-service/</connection>
+    <developerConnection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-service/</developerConnection>
+    <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlib-service/</url>
+  </scm>
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>maven-bundle-plugin</artifactId>
+        <extensions>true</extensions>
+        <configuration>
+          <instructions>
+            <Export-Package>eu.etaxonomy.cdm.api.service</Export-Package>
+            <Bundle-SymbolicName>eu.etaxonomy.cdm.services</Bundle-SymbolicName>
+            <Bundle-Activator>eu.etaxonomy.cdm.services.impl.Activator</Bundle-Activator>
+          </instructions>
+        </configuration>
+      </plugin>      
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <argLine>-Xms256m -Xmx512m</argLine>
+        </configuration>
+      </plugin>
+   </plugins>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.felix</groupId>
+      <artifactId>org.osgi.core</artifactId>
+      <version>1.0.0</version>
+    </dependency>    
+       <dependency>
+               <groupId>eu.etaxonomy</groupId>
+               <artifactId>cdmlib-persistence</artifactId>
+       </dependency>
+       <dependency>
+               <groupId>eu.etaxonomy</groupId>
+               <artifactId>cdmlib-persistence</artifactId>
+               <type>test-jar</type>
+               <scope>test</scope>
+               <version>${project.version}</version>
+       </dependency>
+    <dependency>
+        <groupId>org.unitils</groupId>
+        <artifactId>unitils</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.dbunit</groupId>
+      <artifactId>dbunit</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>xmlunit</groupId>
+      <artifactId>xmlunit</artifactId>
+    </dependency>
+       <dependency>
+               <groupId>org.springframework</groupId>
+               <artifactId>org.springframework.test</artifactId>
+       </dependency>
+       <dependency>
+               <groupId>xerces</groupId>
+               <artifactId>xercesImpl</artifactId>
+       </dependency>
+       <dependency>
+               <groupId>jaxen</groupId>
+               <artifactId>jaxen</artifactId>
+       </dependency>
+       <dependency>
+               <groupId>org.eclipse</groupId>
+               <artifactId>osgi</artifactId>
+       </dependency>
+       <dependency>
+       <groupId>org.springframework.security</groupId>
+       <artifactId>spring-security-core</artifactId>
+    </dependency>
+    <dependency>
+        <groupId>org.springframework.security</groupId>
+        <artifactId>spring-security-config</artifactId>
+               <version>3.0.5.RELEASE</version>
+    </dependency>
+    <dependency>
+      <groupId>com.ibm.lsid</groupId>
+      <artifactId>lsid-server</artifactId>
+       </dependency>
+       <dependency>
+               <groupId>commons-lang</groupId>
+               <artifactId>commons-lang</artifactId>
+       </dependency>
+  </dependencies>
+</project>
+