]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.core/pom.xml
Add missing build.properties
[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.argeo.commons.basic</groupId>
48 <artifactId>org.argeo.basic.nodeps</artifactId>
49 <version>${version.argeo-commons}</version>
50 </dependency>
51
52 <dependency>
53 <groupId>org.aspectj</groupId>
54 <artifactId>com.springsource.org.aspectj.runtime</artifactId>
55 </dependency>
56 <dependency>
57 <groupId>org.aspectj</groupId>
58 <artifactId>com.springsource.org.aspectj.weaver</artifactId>
59 </dependency>
60
61 <dependency>
62 <groupId>org.apache.commons</groupId>
63 <artifactId>com.springsource.org.apache.commons.io</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>org.argeo.dep.osgi</groupId>
67 <artifactId>org.argeo.dep.osgi.commons.exec</artifactId>
68 </dependency>
69
70 <dependency>
71 <groupId>org.slf4j</groupId>
72 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
73 </dependency>
74 <dependency>
75 <groupId>org.argeo.commons.basic</groupId>
76 <artifactId>org.argeo.basic.dep.log4j</artifactId>
77 <version>${version.argeo-commons}</version>
78 <type>pom</type>
79 </dependency>
80
81 <!-- Spring -->
82 <dependency>
83 <groupId>org.springframework</groupId>
84 <artifactId>org.springframework.context</artifactId>
85 </dependency>
86 <dependency>
87 <groupId>org.springframework.security</groupId>
88 <artifactId>org.springframework.security.core</artifactId>
89 </dependency>
90
91 <dependency>
92 <groupId>net.sourceforge.cglib</groupId>
93 <artifactId>com.springsource.net.sf.cglib</artifactId>
94 </dependency>
95
96 <dependency>
97 <groupId>org.apache.commons</groupId>
98 <artifactId>com.springsource.org.apache.commons.codec</artifactId>
99 </dependency>
100
101 <!-- Test -->
102 <dependency>
103 <groupId>org.junit</groupId>
104 <artifactId>com.springsource.junit</artifactId>
105 <scope>test</scope>
106 </dependency>
107 </dependencies>
108 </project>