]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.core/pom.xml
e69343260e92789d860665700184f77795a01cfe
[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.10-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
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>
25 org.w3c.dom;version="0.0.0",
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 *
33 </Import-Package>
34 </instructions>
35 </configuration>
36 </plugin>
37 </plugins>
38 </build>
39 <dependencies>
40 <dependency>
41 <groupId>org.argeo.slc</groupId>
42 <artifactId>org.argeo.slc.specs</artifactId>
43 <version>1.1.10-SNAPSHOT</version>
44 </dependency>
45
46 <dependency>
47 <groupId>org.argeo.commons.base</groupId>
48 <artifactId>org.argeo.util</artifactId>
49 <version>${version.argeo-commons}</version>
50 </dependency>
51
52 <dependency>
53 <groupId>org.argeo.tp</groupId>
54 <artifactId>org.aspectj.runtime</artifactId>
55 </dependency>
56 <dependency>
57 <groupId>org.argeo.tp</groupId>
58 <artifactId>org.aspectj.weaver</artifactId>
59 </dependency>
60
61 <dependency>
62 <groupId>org.argeo.tp</groupId>
63 <artifactId>org.apache.commons.io</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>org.argeo.tp</groupId>
67 <artifactId>org.apache.commons.exec</artifactId>
68 </dependency>
69
70 <dependency>
71 <groupId>org.argeo.tp</groupId>
72 <artifactId>slf4j.org.apache.commons.logging</artifactId>
73 </dependency>
74 <dependency>
75 <groupId>org.argeo.commons.base</groupId>
76 <artifactId>org.argeo.dep.log4j</artifactId>
77 <version>${version.argeo-commons}</version>
78 <type>pom</type>
79 </dependency>
80
81 <!-- Spring -->
82 <dependency>
83 <groupId>org.argeo.tp</groupId>
84 <artifactId>org.springframework.context</artifactId>
85 </dependency>
86 <dependency>
87 <groupId>org.argeo.tp</groupId>
88 <artifactId>org.springframework.core</artifactId>
89 </dependency>
90 <dependency>
91 <groupId>org.argeo.tp</groupId>
92 <artifactId>org.springframework.aop</artifactId>
93 </dependency>
94 <dependency>
95 <groupId>org.argeo.tp</groupId>
96 <artifactId>org.springframework.security.core</artifactId>
97 </dependency>
98
99 <dependency>
100 <groupId>org.argeo.tp</groupId>
101 <artifactId>net.sf.cglib</artifactId>
102 </dependency>
103
104 <dependency>
105 <groupId>org.argeo.tp</groupId>
106 <artifactId>org.apache.commons.codec</artifactId>
107 </dependency>
108
109 <!-- Test -->
110 <dependency>
111 <groupId>org.argeo.tp</groupId>
112 <artifactId>junit</artifactId>
113 <scope>test</scope>
114 </dependency>
115 </dependencies>
116 </project>