]> git.argeo.org Git - gpl/argeo-slc.git/blob - demo/site/org.argeo.slc.demo.deploy/pom.xml
Remove maven dep
[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>jar</packaging>
14 <properties></properties>
15 <build>
16 <resources>
17 <resource>
18 <directory>.</directory>
19 <includes>
20 <include>META-INF/**</include>
21 </includes>
22 </resource>
23 </resources>
24 <plugins>
25 <plugin>
26 <artifactId>maven-jar-plugin</artifactId>
27 <configuration>
28 <archive>
29 <manifestFile>META-INF/MANIFEST.MF</manifestFile>
30 </archive>
31 </configuration>
32 </plugin>
33 <plugin>
34 <artifactId>maven-dependency-plugin</artifactId>
35 <executions>
36 <execution>
37 <id>manager</id>
38 <phase>initialize</phase>
39 <goals>
40 <goal>list</goal>
41 </goals>
42 <configuration>
43 <outputFile>META-INF/slc/dep/manager.maven</outputFile>
44 </configuration>
45 </execution>
46 <execution>
47 <id>copy</id>
48 <phase>initialize</phase>
49 <goals>
50 <goal>copy</goal>
51 </goals>
52 <configuration>
53 <outputDirectory>${project.build.directory}/equinox</outputDirectory>
54 <stripVersion>true</stripVersion>
55 <artifactItems>
56 <artifactItem>
57 <groupId>org.eclipse.osgi</groupId>
58 <artifactId>org.eclipse.osgi</artifactId>
59 <version>${version.equinox}</version>
60 </artifactItem>
61 <artifactItem>
62 <groupId>org.argeo.slc.runtime</groupId>
63 <artifactId>org.argeo.slc.osgiboot</artifactId>
64 <version>${project.version}</version>
65 </artifactItem>
66 <artifactItem>
67 <groupId>org.argeo.slc.runtime</groupId>
68 <artifactId>org.argeo.slc.osgiboot</artifactId>
69 <version>${project.version}</version>
70 <type>xml</type>
71 <classifier>osgiboot</classifier>
72 </artifactItem>
73 </artifactItems>
74 </configuration>
75 </execution>
76 </executions>
77 </plugin>
78 <plugin>
79 <artifactId>maven-antrun-plugin</artifactId>
80 <configuration>
81 <tasks>
82 <property name="slc.osgi.locations" refid="maven.compile.classpath" />
83 <property name="slc.osgi.start"
84 value="org.springframework.osgi.extender,org.argeo.slc.demo.basic" />
85 <ant
86 antfile="${project.build.directory}/equinox/org.argeo.slc.osgiboot-osgiboot.xml" />
87
88 </tasks>
89 </configuration>
90 </plugin>
91
92 </plugins>
93 </build>
94 <dependencies>
95
96 <dependency>
97 <groupId>org.argeo.slc.runtime</groupId>
98 <artifactId>org.argeo.slc.support.equinox</artifactId>
99 </dependency>
100 <dependency>
101 <groupId>org.argeo.slc.runtime</groupId>
102 <artifactId>org.argeo.slc.support.activemq</artifactId>
103 </dependency>
104 <dependency>
105 <groupId>org.argeo.slc.runtime</groupId>
106 <artifactId>org.argeo.slc.support.castor</artifactId>
107 </dependency>
108 <dependency>
109 <groupId>org.argeo.slc.runtime</groupId>
110 <artifactId>org.argeo.slc.support.maven</artifactId>
111 <version>${project.version}</version>
112 </dependency>
113
114 <dependency>
115 <groupId>org.argeo.slc</groupId>
116 <artifactId>org.argeo.slc.detached.launcher</artifactId>
117 <version>${project.version}</version>
118 </dependency>
119
120 <dependency>
121 <groupId>org.argeo.slc.demo</groupId>
122 <artifactId>org.argeo.slc.demo.basic</artifactId>
123 <version>${project.version}</version>
124 </dependency>
125 <dependency>
126 <groupId>org.argeo.slc.demo</groupId>
127 <artifactId>org.argeo.slc.demo.log4j</artifactId>
128 <version>${project.version}</version>
129 </dependency>
130
131
132 <dependency>
133 <groupId>com.thoughtworks.xstream</groupId>
134 <artifactId>com.springsource.com.thoughtworks.xstream</artifactId>
135 <version>1.2.2</version>
136 </dependency>
137
138 <dependency>
139 <groupId>org.apache.xerces</groupId>
140 <artifactId>
141 com.springsource.org.apache.xerces
142 </artifactId>
143 <version>2.8.1</version>
144 </dependency>
145 <dependency>
146 <groupId>org.apache.xmlcommons</groupId>
147 <artifactId>com.springsource.org.apache.xmlcommons</artifactId>
148 <version>1.3.3</version>
149 </dependency>
150
151 </dependencies>
152 </project>