ref #9607 adding media-info-model as dependency
[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"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 <!-- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" -->
6 <parent>
7 <groupId>eu.etaxonomy</groupId>
8 <artifactId>cdmlib-parent</artifactId>
9 <version>5.23.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 <!-- cdmlib/services as osgi bundle? see https://dev.e-taxonomy.eu/redmine/issues/5302
18 and https://dev.e-taxonomy.eu/redmine/issues/6695 -->
19 <packaging>bundle</packaging>
20
21 <build>
22 <plugins>
23 <plugin>
24 <groupId>org.apache.felix</groupId>
25 <artifactId>maven-bundle-plugin</artifactId>
26 <version>5.1.1</version> <!-- updated 2020-09 -->
27 <extensions>true</extensions>
28 <configuration>
29 <instructions>
30 <Export-Package>eu.etaxonomy.cdm.api.service</Export-Package>
31 <Bundle-SymbolicName>eu.etaxonomy.cdm.services</Bundle-SymbolicName>
32 <Bundle-Activator>eu.etaxonomy.cdm.services.impl.Activator</Bundle-Activator>
33 </instructions>
34 </configuration>
35 </plugin>
36 <plugin>
37 <groupId>org.apache.maven.plugins</groupId>
38 <artifactId>maven-surefire-plugin</artifactId>
39 <configuration>
40 <argLine>-Xms256m -Xmx512m
41 -Dfile.encoding=${project.build.sourceEncoding}</argLine>
42 </configuration>
43 </plugin>
44 </plugins>
45 </build>
46 <dependencies>
47 <dependency>
48 <!-- see comment on <packaging> above for why osgi is required -->
49 <groupId>org.osgi</groupId>
50 <artifactId>osgi.core</artifactId>
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-test</artifactId>
59 <scope>test</scope>
60 </dependency>
61 <dependency>
62 <groupId>org.apache.lucene</groupId>
63 <artifactId>lucene-highlighter</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>org.apache.lucene</groupId>
67 <artifactId>lucene-grouping</artifactId>
68 </dependency>
69 <dependency>
70 <groupId>org.apache.lucene</groupId>
71 <artifactId>lucene-join</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>org.apache.lucene</groupId>
75 <artifactId>lucene-suggest</artifactId>
76 </dependency>
77 <dependency>
78 <groupId>xerces</groupId>
79 <artifactId>xercesImpl</artifactId>
80 <!-- <exclusions> -->
81 <!-- <exclusion> -->
82 <!-- <groupId>xml-apis</groupId> -->
83 <!-- <artifactId>xml-apis</artifactId> -->
84 <!-- </exclusion> -->
85 <!-- </exclusions> -->
86 </dependency>
87 <dependency>
88 <groupId>org.springframework.security</groupId>
89 <artifactId>spring-security-config</artifactId>
90 </dependency>
91 <dependency>
92 <groupId>com.ibm.lsid</groupId>
93 <artifactId>lsid-server</artifactId>
94 </dependency>
95 <dependency>
96 <groupId>org.cybertaxonomy.media</groupId>
97 <artifactId>media-info-model</artifactId>
98 </dependency>
99 <dependency>
100 <groupId>com.fasterxml.jackson.core</groupId>
101 <artifactId>jackson-databind</artifactId>
102 </dependency>
103 <dependency>
104 <groupId>com.github.dozermapper</groupId>
105 <artifactId>dozer-core</artifactId>
106 </dependency>
107 </dependencies>
108 </project>