Project

General

Profile

Download (3.43 KB) Statistics
| Branch: | Tag: | Revision:
1
<?xml version="1.0" encoding="UTF-8"?>
2
<project xmlns="http://maven.apache.org/POM/4.0.0" 
3
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4
  <!-- 
5
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"
6
   -->
7
	<parent>
8
		<groupId>eu.etaxonomy</groupId>
9
		<artifactId>cdmlib-parent</artifactId>
10
		<version>3.0</version>
11
		<relativePath>pom.xml</relativePath>
12
	</parent>
13

    
14
  <modelVersion>4.0.0</modelVersion>
15
  <artifactId>cdmlib-services</artifactId>
16
  <name>CDM Services</name>
17
  <description>EDIT CDM library services. The local API and basis for webservices too.</description>
18
  <packaging>bundle</packaging>
19
  <scm>
20
    <connection>scm:svn:http://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-service/</connection>
21
    <developerConnection>scm:svn:https://dev.e-taxonomy.eu/svn/trunk/cdmlib/cdmlib-service/</developerConnection>
22
    <url>http://dev.e-taxonomy.eu/trac/browser/trunk/cdmlib/cdmlib-service/</url>
23
  </scm>
24
  <build>
25
    <plugins>
26
      <plugin>
27
        <groupId>org.apache.felix</groupId>
28
        <artifactId>maven-bundle-plugin</artifactId>
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-persistence</artifactId>
60
  		<type>test-jar</type>
61
  		<scope>test</scope>
62
  		<version>${parent.version}</version>
63
  	</dependency>
64
    <dependency>
65
        <groupId>org.unitils</groupId>
66
        <artifactId>unitils</artifactId>
67
    </dependency>
68
    <dependency>
69
      <groupId>org.dbunit</groupId>
70
      <artifactId>dbunit</artifactId>
71
    </dependency>
72
    <dependency>
73
      <groupId>xmlunit</groupId>
74
      <artifactId>xmlunit</artifactId>
75
    </dependency>
76
  	<dependency>
77
  		<groupId>org.springframework</groupId>
78
  		<artifactId>org.springframework.test</artifactId>
79
  	</dependency>
80
  	<dependency>
81
  		<groupId>xerces</groupId>
82
  		<artifactId>xercesImpl</artifactId>
83
  	</dependency>
84
  	<dependency>
85
  		<groupId>jaxen</groupId>
86
  		<artifactId>jaxen</artifactId>
87
  	</dependency>
88
  	<dependency>
89
  		<groupId>org.eclipse</groupId>
90
  		<artifactId>osgi</artifactId>
91
  	</dependency>
92
  	<dependency>
93
    	<groupId>org.springframework.security</groupId>
94
    	<artifactId>spring-security-core</artifactId>
95
    </dependency>
96
    <dependency>
97
      <groupId>com.ibm.lsid</groupId>
98
      <artifactId>lsid-server</artifactId>
99
  	</dependency>
100
  	<dependency>
101
  		<groupId>commons-lang</groupId>
102
  		<artifactId>commons-lang</artifactId>
103
  	</dependency>
104
  </dependencies>
105
</project>
106

    
(3-3/3)