Project

General

Profile

Download (3.36 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
  <!--
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>5.19.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
  <!-- 
18
        cdmlib/services as osgi bundle?
19
       see https://dev.e-taxonomy.eu/redmine/issues/5302 and https://dev.e-taxonomy.eu/redmine/issues/6695 
20
  -->
21
  <packaging>bundle</packaging>
22

    
23
  <build>
24
    <plugins>
25
      <plugin>
26
        <groupId>org.apache.felix</groupId>
27
        <artifactId>maven-bundle-plugin</artifactId>
28
        <version>5.1.1</version>   <!-- updated 2020-09 -->
29
        <extensions>true</extensions>
30
        <configuration>
31
          <instructions>
32
            <Export-Package>eu.etaxonomy.cdm.api.service</Export-Package>
33
            <Bundle-SymbolicName>eu.etaxonomy.cdm.services</Bundle-SymbolicName>
34
            <Bundle-Activator>eu.etaxonomy.cdm.services.impl.Activator</Bundle-Activator>
35
          </instructions>
36
        </configuration>
37
      </plugin>
38
      <plugin>
39
        <groupId>org.apache.maven.plugins</groupId>
40
        <artifactId>maven-surefire-plugin</artifactId>
41
        <configuration>
42
          <argLine>-Xms256m -Xmx512m -Dfile.encoding=${project.build.sourceEncoding}</argLine>
43
        </configuration>
44
      </plugin>
45
   </plugins>
46
  </build>
47
  <dependencies>
48
    <dependency>
49
        <!-- see comment on <packaging> above for why osgi is required -->
50
        <groupId>org.osgi</groupId>
51
        <artifactId>osgi.core</artifactId>
52
    </dependency>
53
    <dependency>
54
      <groupId>eu.etaxonomy</groupId>
55
      <artifactId>cdmlib-persistence</artifactId>
56
    </dependency>
57
    <dependency>
58
      <groupId>eu.etaxonomy</groupId>
59
      <artifactId>cdmlib-test</artifactId>
60
      <scope>test</scope>
61
    </dependency>
62
    <dependency>
63
       <groupId>org.apache.lucene</groupId>
64
       <artifactId>lucene-highlighter</artifactId>
65
    </dependency>
66
    <dependency>
67
       <groupId>org.apache.lucene</groupId>
68
       <artifactId>lucene-grouping</artifactId>
69
    </dependency>
70
    <dependency>
71
       <groupId>org.apache.lucene</groupId>
72
       <artifactId>lucene-join</artifactId>
73
    </dependency>
74
    <dependency>
75
       <groupId>org.apache.lucene</groupId>
76
       <artifactId>lucene-suggest</artifactId>
77
    </dependency>
78
    <dependency>
79
      <groupId>xerces</groupId>
80
      <artifactId>xercesImpl</artifactId>
81
<!--       <exclusions> -->
82
<!--         <exclusion> -->
83
<!--           <groupId>xml-apis</groupId> -->
84
<!--           <artifactId>xml-apis</artifactId> -->
85
<!--         </exclusion> -->
86
<!--       </exclusions> -->
87
    </dependency>
88
    <dependency>
89
        <groupId>org.springframework.security</groupId>
90
        <artifactId>spring-security-config</artifactId>
91
    </dependency>
92
    <dependency>
93
      <groupId>com.ibm.lsid</groupId>
94
      <artifactId>lsid-server</artifactId>
95
    </dependency>
96
  </dependencies>
97
</project>
(3-3/3)