]> git.argeo.org Git - gpl/argeo-slc.git/blob - demo/site/org.argeo.slc.demo.deploy/pom.xml
Introduce JMS based notifications
[gpl/argeo-slc.git] / demo / site / org.argeo.slc.demo.deploy / 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-demo</artifactId>
7 <version>0.11.3-SNAPSHOT</version>
8 <relativePath>..</relativePath>
9 </parent>
10 <groupId>org.argeo.slc.demo</groupId>
11 <artifactId>org.argeo.slc.demo.deploy</artifactId>
12 <name>Argeo SLC Demo Deploy</name>
13 <packaging>pom</packaging>
14 <properties>
15 <bundlesToStart>
16 org.springframework.osgi.extender,
17 org.argeo.slc.demo.basic,
18 org.argeo.slc.demo.manager,
19 org.argeo.slc.support.equinox
20 </bundlesToStart>
21 </properties>
22 <build>
23 <defaultGoal>antrun:run</defaultGoal>
24 <plugins>
25 <plugin>
26 <artifactId>maven-dependency-plugin</artifactId>
27 <executions>
28 <execution>
29 <goals>
30 <goal>unpack</goal>
31 </goals>
32 <phase>initialize</phase>
33 <configuration>
34 <outputDirectory>target/equinox</outputDirectory>
35 <artifactItems>
36 <artifactItem>
37 <groupId>org.argeo.slc.runtime</groupId>
38 <artifactId>org.argeo.slc.osgiboot</artifactId>
39 <version>${project.version}</version>
40 <type>tar.gz</type>
41 <classifier>osgiboot</classifier>
42 </artifactItem>
43 </artifactItems>
44 </configuration>
45 </execution>
46 </executions>
47
48 </plugin>
49 <plugin>
50 <artifactId>maven-antrun-plugin</artifactId>
51 <configuration>
52 <tasks>
53 <path id="slc.osgi.locations.raw">
54 <dirset dir="${user.dir}/..">
55 <include name="*" />
56 <exclude name=".svn" />
57 <exclude name="*.deploy" />
58 </dirset>
59 <path refid="maven.compile.classpath" />
60 </path>
61 <pathconvert dirsep="/" property="slc.osgi.locations"
62 refid="slc.osgi.locations.raw" />
63
64 <property name="slc.osgi.start" value="${bundlesToStart}" />
65 <ant antfile="target/equinox/osgiboot.xml" />
66
67 </tasks>
68 </configuration>
69 </plugin>
70
71 </plugins>
72 </build>
73 <profiles>
74 <profile>
75 <id>agent</id>
76 <properties>
77 <bundlesToStart>
78 org.springframework.osgi.extender,
79 org.argeo.slc.demo.basic,
80 org.argeo.slc.demo.manager,
81 org.argeo.slc.demo.agent
82 </bundlesToStart>
83 </properties>
84 <dependencies>
85 <dependency>
86 <groupId>org.argeo.slc.demo</groupId>
87 <artifactId>org.argeo.slc.demo.agent</artifactId>
88 <version>${project.version}</version>
89 </dependency>
90 </dependencies>
91 </profile>
92 </profiles>
93 <dependencies>
94
95 <dependency>
96 <groupId>org.argeo.slc.runtime</groupId>
97 <artifactId>org.argeo.slc.support.equinox</artifactId>
98 </dependency>
99
100 <dependency>
101 <groupId>org.argeo.slc.demo</groupId>
102 <artifactId>org.argeo.slc.demo.basic</artifactId>
103 <version>${project.version}</version>
104 </dependency>
105 <dependency>
106 <groupId>org.argeo.slc.demo</groupId>
107 <artifactId>org.argeo.slc.demo.manager</artifactId>
108 <version>${project.version}</version>
109 </dependency>
110 <dependency>
111 <groupId>org.argeo.slc.demo</groupId>
112 <artifactId>org.argeo.slc.demo.log4j</artifactId>
113 <version>${project.version}</version>
114 </dependency>
115 </dependencies>
116 </project>