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