]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.core/pom.xml
Introduce Migration 1.3
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / pom.xml
1 <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">
2 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.argeo.slc</groupId>
5 <artifactId>runtime</artifactId>
6 <version>0.13.2-SNAPSHOT</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <groupId>org.argeo.slc.runtime</groupId>
10 <artifactId>org.argeo.slc.core</artifactId>
11 <name>SLC Core</name>
12 <description>Basic implementations of SLC Specifications</description>
13 <build>
14 <outputDirectory>bin</outputDirectory>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.felix</groupId>
18 <artifactId>maven-bundle-plugin</artifactId>
19 <configuration>
20 <instructions>
21 <Export-Package>
22 org.argeo.slc.*,org.argeo.slc.core.test.spring
23 </Export-Package>
24 <Import-Package>*,org.apache.commons.logging;version="1.1",
25 org.dbunit;resolution:="optional",
26 org.dbunit.database;resolution:="optional",
27 org.dbunit.dataset;resolution:="optional",
28 org.dbunit.dataset.xml;resolution:="optional",
29 org.dbunit.operation;resolution:="optional",
30 junit.framework;resolution:="optional",
31 org.springframework.context.support;resolution:=optional
32 </Import-Package>
33 </instructions>
34 </configuration>
35 </plugin>
36 </plugins>
37 </build>
38 <dependencies>
39 <dependency>
40 <groupId>org.argeo.slc.runtime</groupId>
41 <artifactId>org.argeo.slc.specs</artifactId>
42 <version>0.13.2-SNAPSHOT</version>
43 </dependency>
44
45 <dependency>
46 <groupId>org.argeo.commons.basic</groupId>
47 <artifactId>org.argeo.basic.nodeps</artifactId>
48 <version>${version.argeo-commons}</version>
49 </dependency>
50
51 <dependency>
52 <groupId>org.aspectj</groupId>
53 <artifactId>com.springsource.org.aspectj.runtime</artifactId>
54 </dependency>
55 <dependency>
56 <groupId>org.aspectj</groupId>
57 <artifactId>com.springsource.org.aspectj.weaver</artifactId>
58 </dependency>
59
60 <dependency>
61 <groupId>org.apache.commons</groupId>
62 <artifactId>com.springsource.org.apache.commons.io</artifactId>
63 </dependency>
64 <dependency>
65 <groupId>org.argeo.dep.osgi</groupId>
66 <artifactId>org.argeo.dep.osgi.commons.exec</artifactId>
67 </dependency>
68
69 <dependency>
70 <groupId>org.slf4j</groupId>
71 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>org.argeo.commons.basic</groupId>
75 <artifactId>org.argeo.basic.dep.log4j</artifactId>
76 <version>${version.argeo-commons}</version>
77 <type>pom</type>
78 </dependency>
79
80 <!-- Spring -->
81 <dependency>
82 <groupId>org.springframework</groupId>
83 <artifactId>org.springframework.context</artifactId>
84 </dependency>
85 <dependency>
86 <groupId>org.springframework.security</groupId>
87 <artifactId>org.springframework.security.core</artifactId>
88 </dependency>
89
90 <dependency>
91 <groupId>net.sourceforge.cglib</groupId>
92 <artifactId>com.springsource.net.sf.cglib</artifactId>
93 </dependency>
94
95 <dependency>
96 <groupId>org.apache.commons</groupId>
97 <artifactId>com.springsource.org.apache.commons.codec</artifactId>
98 </dependency>
99
100 <!-- Test -->
101 <dependency>
102 <groupId>org.junit</groupId>
103 <artifactId>com.springsource.junit</artifactId>
104 <scope>test</scope>
105 </dependency>
106 </dependencies>
107 </project>