Project

General

Profile

Download (4.44 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>4.4.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
  <packaging>bundle</packaging>
18
  <scm>
19
    <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-service/</connection>
20
    <developerConnection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-service/</developerConnection>
21
    <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlib-service/</url>
22
  </scm>
23
  <build>
24
    <plugins>
25
      <plugin>
26
        <groupId>org.apache.felix</groupId>
27
        <artifactId>maven-bundle-plugin</artifactId>
28
        <version>2.3.6</version>
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</argLine>
43
        </configuration>
44
      </plugin>
45
   </plugins>
46
  </build>
47
  <dependencies>
48
    <dependency>
49
      <groupId>org.apache.felix</groupId>
50
      <artifactId>org.osgi.core</artifactId>
51
      <version>1.0.0</version>
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>eu.etaxonomy</groupId> -->
64
<!--       <artifactId>cdmlib-persistence</artifactId> -->
65
<!--       <type>test-jar</type> -->
66
<!--       <scope>test</scope> -->
67
<!--       <version>${project.version}</version> -->
68
<!--      </dependency> -->
69
    <dependency>
70
       <groupId>org.apache.lucene</groupId>
71
       <artifactId>lucene-highlighter</artifactId>
72
    </dependency>
73
    <dependency>
74
       <groupId>org.apache.lucene</groupId>
75
       <artifactId>lucene-grouping</artifactId>
76
    </dependency>
77
    <dependency>
78
       <groupId>org.apache.lucene</groupId>
79
       <artifactId>lucene-join</artifactId>
80
    </dependency>
81
    <dependency>
82
       <groupId>org.apache.lucene</groupId>
83
       <artifactId>lucene-suggest</artifactId>
84
    </dependency>
85
<!--     <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
    <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
    <dependency>
113
        <groupId>org.springframework.security</groupId>
114
        <artifactId>spring-security-config</artifactId>
115
    </dependency>
116
    <dependency>
117
      <groupId>com.ibm.lsid</groupId>
118
      <artifactId>lsid-server</artifactId>
119
    </dependency>
120
    <dependency>
121
      <groupId>commons-lang</groupId>
122
      <artifactId>commons-lang</artifactId>
123
    </dependency>
124
    <dependency>
125
	  <groupId>net.sf.ehcache</groupId>
126
	  <artifactId>ehcache-core</artifactId>	  
127
	</dependency>
128
  </dependencies>
129
</project>
130

    
(3-3/3)