cdmlib / cdmlib-services / pom.xml @ 1a15e525
History | View | Annotate | Download (5.44 KB)
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.1.2-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 |
<packaging>bundle</packaging> |
18 |
<scm>
|
19 |
<connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-service/</connection> |
20 |
<developerConnection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-service/</developerConnection> |
21 |
<url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/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.apache.lucene</groupId> |
65 |
<artifactId>lucene-highlighter</artifactId> |
66 |
</dependency>
|
67 |
<dependency>
|
68 |
<!--
|
69 |
TODO temporarily added,
|
70 |
see http://dev.e-taxonomy.eu/trac/ticket/2031
|
71 |
Update Hibernate to latest stable 4.1.1
|
72 |
-->
|
73 |
<groupId>org.apache.lucene</groupId> |
74 |
<artifactId>lucene-grouping</artifactId> |
75 |
<version>3.2.0</version> |
76 |
</dependency>
|
77 |
<dependency>
|
78 |
<groupId>org.unitils</groupId> |
79 |
<artifactId>unitils-core</artifactId> |
80 |
<scope>test</scope> |
81 |
</dependency>
|
82 |
<dependency>
|
83 |
<groupId>org.unitils</groupId> |
84 |
<artifactId>unitils-database</artifactId> |
85 |
<scope>test</scope> |
86 |
</dependency>
|
87 |
<dependency>
|
88 |
<groupId>org.unitils</groupId> |
89 |
<artifactId>unitils-dbmaintainer</artifactId> |
90 |
<scope>test</scope> |
91 |
</dependency>
|
92 |
<dependency>
|
93 |
<groupId>org.unitils</groupId> |
94 |
<artifactId>unitils-dbunit</artifactId> |
95 |
<scope>test</scope> |
96 |
</dependency>
|
97 |
<dependency>
|
98 |
<groupId>org.unitils</groupId> |
99 |
<artifactId>unitils-easymock</artifactId> |
100 |
<scope>test</scope> |
101 |
</dependency>
|
102 |
<dependency>
|
103 |
<groupId>org.unitils</groupId> |
104 |
<artifactId>unitils-mock</artifactId> |
105 |
<scope>test</scope> |
106 |
</dependency>
|
107 |
<dependency>
|
108 |
<groupId>org.unitils</groupId> |
109 |
<artifactId>unitils-inject</artifactId> |
110 |
<scope>test</scope> |
111 |
</dependency>
|
112 |
<dependency>
|
113 |
<groupId>org.unitils</groupId> |
114 |
<artifactId>unitils-orm</artifactId> |
115 |
<scope>test</scope> |
116 |
</dependency>
|
117 |
<dependency>
|
118 |
<groupId>org.unitils</groupId> |
119 |
<artifactId>unitils-spring</artifactId> |
120 |
<scope>test</scope> |
121 |
</dependency>
|
122 |
<dependency>
|
123 |
<groupId>org.dbunit</groupId> |
124 |
<artifactId>dbunit</artifactId> |
125 |
</dependency>
|
126 |
<dependency>
|
127 |
<groupId>xmlunit</groupId> |
128 |
<artifactId>xmlunit</artifactId> |
129 |
</dependency>
|
130 |
<dependency>
|
131 |
<groupId>com.carrotsearch</groupId> |
132 |
<artifactId>junit-benchmarks</artifactId> |
133 |
<scope>test</scope> |
134 |
</dependency>
|
135 |
<dependency>
|
136 |
<groupId>org.springframework</groupId> |
137 |
<artifactId>org.springframework.test</artifactId> |
138 |
</dependency>
|
139 |
<dependency>
|
140 |
<groupId>xerces</groupId> |
141 |
<artifactId>xercesImpl</artifactId> |
142 |
</dependency>
|
143 |
<dependency>
|
144 |
<groupId>jaxen</groupId> |
145 |
<artifactId>jaxen</artifactId> |
146 |
</dependency>
|
147 |
<dependency>
|
148 |
<groupId>org.eclipse</groupId> |
149 |
<artifactId>osgi</artifactId> |
150 |
</dependency>
|
151 |
<dependency>
|
152 |
<groupId>org.springframework.security</groupId> |
153 |
<artifactId>spring-security-core</artifactId> |
154 |
</dependency>
|
155 |
<dependency>
|
156 |
<groupId>org.springframework.security</groupId> |
157 |
<artifactId>spring-security-config</artifactId> |
158 |
<version>3.0.5.RELEASE</version> |
159 |
</dependency>
|
160 |
<dependency>
|
161 |
<groupId>com.ibm.lsid</groupId> |
162 |
<artifactId>lsid-server</artifactId> |
163 |
</dependency>
|
164 |
<dependency>
|
165 |
<groupId>commons-lang</groupId> |
166 |
<artifactId>commons-lang</artifactId> |
167 |
</dependency>
|
168 |
</dependencies>
|
169 |
</project>
|
170 |
|