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