]> git.argeo.org Git - gpl/argeo-slc.git/blob - demo/org.argeo.slc.demo.manager/pom.xml
a4caecfc95c77885e2ad4e8e0f62e0286c72c221
[gpl/argeo-slc.git] / demo / org.argeo.slc.demo.manager / 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.manager</artifactId>
12 <name>Argeo SLC Demo Manager</name>
13 <packaging>jar</packaging>
14 <properties></properties>
15 <build>
16 <plugins>
17 <plugin>
18 <groupId>org.apache.felix</groupId>
19 <artifactId>maven-bundle-plugin</artifactId>
20 <version>${version.maven-bundle-plugin}</version>
21 <configuration>
22 <instructions>
23 <Import-Package>org.apache.commons.logging,org.springframework.beans.factory.config</Import-Package>
24 <Require-Bundle>org.springframework.jms,com.springsource.org.castor,com.springsource.org.apache.xbean.spring,com.springsource.org.apache.activemq,org.argeo.slc.support.equinox,org.argeo.slc.support.activemq,org.argeo.slc.specs,org.argeo.slc.support.simple,org.springframework.aop,org.springframework.oxm,com.springsource.net.sf.cglib,com.springsource.org.aopalliance</Require-Bundle>
25 <Spring-Context>conf/*</Spring-Context>
26 </instructions>
27 </configuration>
28 </plugin>
29 <plugin>
30 <groupId>org.codehaus.mojo</groupId>
31 <artifactId>exec-maven-plugin</artifactId>
32 <version>1.1-beta-1</version>
33 <!--
34 <configuration>
35 <mainClass>org.argeo.slc.detached.launcher.Main</mainClass>
36 <systemProperties> <systemProperty>
37 <key>slc.osgi.scanClasspath</key> <value>true</value>
38 </systemProperty> <systemProperty> <key>slc.osgi.start</key>
39 <value>*</value> </systemProperty> </systemProperties>
40 <classpathScope>test</classpathScope> </configuration>
41 -->
42 <configuration>
43 <executable>${java.home}${file.separator}bin${file.separator}java</executable>
44 <arguments>
45 <argument>-Xbootclasspath/p:${settings.localRepository}${file.separator}org${file.separator}apache${file.separator}xerces${file.separator}com.springsource.org.apache.xerces${file.separator}2.8.1${file.separator}com.springsource.org.apache.xerces-2.8.1.jar${path.separator}${settings.localRepository}${file.separator}org${file.separator}apache${file.separator}xmlcommons${file.separator}com.springsource.org.apache.xmlcommons${file.separator}1.3.3${file.separator}com.springsource.org.apache.xmlcommons-1.3.3.jar</argument>
46 <argument>-Dslc.osgi.scanClasspath=true</argument>
47 <argument>-Dslc.osgi.start=*</argument>
48 <argument>-classpath</argument>
49 <classpath />
50 <argument>org.argeo.slc.detached.launcher.Main</argument>
51 </arguments>
52 <workingDirectory>target</workingDirectory>
53 </configuration>
54 </plugin>
55 <plugin>
56 <artifactId>maven-antrun-plugin</artifactId>
57 <configuration>
58 <tasks>
59 <property name="xerces.jar"
60 location="${settings.localRepository}/org/apache/xerces/com.springsource.org.apache.xerces/2.8.1/com.springsource.org.apache.xerces-2.8.1.jar" />
61 <property name="xmlcommons.jar"
62 location="${settings.localRepository}/org/apache/xmlcommons/com.springsource.org.apache.xmlcommons/1.3.3/com.springsource.org.apache.xmlcommons-1.3.3.jar" />
63
64 <echo message="${xmlcommons.jar}"/>
65 <echo message="${xerces.jar}"/>
66 <!--
67 <property name="xerces.jar"
68 refid="maven.dependency.org.apache.xerces:com.springsource.org.apache.xerces::jar.path" />
69 <property name="xmlcommons.jar"
70 refid="maven.dependency.org.apache.xmlcommons:com.springsource.org.apache.xmlcommons::jar.path" />
71 -->
72 <java classname="org.argeo.slc.detached.launcher.Main" fork="true">
73 <classpath>
74 <path refid="maven.compile.classpath" />
75 </classpath>
76 <sysproperty key="slc.osgi.scanClasspath" value="true"/>
77 <sysproperty key="slc.osgi.start" value="*"/>
78 <jvmarg value="-Xbootclasspath/p:${xmlcommons.jar}${path.separator}${xerces.jar}"/>
79 </java>
80 </tasks>
81 </configuration>
82 </plugin>
83
84 </plugins>
85 </build>
86 <dependencies>
87
88 <dependency>
89 <groupId>org.argeo.slc.runtime</groupId>
90 <artifactId>org.argeo.slc.support.equinox</artifactId>
91 </dependency>
92 <dependency>
93 <groupId>org.argeo.slc.runtime</groupId>
94 <artifactId>org.argeo.slc.support.activemq</artifactId>
95 </dependency>
96 <dependency>
97 <groupId>org.argeo.slc.runtime</groupId>
98 <artifactId>org.argeo.slc.support.castor</artifactId>
99 </dependency>
100
101 <dependency>
102 <groupId>org.argeo.slc</groupId>
103 <artifactId>org.argeo.slc.detached.launcher</artifactId>
104 <version>${project.version}</version>
105 </dependency>
106
107 <dependency>
108 <groupId>org.argeo.slc.demo</groupId>
109 <artifactId>org.argeo.slc.demo.basic</artifactId>
110 <version>${project.version}</version>
111 </dependency>
112 <dependency>
113 <groupId>org.argeo.slc.demo</groupId>
114 <artifactId>org.argeo.slc.demo.log4j</artifactId>
115 <version>${project.version}</version>
116 </dependency>
117
118 <dependency>
119 <groupId>org.apache.xerces</groupId>
120 <artifactId>
121 com.springsource.org.apache.xerces
122 </artifactId>
123 <version>2.8.1</version>
124 </dependency>
125 <dependency>
126 <groupId>org.apache.xmlcommons</groupId>
127 <artifactId>com.springsource.org.apache.xmlcommons</artifactId>
128 <version>1.3.3</version>
129 </dependency>
130
131 </dependencies>
132 </project>