]> git.argeo.org Git - gpl/argeo-slc.git/blob - sandbox/argeo.slc.executionflow/pom.xml
FlowNamespace extended (flows in flows, param in arg)
[gpl/argeo-slc.git] / sandbox / argeo.slc.executionflow / 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.sandbox</groupId>
11 <artifactId>org.argeo.slc.sandbox.executionflow</artifactId>
12 <name>SLC Sandbox Execution Flow</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 <Export-Package>
27 org.argeo.slc.*
28 </Export-Package>
29 </instructions>
30 </configuration>
31 </plugin>
32 </plugins>
33 </build>
34 <dependencies>
35
36
37 <dependency>
38 <groupId>org.argeo.slc.runtime</groupId>
39 <artifactId>org.argeo.slc.support.simple</artifactId>
40 </dependency>
41 <dependency>
42 <groupId>org.argeo.slc</groupId>
43 <artifactId>org.argeo.slc.detached.launcher</artifactId>
44 <version>${project.version}</version>
45 </dependency>
46
47 <dependency>
48 <groupId>org.eclipse.osgi</groupId>
49 <artifactId>org.eclipse.osgi</artifactId>
50 </dependency>
51
52 <dependency>
53 <groupId>org.springframework.osgi</groupId>
54 <artifactId>org.springframework.osgi.extender</artifactId>
55 </dependency>
56 </dependencies>
57 </project>