]> git.argeo.org Git - gpl/argeo-slc.git/blob - demo/org.argeo.slc.demo.basic/pom.xml
Rename to support equinox
[gpl/argeo-slc.git] / demo / org.argeo.slc.demo.basic / 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>argeo-slc</artifactId>
7 <version>0.11.3-SNAPSHOT</version>
8 <relativePath>../../org.argeo.slc</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.demo</groupId>
11 <artifactId>org.argeo.slc.demo.basic</artifactId>
12 <name>SLC Demo Basic Test Module</name>
13 <packaging>jar</packaging>
14 <properties></properties>
15 <build>
16 <plugins>
17 <plugin>
18 <artifactId>maven-jar-plugin</artifactId>
19 </plugin>
20 <plugin>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>maven-bundle-plugin</artifactId>
23 <version>${version.maven-bundle-plugin}</version>
24 <configuration>
25 <instructions>
26 <Import-Package>org.apache.commons.logging,org.springframework.beans.factory.config</Import-Package>
27 <Require-Bundle>org.argeo.slc.support.equinox,org.argeo.slc.specs,org.argeo.slc.support.simple,org.springframework.aop,com.springsource.net.sf.cglib,com.springsource.org.aopalliance</Require-Bundle>
28 <Spring-Context>conf/*,conf/testCases/*</Spring-Context>
29 </instructions>
30 </configuration>
31 <executions>
32 <execution>
33 <goals>
34 <goal>manifest</goal>
35 </goals>
36 <phase>resources</phase>
37 </execution>
38 </executions>
39 </plugin>
40 </plugins>
41 </build>
42 <dependencies>
43
44 <dependency>
45 <groupId>org.argeo.slc.runtime</groupId>
46 <artifactId>org.argeo.slc.support.equinox</artifactId>
47 </dependency>
48 <dependency>
49 <groupId>org.argeo.slc.runtime</groupId>
50 <artifactId>org.argeo.slc.support.simple</artifactId>
51 </dependency>
52 </dependencies>
53 </project>