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