]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.core/pom.xml
Adapt to changes in Argeo Commons
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / pom.xml
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2 <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">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.slc</groupId>
6 <artifactId>runtime</artifactId>
7 <version>1.1.3-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>
26 org.w3c.dom;version="0.0.0",
27 org.dbunit;resolution:="optional",
28 org.dbunit.database;resolution:="optional",
29 org.dbunit.dataset;resolution:="optional",
30 org.dbunit.dataset.xml;resolution:="optional",
31 org.dbunit.operation;resolution:="optional",
32 junit.framework;resolution:="optional",
33 *
34 </Import-Package>
35 </instructions>
36 </configuration>
37 </plugin>
38 </plugins>
39 </build>
40 <dependencies>
41 <dependency>
42 <groupId>org.argeo.slc.runtime</groupId>
43 <artifactId>org.argeo.slc.specs</artifactId>
44 <version>1.1.3-SNAPSHOT</version>
45 </dependency>
46
47 <dependency>
48 <groupId>org.argeo.commons.base</groupId>
49 <artifactId>org.argeo.util</artifactId>
50 <version>${version.argeo-commons}</version>
51 </dependency>
52
53 <dependency>
54 <groupId>org.argeo.tp</groupId>
55 <artifactId>org.aspectj.runtime</artifactId>
56 </dependency>
57 <dependency>
58 <groupId>org.argeo.tp</groupId>
59 <artifactId>org.aspectj.weaver</artifactId>
60 </dependency>
61
62 <dependency>
63 <groupId>org.argeo.tp</groupId>
64 <artifactId>org.apache.commons.io</artifactId>
65 </dependency>
66 <dependency>
67 <groupId>org.argeo.tp</groupId>
68 <artifactId>org.apache.commons.exec</artifactId>
69 </dependency>
70
71 <dependency>
72 <groupId>org.argeo.tp</groupId>
73 <artifactId>slf4j.org.apache.commons.logging</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>org.argeo.commons.base</groupId>
77 <artifactId>org.argeo.dep.log4j</artifactId>
78 <version>${version.argeo-commons}</version>
79 <type>pom</type>
80 </dependency>
81
82 <!-- Spring -->
83 <dependency>
84 <groupId>org.argeo.tp</groupId>
85 <artifactId>org.springframework.context</artifactId>
86 </dependency>
87 <dependency>
88 <groupId>org.argeo.tp</groupId>
89 <artifactId>org.springframework.core</artifactId>
90 </dependency>
91 <dependency>
92 <groupId>org.argeo.tp</groupId>
93 <artifactId>org.springframework.aop</artifactId>
94 </dependency>
95 <dependency>
96 <groupId>org.argeo.tp</groupId>
97 <artifactId>org.springframework.security.core</artifactId>
98 </dependency>
99
100 <dependency>
101 <groupId>org.argeo.tp</groupId>
102 <artifactId>net.sf.cglib</artifactId>
103 </dependency>
104
105 <dependency>
106 <groupId>org.argeo.tp</groupId>
107 <artifactId>org.apache.commons.codec</artifactId>
108 </dependency>
109
110 <!-- Test -->
111 <dependency>
112 <groupId>org.argeo.tp</groupId>
113 <artifactId>junit</artifactId>
114 <scope>test</scope>
115 </dependency>
116 </dependencies>
117 </project>