]> git.argeo.org Git - lgpl/argeo-commons.git/blob - pom.xml
4552225890ff153b0678e9840099a8fdbf53bdfd
[lgpl/argeo-commons.git] / 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.commons.basic</groupId>
5 <artifactId>runtime</artifactId>
6 <version>0.3.2</version>
7 <relativePath>..</relativePath>
8 </parent>
9 <artifactId>org.argeo.support.junit</artifactId>
10 <name>Commons Support JUnit</name>
11 <build>
12 <plugins>
13 <plugin>
14 <groupId>org.apache.maven.plugins</groupId>
15 <artifactId>maven-compiler-plugin</artifactId>
16 </plugin>
17 <plugin>
18 <groupId>org.apache.maven.plugins</groupId>
19 <artifactId>maven-source-plugin</artifactId>
20 </plugin>
21 <plugin>
22 <groupId>org.apache.maven.plugins</groupId>
23 <artifactId>maven-jar-plugin</artifactId>
24 </plugin>
25 <plugin>
26 <groupId>org.apache.felix</groupId>
27 <artifactId>maven-bundle-plugin</artifactId>
28 <version>${version.maven-bundle-plugin}</version>
29 <configuration>
30 <instructions>
31 <Export-Package>
32 org.argeo.support.junit.*
33 </Export-Package>
34 <Import-Package>org.springframework.core.io,*</Import-Package>
35 </instructions>
36 </configuration>
37 </plugin>
38 </plugins>
39 </build>
40 <dependencies>
41 <dependency>
42 <groupId>org.junit</groupId>
43 <artifactId>com.springsource.junit</artifactId>
44 </dependency>
45 <dependency>
46 <groupId>org.springframework</groupId>
47 <artifactId>org.springframework.core</artifactId>
48 </dependency>
49 <dependency>
50 <groupId>org.springframework</groupId>
51 <artifactId>org.springframework.context</artifactId>
52 </dependency>
53
54 <!-- Logging -->
55 <dependency>
56 <groupId>org.slf4j</groupId>
57 <artifactId>com.springsource.slf4j.org.apache.commons.logging</artifactId>
58 </dependency>
59 </dependencies>
60 </project>