]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - examples/org.argeo.slc.example01/pom.xml
NEW - bug 105: Pass parameters to XsltReportGenerator
[gpl/argeo-slc.git] / examples / org.argeo.slc.example01 / pom.xml
index 94254bf0487a9203492b511b82c68808bd41f0dc..2bbd3e32f9d677732b7c10174e827424fd7cb37f 100644 (file)
@@ -4,7 +4,7 @@
        <parent>
                <groupId>org.argeo.slc</groupId>
                <artifactId>argeo-slc</artifactId>
-               <version>0.11.2-SNAPSHOT</version>
+               <version>0.11.3-SNAPSHOT</version>
                <relativePath>../../org.argeo.slc</relativePath>
        </parent>
        <groupId>org.argeo.slc.examples</groupId>
@@ -47,7 +47,7 @@
                                        <systemProperties>
                                                <property>
                                                        <name>slc.rootDir</name>
-                                                       <value>${basedir}/src/main/slc/root</value>
+                                                       <value>${basedir}/src/slc/root</value>
                                                </property>
                                        </systemProperties>
                                </configuration>
                        <plugin>
                                <groupId>org.apache.felix</groupId>
                                <artifactId>maven-bundle-plugin</artifactId>
+                               <version>${version.maven-bundle-plugin}</version>
                                <configuration>
                                        <instructions>
                                                <Export-Package>
                                                        org.argeo.slc.example.*
                                                </Export-Package>
-                                               <Import-Package>*,org.argeo.slc.core.test.spring,org.springframework.oxm.castor,org.argeo.slc.msg.test.tree,org.apache.tools.ant,org.apache.tools.ant.taskdefs,org.apache.tools.ant.types</Import-Package>
-                                               <Bundle-Activator>org.argeo.slc.example.Activator</Bundle-Activator>
-                                               <Require-Bundle>org.argeo.slc.core,org.argeo.slc.agent</Require-Bundle>
+                                               <Import-Package>*,
+                                                       org.argeo.slc.core.test.spring,
+                                                       org.argeo.slc.xml.test.tree,
+                                                       org.argeo.slc.castor.spring,
+                                                       org.argeo.slc.castor.msg,
+                                                       org.argeo.slc.castor.process,
+                                                       org.argeo.slc.castor.structure,
+                                                       org.argeo.slc.castor.test,
+                                                       org.springframework.oxm.castor,
+                                                       org.argeo.slc.core.test.tree,
+                                                       org.argeo.slc.msg.test.tree,
+                                                       org.apache.tools.ant,
+                                                       org.apache.tools.ant.taskdefs,
+                                                       org.apache.tools.ant.types
+                                               </Import-Package>
+                                               <!--
+                                                       <Import-Package>*,org.argeo.slc.core.test.spring,org.springframework.oxm.castor,org.argeo.slc.msg.test.tree,org.apache.tools.ant,org.apache.tools.ant.taskdefs,org.apache.tools.ant.types</Import-Package>
+                                                       <Bundle-Activator>org.argeo.slc.example.Activator</Bundle-Activator>
+                                                       <Require-Bundle>org.argeo.slc.core,org.argeo.slc.agent</Require-Bundle>
+                                               -->
                                        </instructions>
                                </configuration>
                        </plugin>
+                       <plugin>
+                               <groupId>org.codehaus.mojo</groupId>
+                               <artifactId>exec-maven-plugin</artifactId>
+                               <version>1.1-beta-1</version>
+                               <configuration>
+                                       <mainClass>org.argeo.slc.cli.SlcMain</mainClass>
+                                       <systemProperties>
+                                               <systemProperty>
+                                                       <key>slc.runtime</key>
+                                                       <value>ws</value>
+                                               </systemProperty>
+                                               <systemProperty>
+                                                       <key>slc.rootFile</key>
+                                                       <value>file:${basedir}/src/slc/root/slcRoot.properties</value>
+                                               </systemProperty>
+                                       </systemProperties>
+                                       <arguments>
+                                               <argument>--mode</argument>
+                                               <argument>agent</argument>
+                                       </arguments>
+                               </configuration>
+                       </plugin>
                </plugins>
        </build>
        <dependencies>
                <dependency>
                        <groupId>org.argeo.slc.runtime</groupId>
                        <artifactId>org.argeo.slc.support.simple</artifactId>
-                       <version>${project.version}</version>
                </dependency>
                <dependency>
                        <groupId>org.argeo.slc.runtime</groupId>
                        <artifactId>org.argeo.slc.support.ant</artifactId>
-                       <version>${project.version}</version>
                </dependency>
                <dependency>
                        <groupId>org.argeo.slc.runtime</groupId>
                        <artifactId>org.argeo.slc.support.castor</artifactId>
-                       <version>${project.version}</version>
                </dependency>
+               <dependency>
+                       <groupId>org.argeo.slc.runtime</groupId>
+                       <artifactId>org.argeo.slc.support.ws.client</artifactId>
+               </dependency>
+               <dependency>
+                       <groupId>org.argeo.slc.runtime</groupId>
+                       <artifactId>org.argeo.slc.launcher</artifactId>
+                       <scope>provided</scope>
+               </dependency>
+               <dependency>
+                       <groupId>javax.activation</groupId>
+                       <artifactId>com.springsource.javax.activation</artifactId>
+                       <version>1.1.1</version>
+                       <scope>testing</scope>
+               </dependency>
+
+               <!-- TESTING -->
                <dependency>
                        <groupId>org.argeo.slc.runtime</groupId>
                        <artifactId>org.argeo.slc.launcher</artifactId>
-                       <version>${project.version}</version>
-                       <scope>test</scope>
+                       <scope>testing</scope>
+               </dependency>
+               <dependency>
+                       <groupId>org.argeo.slc.runtime</groupId>
+                       <artifactId>org.argeo.slc.support.activemq</artifactId>
+                       <scope>testing</scope>
+               </dependency>
+               <dependency>
+                       <groupId>org.argeo.slc.runtime</groupId>
+                       <artifactId>org.argeo.slc.support.ant</artifactId>
+                       <scope>testing</scope>
+               </dependency>
+               <dependency>
+                       <groupId>org.argeo.slc.runtime</groupId>
+                       <artifactId>org.argeo.slc.support.castor</artifactId>
+                       <scope>testing</scope>
                </dependency>
+
        </dependencies>
-</project>
\ No newline at end of file
+</project>