[maven-release-plugin] prepare release cdmlib-parent-3.0.11
[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.0.11</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 <packaging>bundle</packaging>
18 <scm>
19 <connection>scm:svn:http://dev.e-taxonomy.eu/svn/tags/cdmlib/cdmlib-parent-3.0.11/cdmlib-service</connection>
20 <developerConnection>scm:svn:http://dev.e-taxonomy.eu/svn/tags/cdmlib/cdmlib-parent-3.0.11/cdmlib-service</developerConnection>
21 <url>http://dev.e-taxonomy.eu/trac/browser/tags/cdmlib/cdmlib-parent-3.0.11/cdmlib-service</url>
22 </scm>
23 <build>
24 <plugins>
25 <plugin>
26 <groupId>org.apache.felix</groupId>
27 <artifactId>maven-bundle-plugin</artifactId>
28 <extensions>true</extensions>
29 <configuration>
30 <instructions>
31 <Export-Package>eu.etaxonomy.cdm.api.service</Export-Package>
32 <Bundle-SymbolicName>eu.etaxonomy.cdm.services</Bundle-SymbolicName>
33 <Bundle-Activator>eu.etaxonomy.cdm.services.impl.Activator</Bundle-Activator>
34 </instructions>
35 </configuration>
36 </plugin>
37 <plugin>
38 <groupId>org.apache.maven.plugins</groupId>
39 <artifactId>maven-surefire-plugin</artifactId>
40 <configuration>
41 <argLine>-Xms256m -Xmx512m</argLine>
42 </configuration>
43 </plugin>
44 </plugins>
45 </build>
46 <dependencies>
47 <dependency>
48 <groupId>org.apache.felix</groupId>
49 <artifactId>org.osgi.core</artifactId>
50 <version>1.0.0</version>
51 </dependency>
52 <dependency>
53 <groupId>eu.etaxonomy</groupId>
54 <artifactId>cdmlib-persistence</artifactId>
55 </dependency>
56 <dependency>
57 <groupId>eu.etaxonomy</groupId>
58 <artifactId>cdmlib-persistence</artifactId>
59 <type>test-jar</type>
60 <scope>test</scope>
61 <version>${project.version}</version>
62 </dependency>
63 <dependency>
64 <groupId>org.unitils</groupId>
65 <artifactId>unitils-core</artifactId>
66 <scope>test</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.unitils</groupId>
70 <artifactId>unitils-database</artifactId>
71 <scope>test</scope>
72 </dependency>
73 <dependency>
74 <groupId>org.unitils</groupId>
75 <artifactId>unitils-dbmaintainer</artifactId>
76 <scope>test</scope>
77 </dependency>
78 <dependency>
79 <groupId>org.unitils</groupId>
80 <artifactId>unitils-dbunit</artifactId>
81 <scope>test</scope>
82 </dependency>
83 <dependency>
84 <groupId>org.unitils</groupId>
85 <artifactId>unitils-easymock</artifactId>
86 <scope>test</scope>
87 </dependency>
88 <dependency>
89 <groupId>org.unitils</groupId>
90 <artifactId>unitils-mock</artifactId>
91 <scope>test</scope>
92 </dependency>
93 <dependency>
94 <groupId>org.unitils</groupId>
95 <artifactId>unitils-inject</artifactId>
96 <scope>test</scope>
97 </dependency>
98 <dependency>
99 <groupId>org.unitils</groupId>
100 <artifactId>unitils-orm</artifactId>
101 <scope>test</scope>
102 </dependency>
103 <dependency>
104 <groupId>org.unitils</groupId>
105 <artifactId>unitils-spring</artifactId>
106 <scope>test</scope>
107 </dependency>
108 <dependency>
109 <groupId>org.dbunit</groupId>
110 <artifactId>dbunit</artifactId>
111 </dependency>
112 <dependency>
113 <groupId>xmlunit</groupId>
114 <artifactId>xmlunit</artifactId>
115 </dependency>
116 <dependency>
117 <groupId>com.carrotsearch</groupId>
118 <artifactId>junit-benchmarks</artifactId>
119 <scope>test</scope>
120 </dependency>
121 <dependency>
122 <groupId>org.springframework</groupId>
123 <artifactId>org.springframework.test</artifactId>
124 </dependency>
125 <dependency>
126 <groupId>xerces</groupId>
127 <artifactId>xercesImpl</artifactId>
128 </dependency>
129 <dependency>
130 <groupId>jaxen</groupId>
131 <artifactId>jaxen</artifactId>
132 </dependency>
133 <dependency>
134 <groupId>org.eclipse</groupId>
135 <artifactId>osgi</artifactId>
136 </dependency>
137 <dependency>
138 <groupId>org.springframework.security</groupId>
139 <artifactId>spring-security-core</artifactId>
140 </dependency>
141 <dependency>
142 <groupId>org.springframework.security</groupId>
143 <artifactId>spring-security-config</artifactId>
144 <version>3.0.5.RELEASE</version>
145 </dependency>
146 <dependency>
147 <groupId>com.ibm.lsid</groupId>
148 <artifactId>lsid-server</artifactId>
149 </dependency>
150 <dependency>
151 <groupId>commons-lang</groupId>
152 <artifactId>commons-lang</artifactId>
153 </dependency>
154 </dependencies>
155 </project>
156