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