Project

General

Profile

Download (5 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.32.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.4</version>   <!-- updated 2022-01 -->
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>org.apache.lucene</groupId>
77
      <artifactId>lucene-sandbox</artifactId>
78
    </dependency>
79
    <dependency>
80
      <groupId>xerces</groupId>
81
      <artifactId>xercesImpl</artifactId>
82
      <!-- <exclusions> -->
83
      <!-- <exclusion> -->
84
      <!-- <groupId>xml-apis</groupId> -->
85
      <!-- <artifactId>xml-apis</artifactId> -->
86
      <!-- </exclusion> -->
87
      <!-- </exclusions> -->
88
    </dependency>
89
    <dependency>
90
      <groupId>org.springframework.security</groupId>
91
      <artifactId>spring-security-config</artifactId>
92
    </dependency>
93
    <!-- needed for JavaMailSender -->
94
    <dependency>
95
        <groupId>org.springframework</groupId>
96
        <artifactId>spring-context-support</artifactId>
97
    </dependency>
98
    <dependency>  
99
        <groupId>net.sf.ehcache</groupId>
100
        <artifactId>ehcache</artifactId>
101
    </dependency>
102
    <dependency>
103
        <groupId>com.sun.mail</groupId>
104
        <!-- is now jakarate.mail, but wait with update until spring-context-support upgrades -->
105
        <artifactId>javax.mail</artifactId>
106
        <exclusions>
107
            <exclusion>
108
                <groupId>javax.activation</groupId>
109
                <artifactId>activation</artifactId>
110
            </exclusion>
111
        </exclusions>
112
    </dependency>
113
    <dependency>
114
        <groupId>org.subethamail</groupId>
115
        <artifactId>subethasmtp</artifactId>
116
        <scope>test</scope>
117
    </dependency>    
118
    <!-- =========================== -->
119
    <dependency>
120
      <groupId>com.ibm.lsid</groupId>
121
      <artifactId>lsid-server</artifactId>
122
    </dependency>
123
    <dependency>
124
      <groupId>org.cybertaxonomy.media</groupId>
125
      <artifactId>media-info-model</artifactId>
126
    </dependency>
127
    <dependency>
128
        <groupId>com.fasterxml.jackson.core</groupId>
129
        <artifactId>jackson-databind</artifactId>
130
    </dependency>
131
    <dependency>
132
      <!-- MediaInfoServiceReader uses dozer -->
133
      <groupId>com.github.dozermapper</groupId>
134
      <artifactId>dozer-core</artifactId>
135
    </dependency>
136
    <dependency>
137
        <groupId>com.google.guava</groupId>
138
        <artifactId>guava</artifactId>
139
    </dependency>
140
    <dependency>
141
        <groupId>org.apache.commons</groupId>
142
        <artifactId>commons-text</artifactId>
143
    </dependency>
144
  </dependencies>
145
</project>
(3-3/3)