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