]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.core/pom.xml
Fix SLC build with OSGi check
[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.1-SNAPSHOT</version>
9 <relativePath>..</relativePath>
10 </parent>
11 <groupId>org.argeo.slc.runtime</groupId>
12 <artifactId>org.argeo.slc.core</artifactId>
13 <name>SLC Core</name>
14 <description>Basic implementations of SLC Specifications</description>
15 <build>
16 <outputDirectory>bin</outputDirectory>
17 <plugins>
18 <plugin>
19 <groupId>org.apache.felix</groupId>
20 <artifactId>maven-bundle-plugin</artifactId>
21 <configuration>
22 <instructions>
23 <Export-Package>
24 org.argeo.slc.*,org.argeo.slc.core.test.spring
25 </Export-Package>
26 <Import-Package>
27 org.w3c.dom;version="0.0.0",
28 org.dbunit;resolution:="optional",
29 org.dbunit.database;resolution:="optional",
30 org.dbunit.dataset;resolution:="optional",
31 org.dbunit.dataset.xml;resolution:="optional",
32 org.dbunit.operation;resolution:="optional",
33 junit.framework;resolution:="optional",
34 *
35 </Import-Package>
36 </instructions>
37 </configuration>
38 </plugin>
39 </plugins>
40 </build>
41 <dependencies>
42 <dependency>
43 <groupId>org.argeo.slc.runtime</groupId>
44 <artifactId>org.argeo.slc.specs</artifactId>
45 <version>1.1.1-SNAPSHOT</version>
46 </dependency>
47
48 <dependency>
49 <groupId>org.argeo.commons.basic</groupId>
50 <artifactId>org.argeo.basic.nodeps</artifactId>
51 <version>${version.argeo-commons}</version>
52 </dependency>
53
54 <dependency>
55 <groupId>org.argeo.tp</groupId>
56 <artifactId>org.aspectj.runtime</artifactId>
57 </dependency>
58 <dependency>
59 <groupId>org.argeo.tp</groupId>
60 <artifactId>org.aspectj.weaver</artifactId>
61 </dependency>
62
63 <dependency>
64 <groupId>org.argeo.tp</groupId>
65 <artifactId>org.apache.commons.io</artifactId>
66 </dependency>
67 <dependency>
68 <groupId>org.argeo.tp</groupId>
69 <artifactId>org.apache.commons.exec</artifactId>
70 </dependency>
71
72 <dependency>
73 <groupId>org.argeo.tp</groupId>
74 <artifactId>slf4j.org.apache.commons.logging</artifactId>
75 </dependency>
76 <dependency>
77 <groupId>org.argeo.commons.basic</groupId>
78 <artifactId>org.argeo.basic.dep.log4j</artifactId>
79 <version>${version.argeo-commons}</version>
80 <type>pom</type>
81 </dependency>
82
83 <!-- Spring -->
84 <dependency>
85 <groupId>org.argeo.tp</groupId>
86 <artifactId>org.springframework.context</artifactId>
87 </dependency>
88 <dependency>
89 <groupId>org.argeo.tp</groupId>
90 <artifactId>org.springframework.core</artifactId>
91 </dependency>
92 <dependency>
93 <groupId>org.argeo.tp</groupId>
94 <artifactId>org.springframework.aop</artifactId>
95 </dependency>
96 <dependency>
97 <groupId>org.argeo.tp</groupId>
98 <artifactId>org.springframework.security.core</artifactId>
99 </dependency>
100
101 <dependency>
102 <groupId>org.argeo.tp</groupId>
103 <artifactId>net.sf.cglib</artifactId>
104 </dependency>
105
106 <dependency>
107 <groupId>org.argeo.tp</groupId>
108 <artifactId>org.apache.commons.codec</artifactId>
109 </dependency>
110
111 <!-- Test -->
112 <dependency>
113 <groupId>org.argeo.tp</groupId>
114 <artifactId>junit</artifactId>
115 <scope>test</scope>
116 </dependency>
117 </dependencies>
118 </project>