updating poms for 4.11.0-SNAPSHOT development
[cdmlib.git] / cdmlib-services / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3 <!--
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
5 -->
6 <parent>
7 <groupId>eu.etaxonomy</groupId>
8 <artifactId>cdmlib-parent</artifactId>
9 <version>4.11.0-SNAPSHOT</version>
10 <relativePath>../pom.xml</relativePath>
11 </parent>
12
13 <modelVersion>4.0.0</modelVersion>
14 <artifactId>cdmlib-services</artifactId>
15 <name>CDM Services</name>
16 <description>EDIT CDM library services. The local API and basis for webservices too.</description>
17 <!--
18 cdmlib/services as osgi bundle?
19 see https://dev.e-taxonomy.eu/redmine/issues/5302 and https://dev.e-taxonomy.eu/redmine/issues/6695
20 -->
21 <packaging>bundle</packaging>
22 <scm>
23 <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-service/</connection>
24 <developerConnection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-service/</developerConnection>
25 <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlib-service/</url>
26 </scm>
27 <build>
28 <plugins>
29 <plugin>
30 <groupId>org.apache.felix</groupId>
31 <artifactId>maven-bundle-plugin</artifactId>
32 <version>3.3.0</version>
33 <extensions>true</extensions>
34 <configuration>
35 <instructions>
36 <Export-Package>eu.etaxonomy.cdm.api.service</Export-Package>
37 <Bundle-SymbolicName>eu.etaxonomy.cdm.services</Bundle-SymbolicName>
38 <Bundle-Activator>eu.etaxonomy.cdm.services.impl.Activator</Bundle-Activator>
39 </instructions>
40 </configuration>
41 </plugin>
42 <plugin>
43 <groupId>org.apache.maven.plugins</groupId>
44 <artifactId>maven-surefire-plugin</artifactId>
45 <configuration>
46 <argLine>-Xms256m -Xmx512m</argLine>
47 </configuration>
48 </plugin>
49 </plugins>
50 </build>
51 <dependencies>
52 <dependency>
53 <groupId>org.apache.felix</groupId>
54 <artifactId>org.osgi.core</artifactId>
55 <version>1.0.0</version>
56 </dependency>
57 <dependency>
58 <groupId>eu.etaxonomy</groupId>
59 <artifactId>cdmlib-persistence</artifactId>
60 </dependency>
61 <dependency>
62 <groupId>eu.etaxonomy</groupId>
63 <artifactId>cdmlib-test</artifactId>
64 <scope>test</scope>
65 </dependency>
66 <!-- <dependency> -->
67 <!-- <groupId>eu.etaxonomy</groupId> -->
68 <!-- <artifactId>cdmlib-persistence</artifactId> -->
69 <!-- <type>test-jar</type> -->
70 <!-- <scope>test</scope> -->
71 <!-- <version>${project.version}</version> -->
72 <!-- </dependency> -->
73 <dependency>
74 <groupId>org.apache.lucene</groupId>
75 <artifactId>lucene-highlighter</artifactId>
76 </dependency>
77 <dependency>
78 <groupId>org.apache.lucene</groupId>
79 <artifactId>lucene-grouping</artifactId>
80 </dependency>
81 <dependency>
82 <groupId>org.apache.lucene</groupId>
83 <artifactId>lucene-join</artifactId>
84 </dependency>
85 <dependency>
86 <groupId>org.apache.lucene</groupId>
87 <artifactId>lucene-suggest</artifactId>
88 </dependency>
89 <!-- <dependency> -->
90 <!-- <groupId>org.unitils</groupId> -->
91 <!-- <artifactId>unitils-dbunit</artifactId> -->
92 <!-- <scope>test</scope> -->
93 <!-- </dependency> -->
94 <!-- <dependency> -->
95 <!-- <groupId>org.unitils</groupId> -->
96 <!-- <artifactId>unitils-spring</artifactId> -->
97 <!-- <scope>test</scope> -->
98 <!-- </dependency> -->
99 <!-- <dependency> -->
100 <!-- <groupId>xmlunit</groupId> -->
101 <!-- <artifactId>xmlunit</artifactId> -->
102 <!-- <scope>test</scope> -->
103 <!-- </dependency> -->
104 <dependency>
105 <groupId>xerces</groupId>
106 <artifactId>xercesImpl</artifactId>
107 </dependency>
108 <dependency>
109 <groupId>jaxen</groupId>
110 <artifactId>jaxen</artifactId>
111 </dependency>
112 <dependency>
113 <groupId>org.eclipse</groupId>
114 <artifactId>osgi</artifactId>
115 </dependency>
116 <dependency>
117 <groupId>org.springframework.security</groupId>
118 <artifactId>spring-security-config</artifactId>
119 </dependency>
120 <dependency>
121 <groupId>com.ibm.lsid</groupId>
122 <artifactId>lsid-server</artifactId>
123 </dependency>
124 <dependency>
125 <groupId>commons-lang</groupId>
126 <artifactId>commons-lang</artifactId>
127 </dependency>
128 <dependency>
129 <groupId>net.sf.ehcache</groupId>
130 <artifactId>ehcache-core</artifactId>
131 </dependency>
132 </dependencies>
133 </project>
134