]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - demo/org.argeo.slc.demo.manager/pom.xml
Adapt to OSGi on the server side
[gpl/argeo-slc.git] / demo / org.argeo.slc.demo.manager / pom.xml
index 62b0cd2d43f46652c1cb32fa350eadc9045e7dfa..dfb9204e738523ea5afadf0b15a655272be8644f 100644 (file)
@@ -21,7 +21,7 @@
                                <configuration>
                                        <instructions>
                                                <Import-Package>org.apache.commons.logging,org.springframework.beans.factory.config</Import-Package>
-                                               <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>
+                                               <Require-Bundle>org.springframework.jms,com.springsource.org.castor,org.argeo.dep.osgi.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>
                                                <Spring-Context>conf/*</Spring-Context>
                                        </instructions>
                                </configuration>
@@ -40,9 +40,9 @@
                                        <classpathScope>test</classpathScope> </configuration>
                                -->
                                <configuration>
-                                       <executable>${java.home}/bin/java</executable>
+                                       <executable>${java.home}${file.separator}bin${file.separator}java</executable>
                                        <arguments>
-                                               <argument>-Xbootclasspath/p:${settings.localRepository}/org/apache/xerces/com.springsource.org.apache.xerces/2.8.1/com.springsource.org.apache.xerces-2.8.1.jar:${settings.localRepository}/org/apache/xmlcommons/com.springsource.org.apache.xmlcommons/1.3.3/com.springsource.org.apache.xmlcommons-1.3.3.jar</argument>
+                                               <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>
                                                <argument>-Dslc.osgi.scanClasspath=true</argument>
                                                <argument>-Dslc.osgi.start=*</argument>
                                                <argument>-classpath</argument>
                                        <workingDirectory>target</workingDirectory>
                                </configuration>
                        </plugin>
+                       <plugin>
+                               <artifactId>maven-antrun-plugin</artifactId>
+                               <configuration>
+                                       <tasks>
+                                               <property name="xerces.jar"
+                                                       location="${settings.localRepository}/org/apache/xerces/com.springsource.org.apache.xerces/2.8.1/com.springsource.org.apache.xerces-2.8.1.jar" />
+                                               <property name="xmlcommons.jar"
+                                                       location="${settings.localRepository}/org/apache/xmlcommons/com.springsource.org.apache.xmlcommons/1.3.3/com.springsource.org.apache.xmlcommons-1.3.3.jar" />
+                                               
+                                               <echo message="${xmlcommons.jar}"/>
+                                               <echo message="${xerces.jar}"/>
+                                                       <!-- 
+                                               <property name="xerces.jar"
+                                                       refid="maven.dependency.org.apache.xerces:com.springsource.org.apache.xerces::jar.path" />
+                                               <property name="xmlcommons.jar"
+                                                       refid="maven.dependency.org.apache.xmlcommons:com.springsource.org.apache.xmlcommons::jar.path" />
+                                                -->
+                                               <java classname="org.argeo.slc.detached.launcher.Main" fork="true">
+                                                       <classpath>
+                                                               <path refid="maven.compile.classpath" />
+                                                       </classpath>
+                                                       <sysproperty key="slc.osgi.scanClasspath" value="true"/>
+                                                       <sysproperty key="slc.osgi.start" value="*"/>
+                                                       <jvmarg value="-Xbootclasspath/p:${xmlcommons.jar}${path.separator}${xerces.jar}"/>
+                                               </java>
+                                       </tasks>
+                               </configuration>
+                       </plugin>
+
                </plugins>
        </build>
        <dependencies>
                        <version>${project.version}</version>
                </dependency>
 
+               <dependency>
+                       <groupId>org.apache.xerces</groupId>
+                       <artifactId>
+                                       com.springsource.org.apache.xerces
+                               </artifactId>
+                       <version>2.8.1</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.apache.xmlcommons</groupId>
+                       <artifactId>com.springsource.org.apache.xmlcommons</artifactId>
+                       <version>1.3.3</version>
+               </dependency>
+
        </dependencies>
 </project>