]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.core/pom.xml
Remove SLC process notifiers
[gpl/argeo-slc.git] / runtime / org.argeo.slc.core / pom.xml
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2 <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">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.argeo.slc</groupId>
6 <artifactId>runtime</artifactId>
7 <version>1.1.12-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
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 <plugins>
16 <plugin>
17 <groupId>org.apache.felix</groupId>
18 <artifactId>maven-bundle-plugin</artifactId>
19 <configuration>
20 <instructions>
21 <Export-Package>
22 org.argeo.slc.*,org.argeo.slc.core.test.spring
23 </Export-Package>
24 <Import-Package>
25 org.w3c.dom;version="0.0.0",
26 org.dbunit;resolution:="optional",
27 org.dbunit.database;resolution:="optional",
28 org.dbunit.dataset;resolution:="optional",
29 org.dbunit.dataset.xml;resolution:="optional",
30 org.dbunit.operation;resolution:="optional",
31 junit.framework;resolution:="optional",
32 *
33 </Import-Package>
34 </instructions>
35 </configuration>
36 </plugin>
37 </plugins>
38 </build>
39 <dependencies>
40 <dependency>
41 <groupId>org.argeo.slc</groupId>
42 <artifactId>org.argeo.slc.specs</artifactId>
43 <version>1.1.12-SNAPSHOT</version>
44 </dependency>
45
46 <dependency>
47 <groupId>org.argeo.commons.base</groupId>
48 <artifactId>org.argeo.util</artifactId>
49 <version>${version.argeo-commons}</version>
50 </dependency>
51
52 <dependency>
53 <groupId>org.argeo.tp</groupId>
54 <artifactId>org.aspectj.runtime</artifactId>
55 </dependency>
56 <dependency>
57 <groupId>org.argeo.tp</groupId>
58 <artifactId>org.aspectj.weaver</artifactId>
59 </dependency>
60
61 <dependency>
62 <groupId>org.argeo.tp</groupId>
63 <artifactId>org.apache.commons.io</artifactId>
64 </dependency>
65 <dependency>
66 <groupId>org.argeo.tp</groupId>
67 <artifactId>org.apache.commons.exec</artifactId>
68 </dependency>
69 <dependency>
70 <groupId>org.argeo.tp</groupId>
71 <artifactId>org.apache.commons.cli</artifactId>
72 </dependency>
73
74 <dependency>
75 <groupId>org.argeo.tp</groupId>
76 <artifactId>slf4j.org.apache.commons.logging</artifactId>
77 </dependency>
78 <dependency>
79 <groupId>org.argeo.commons.base</groupId>
80 <artifactId>org.argeo.dep.log4j</artifactId>
81 <version>${version.argeo-commons}</version>
82 <type>pom</type>
83 </dependency>
84
85 <!-- Spring -->
86 <dependency>
87 <groupId>org.argeo.tp</groupId>
88 <artifactId>org.springframework.context</artifactId>
89 </dependency>
90 <dependency>
91 <groupId>org.argeo.tp</groupId>
92 <artifactId>org.springframework.core</artifactId>
93 </dependency>
94 <dependency>
95 <groupId>org.argeo.tp</groupId>
96 <artifactId>org.springframework.aop</artifactId>
97 </dependency>
98 <dependency>
99 <groupId>org.argeo.tp</groupId>
100 <artifactId>org.springframework.security.core</artifactId>
101 </dependency>
102
103 <dependency>
104 <groupId>org.argeo.tp</groupId>
105 <artifactId>net.sf.cglib</artifactId>
106 </dependency>
107
108 <dependency>
109 <groupId>org.argeo.tp</groupId>
110 <artifactId>org.apache.commons.codec</artifactId>
111 </dependency>
112
113 <!-- Test -->
114 <dependency>
115 <groupId>org.argeo.tp</groupId>
116 <artifactId>junit</artifactId>
117 <scope>test</scope>
118 </dependency>
119 </dependencies>
120 </project>