Project

General

Profile

Download (4.3 KB) Statistics
| Branch: | Tag: | Revision:
1 5d8c2bce Andreas Kohlbecker
<?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 397763df Andreas Kohlbecker
  <!--
4 5d8c2bce Andreas Kohlbecker
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
5
   -->
6 397763df Andreas Kohlbecker
  <parent>
7
    <groupId>eu.etaxonomy</groupId>
8
    <artifactId>cdmlib-parent</artifactId>
9 9b0b5ecb jenkins
    <version>5.5.0-SNAPSHOT</version>
10 397763df Andreas Kohlbecker
    <relativePath>../pom.xml</relativePath>
11
  </parent>
12 5d8c2bce Andreas Kohlbecker
13
  <modelVersion>4.0.0</modelVersion>
14 afbed711 Cherian Mathew
  <artifactId>cdmlib-services</artifactId>    
15 5d8c2bce Andreas Kohlbecker
  <name>CDM Services</name>
16 892efc69 Andreas Kohlbecker
  <description>EDIT CDM library services. The local API and basis for webservices too.</description>
17 db71ee04 Andreas Kohlbecker
  <!-- 
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 3a2a1682 Andreas Kohlbecker
23 5d8c2bce Andreas Kohlbecker
  <build>
24 892efc69 Andreas Kohlbecker
    <plugins>
25 db71ee04 Andreas Kohlbecker
      <plugin>
26
        <groupId>org.apache.felix</groupId>
27
        <artifactId>maven-bundle-plugin</artifactId>
28 f037ce2a Andreas Kohlbecker
        <version>3.3.0</version>
29 db71ee04 Andreas Kohlbecker
        <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 5d8c2bce Andreas Kohlbecker
      <plugin>
39
        <groupId>org.apache.maven.plugins</groupId>
40
        <artifactId>maven-surefire-plugin</artifactId>
41
        <configuration>
42
          <argLine>-Xms256m -Xmx512m</argLine>
43
        </configuration>
44
      </plugin>
45
   </plugins>
46
  </build>
47 892efc69 Andreas Kohlbecker
  <dependencies>
48 db71ee04 Andreas Kohlbecker
    <dependency>
49
      <groupId>org.apache.felix</groupId>
50
      <artifactId>org.osgi.core</artifactId>
51
      <version>1.0.0</version>
52
    </dependency>
53 397763df Andreas Kohlbecker
    <dependency>
54
      <groupId>eu.etaxonomy</groupId>
55
      <artifactId>cdmlib-persistence</artifactId>
56
    </dependency>
57
    <dependency>
58
      <groupId>eu.etaxonomy</groupId>
59 398bcf3e Andreas Müller
      <artifactId>cdmlib-test</artifactId>
60 397763df Andreas Kohlbecker
      <scope>test</scope>
61
    </dependency>
62 3dd6c00e Andreas Müller
<!--     <dependency> -->
63
<!--       <groupId>eu.etaxonomy</groupId> -->
64 398bcf3e Andreas Müller
<!--       <artifactId>cdmlib-persistence</artifactId> -->
65
<!--       <type>test-jar</type> -->
66 3dd6c00e Andreas Müller
<!--       <scope>test</scope> -->
67 398bcf3e Andreas Müller
<!--       <version>${project.version}</version> -->
68
<!--      </dependency> -->
69 8c6160ef Andreas Kohlbecker
    <dependency>
70
       <groupId>org.apache.lucene</groupId>
71
       <artifactId>lucene-highlighter</artifactId>
72
    </dependency>
73 9fd731d4 Andreas Kohlbecker
    <dependency>
74
       <groupId>org.apache.lucene</groupId>
75
       <artifactId>lucene-grouping</artifactId>
76 397763df Andreas Kohlbecker
    </dependency>
77 810b7215 Andreas Müller
    <dependency>
78
       <groupId>org.apache.lucene</groupId>
79
       <artifactId>lucene-join</artifactId>
80
    </dependency>
81 397763df Andreas Kohlbecker
    <dependency>
82 3dd6c00e Andreas Müller
       <groupId>org.apache.lucene</groupId>
83
       <artifactId>lucene-suggest</artifactId>
84 b2639c6c Andreas Müller
    </dependency>
85 398bcf3e Andreas Müller
<!--     <dependency> -->
86
<!--       <groupId>org.unitils</groupId> -->
87
<!--       <artifactId>unitils-dbunit</artifactId> -->
88
<!--       <scope>test</scope> -->
89
<!--     </dependency> -->
90
<!--     <dependency> -->
91
<!--       <groupId>org.unitils</groupId> -->
92
<!--       <artifactId>unitils-spring</artifactId> -->
93
<!--       <scope>test</scope> -->
94
<!--     </dependency> -->
95
<!--     <dependency> -->
96
<!--       <groupId>xmlunit</groupId> -->
97
<!--       <artifactId>xmlunit</artifactId> -->
98
<!--        <scope>test</scope> -->
99
<!--     </dependency> -->
100 397763df Andreas Kohlbecker
    <dependency>
101
      <groupId>xerces</groupId>
102
      <artifactId>xercesImpl</artifactId>
103
    </dependency>
104
    <dependency>
105
      <groupId>jaxen</groupId>
106
      <artifactId>jaxen</artifactId>
107
    </dependency>
108
    <dependency>
109
      <groupId>org.eclipse</groupId>
110
      <artifactId>osgi</artifactId>
111
    </dependency>
112 edf555c9 Katja Luther
    <dependency>
113 1d6bc341 Katja Luther
        <groupId>org.springframework.security</groupId>
114
        <artifactId>spring-security-config</artifactId>
115 5d8c2bce Andreas Kohlbecker
    </dependency>
116
    <dependency>
117
      <groupId>com.ibm.lsid</groupId>
118
      <artifactId>lsid-server</artifactId>
119 397763df Andreas Kohlbecker
    </dependency>
120
    <dependency>
121
      <groupId>commons-lang</groupId>
122
      <artifactId>commons-lang</artifactId>
123
    </dependency>
124 93f50b5e Cherian Mathew
    <dependency>
125
	  <groupId>net.sf.ehcache</groupId>
126 2b16ef08 Cherian Mathew
	  <artifactId>ehcache-core</artifactId>	  
127 93f50b5e Cherian Mathew
	</dependency>
128 5d8c2bce Andreas Kohlbecker
  </dependencies>
129
</project>