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