]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.core/pom.xml
Build working based on Commons v1.1.1
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / pom.xml
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?><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>1.1.1-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>1.1.1-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.argeo.tp</groupId>
53 <artifactId>org.aspectj.runtime</artifactId>
54 </dependency>
55 <dependency>
56 <groupId>org.argeo.tp</groupId>
57 <artifactId>org.aspectj.weaver</artifactId>
58 </dependency>
59
60 <dependency>
61 <groupId>org.argeo.tp</groupId>
62 <artifactId>org.apache.commons.io</artifactId>
63 </dependency>
64 <dependency>
65 <groupId>org.argeo.tp</groupId>
66 <artifactId>org.apache.commons.exec</artifactId>
67 </dependency>
68
69 <dependency>
70 <groupId>org.argeo.tp</groupId>
71 <artifactId>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.argeo.tp</groupId>
83 <artifactId>org.springframework.context</artifactId>
84 </dependency>
85 <dependency>
86 <groupId>org.argeo.tp</groupId>
87 <artifactId>org.springframework.core</artifactId>
88 </dependency>
89 <dependency>
90 <groupId>org.argeo.tp</groupId>
91 <artifactId>org.springframework.aop</artifactId>
92 </dependency>
93 <dependency>
94 <groupId>org.argeo.tp</groupId>
95 <artifactId>org.springframework.security.core</artifactId>
96 </dependency>
97
98 <dependency>
99 <groupId>org.argeo.tp</groupId>
100 <artifactId>net.sf.cglib</artifactId>
101 </dependency>
102
103 <dependency>
104 <groupId>org.argeo.tp</groupId>
105 <artifactId>org.apache.commons.codec</artifactId>
106 </dependency>
107
108 <!-- Test -->
109 <dependency>
110 <groupId>org.argeo.tp</groupId>
111 <artifactId>junit</artifactId>
112 <scope>test</scope>
113 </dependency>
114 </dependencies>
115 </project>