]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.core/pom.xml
d8c556708591893196cc2838df263b53e0cc0736
[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"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <parent>
6 <groupId>org.argeo.slc</groupId>
7 <artifactId>runtime</artifactId>
8 <version>1.1.12-SNAPSHOT</version>
9 <relativePath>..</relativePath>
10 </parent>
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</groupId>
43 <artifactId>org.argeo.slc.specs</artifactId>
44 <version>1.1.12-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 <dependency>
53 <groupId>org.argeo.commons.security</groupId>
54 <artifactId>org.argeo.security.core</artifactId>
55 <version>${version.argeo-commons}</version>
56 </dependency>
57
58 <dependency>
59 <groupId>org.argeo.tp</groupId>
60 <artifactId>org.aspectj.runtime</artifactId>
61 </dependency>
62 <dependency>
63 <groupId>org.argeo.tp</groupId>
64 <artifactId>org.aspectj.weaver</artifactId>
65 </dependency>
66
67 <dependency>
68 <groupId>org.argeo.tp</groupId>
69 <artifactId>org.apache.commons.io</artifactId>
70 </dependency>
71 <dependency>
72 <groupId>org.argeo.tp</groupId>
73 <artifactId>org.apache.commons.exec</artifactId>
74 </dependency>
75 <dependency>
76 <groupId>org.argeo.tp</groupId>
77 <artifactId>org.apache.commons.cli</artifactId>
78 </dependency>
79
80 <dependency>
81 <groupId>org.argeo.tp</groupId>
82 <artifactId>slf4j.org.apache.commons.logging</artifactId>
83 </dependency>
84 <dependency>
85 <groupId>org.argeo.commons.base</groupId>
86 <artifactId>org.argeo.dep.log4j</artifactId>
87 <version>${version.argeo-commons}</version>
88 <type>pom</type>
89 </dependency>
90
91 <!-- Spring -->
92 <dependency>
93 <groupId>org.argeo.tp</groupId>
94 <artifactId>org.springframework.context</artifactId>
95 </dependency>
96 <dependency>
97 <groupId>org.argeo.tp</groupId>
98 <artifactId>org.springframework.core</artifactId>
99 </dependency>
100 <dependency>
101 <groupId>org.argeo.tp</groupId>
102 <artifactId>org.springframework.aop</artifactId>
103 </dependency>
104 <dependency>
105 <groupId>org.argeo.tp</groupId>
106 <artifactId>org.springframework.security.core</artifactId>
107 </dependency>
108
109 <dependency>
110 <groupId>org.argeo.tp</groupId>
111 <artifactId>net.sf.cglib</artifactId>
112 </dependency>
113
114 <dependency>
115 <groupId>org.argeo.tp</groupId>
116 <artifactId>org.apache.commons.codec</artifactId>
117 </dependency>
118
119 <!-- Test -->
120 <dependency>
121 <groupId>org.argeo.tp</groupId>
122 <artifactId>junit</artifactId>
123 <scope>test</scope>
124 </dependency>
125 </dependencies>
126 </project>