Updating develop poms back to pre merge state
[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 <!-- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" -->
4 <parent>
5 <groupId>eu.etaxonomy</groupId>
6 <artifactId>cdmlib-parent</artifactId>
7 <version>5.29.0-SNAPSHOT</version>
8 <relativePath>../pom.xml</relativePath>
9 </parent>
10
11 <modelVersion>4.0.0</modelVersion>
12 <artifactId>cdmlib-services</artifactId>
13 <name>CDM Services</name>
14 <description>EDIT CDM library services. The local API and basis for webservices too.</description>
15 <!-- cdmlib/services as osgi bundle? see https://dev.e-taxonomy.eu/redmine/issues/5302
16 and https://dev.e-taxonomy.eu/redmine/issues/6695 -->
17 <packaging>bundle</packaging>
18
19 <build>
20 <plugins>
21 <plugin>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>maven-bundle-plugin</artifactId>
24 <version>5.1.1</version> <!-- updated 2020-09 -->
25 <extensions>true</extensions>
26 <configuration>
27 <instructions>
28 <Export-Package>eu.etaxonomy.cdm.api.service</Export-Package>
29 <Bundle-SymbolicName>eu.etaxonomy.cdm.services</Bundle-SymbolicName>
30 <Bundle-Activator>eu.etaxonomy.cdm.services.impl.Activator</Bundle-Activator>
31 </instructions>
32 </configuration>
33 </plugin>
34 <plugin>
35 <groupId>org.apache.maven.plugins</groupId>
36 <artifactId>maven-surefire-plugin</artifactId>
37 <configuration>
38 <argLine>-Xms256m -Xmx512m
39 -Dfile.encoding=${project.build.sourceEncoding}</argLine>
40 </configuration>
41 </plugin>
42 </plugins>
43 </build>
44 <dependencies>
45 <dependency>
46 <!-- see comment on <packaging> above for why osgi is required -->
47 <groupId>org.osgi</groupId>
48 <artifactId>osgi.core</artifactId>
49 </dependency>
50 <dependency>
51 <groupId>eu.etaxonomy</groupId>
52 <artifactId>cdmlib-persistence</artifactId>
53 </dependency>
54 <dependency>
55 <groupId>eu.etaxonomy</groupId>
56 <artifactId>cdmlib-test</artifactId>
57 <scope>test</scope>
58 </dependency>
59 <dependency>
60 <groupId>org.apache.lucene</groupId>
61 <artifactId>lucene-highlighter</artifactId>
62 </dependency>
63 <dependency>
64 <groupId>org.apache.lucene</groupId>
65 <artifactId>lucene-grouping</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>org.apache.lucene</groupId>
69 <artifactId>lucene-join</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>org.apache.lucene</groupId>
73 <artifactId>lucene-suggest</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>xerces</groupId>
77 <artifactId>xercesImpl</artifactId>
78 <!-- <exclusions> -->
79 <!-- <exclusion> -->
80 <!-- <groupId>xml-apis</groupId> -->
81 <!-- <artifactId>xml-apis</artifactId> -->
82 <!-- </exclusion> -->
83 <!-- </exclusions> -->
84 </dependency>
85 <dependency>
86 <groupId>org.springframework.security</groupId>
87 <artifactId>spring-security-config</artifactId>
88 </dependency>
89 <!-- needed for JavaMailSender -->
90 <dependency>
91 <groupId>org.springframework</groupId>
92 <artifactId>spring-context-support</artifactId>
93 </dependency>
94 <dependency>
95 <groupId>javax.mail</groupId>
96 <artifactId>mailapi</artifactId>
97 </dependency>
98 <dependency>
99 <groupId>org.subethamail</groupId>
100 <artifactId>subethasmtp</artifactId>
101 <scope>test</scope>
102 </dependency>
103 <!-- =========================== -->
104 <dependency>
105 <groupId>com.ibm.lsid</groupId>
106 <artifactId>lsid-server</artifactId>
107 </dependency>
108 <dependency>
109 <groupId>org.cybertaxonomy.media</groupId>
110 <artifactId>media-info-model</artifactId>
111 </dependency>
112 <dependency>
113 <groupId>com.fasterxml.jackson.core</groupId>
114 <artifactId>jackson-databind</artifactId>
115 </dependency>
116 <dependency>
117 <groupId>com.github.dozermapper</groupId>
118 <artifactId>dozer-core</artifactId>
119 </dependency>
120 </dependencies>
121 </project>