Project

General

Profile

Download (3.7 KB) Statistics
| Branch: | Tag: | Revision:
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.24.0</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
    <dependency>
90
      <groupId>com.ibm.lsid</groupId>
91
      <artifactId>lsid-server</artifactId>
92
    </dependency>
93
    <dependency>
94
      <groupId>org.cybertaxonomy.media</groupId>
95
      <artifactId>media-info-model</artifactId>
96
    </dependency>
97
    <dependency>
98
        <groupId>com.fasterxml.jackson.core</groupId>
99
        <artifactId>jackson-databind</artifactId>
100
    </dependency>
101
    <dependency>
102
      <groupId>com.github.dozermapper</groupId>
103
      <artifactId>dozer-core</artifactId>
104
    </dependency>
105
  </dependencies>
106
</project>
(3-3/3)