]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.core/pom.xml
Prepare next development cycle
[gpl/argeo-slc.git] / org.argeo.slc.core / pom.xml
1 <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">
2 <modelVersion>4.0.0</modelVersion>
3 <parent>
4 <groupId>org.argeo.slc</groupId>
5 <artifactId>runtime</artifactId>
6 <version>0.11.4</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <groupId>org.argeo.slc.runtime</groupId>
10 <artifactId>org.argeo.slc.core</artifactId>
11 <name>SLC Core</name>
12 <description>Basic implementations of SLC Specifications</description>
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.apache.maven.plugins</groupId>
17 <artifactId>maven-compiler-plugin</artifactId>
18 </plugin>
19 <plugin>
20 <groupId>org.apache.maven.plugins</groupId>
21 <artifactId>maven-source-plugin</artifactId>
22 </plugin>
23 <plugin>
24 <groupId>org.apache.maven.plugins</groupId>
25 <artifactId>maven-surefire-plugin</artifactId>
26 </plugin>
27 <plugin>
28 <groupId>org.apache.maven.plugins</groupId>
29 <artifactId>maven-jar-plugin</artifactId>
30 <!--
31 <executions> <execution> <goals> <goal>test-jar</goal> </goals>
32 <configuration> <archive>
33 <manifestFile>target/test-classes/META-INF/MANIFEST.MF</manifestFile>
34 </archive> </configuration> </execution> </executions>
35 -->
36 </plugin>
37 <plugin>
38 <groupId>org.apache.felix</groupId>
39 <artifactId>maven-bundle-plugin</artifactId>
40 <version>${version.maven-bundle-plugin}</version>
41 <configuration>
42 <instructions>
43 <Export-Package>
44 org.argeo.slc.*,org.argeo.slc.core.test.spring
45 </Export-Package>
46 <Import-Package>*,org.apache.commons.logging;version="1.1",
47 org.dbunit;resolution:="optional",
48 org.dbunit.database;resolution:="optional",
49 org.dbunit.dataset;resolution:="optional",
50 org.dbunit.dataset.xml;resolution:="optional",
51 org.dbunit.operation;resolution:="optional"
52 </Import-Package>
53 </instructions>
54 </configuration>
55 </plugin>
56
57 </plugins>
58 </build>
59 <dependencies>
60 <dependency>
61 <groupId>org.argeo.slc.runtime</groupId>
62 <artifactId>org.argeo.slc.specs</artifactId>
63 </dependency>
64
65 <dependency>
66 <groupId>org.aspectj</groupId>
67 <artifactId>com.springsource.org.aspectj.runtime</artifactId>
68 </dependency>
69 <dependency>
70 <groupId>org.aspectj</groupId>
71 <artifactId>com.springsource.org.aspectj.weaver</artifactId>
72 </dependency>
73
74 <dependency>
75 <groupId>org.apache.commons</groupId>
76 <artifactId>com.springsource.org.apache.commons.io</artifactId>
77 </dependency>
78 <dependency>
79 <groupId>org.argeo.dep.osgi</groupId>
80 <artifactId>org.argeo.dep.osgi.commons.exec</artifactId>
81 </dependency>
82
83 <!--
84 <dependency> <groupId>org.apache.commons</groupId>
85 <artifactId>com.springsource.org.apache.commons.logging</artifactId>
86 </dependency> <dependency> <groupId>org.apache.log4j</groupId>
87 <artifactId>com.springsource.org.apache.log4j</artifactId>
88 </dependency>
89 -->
90 <dependency>
91 <groupId>org.slf4j</groupId>
92 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
93 </dependency>
94 <dependency>
95 <groupId>org.apache.log4j</groupId>
96 <artifactId>com.springsource.org.apache.log4j</artifactId>
97 </dependency>
98 <dependency>
99 <groupId>org.slf4j</groupId>
100 <artifactId>com.springsource.slf4j.log4j</artifactId>
101 </dependency>
102
103 <dependency>
104 <groupId>org.springframework</groupId>
105 <artifactId>org.springframework.context</artifactId>
106 </dependency>
107
108 <dependency>
109 <groupId>net.sourceforge.cglib</groupId>
110 <artifactId>com.springsource.net.sf.cglib</artifactId>
111 </dependency>
112
113 <!-- Test -->
114 <dependency>
115 <groupId>org.junit</groupId>
116 <artifactId>com.springsource.junit</artifactId>
117 <scope>test</scope>
118 </dependency>
119 </dependencies>
120 </project>