]> git.argeo.org Git - gpl/argeo-slc.git/blob - demo/pom.xml
Do not use stderr on Windows
[gpl/argeo-slc.git] / demo / 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</artifactId>
7 <version>0.11.3-SNAPSHOT</version>
8 <relativePath>../org.argeo.slc</relativePath>
9 </parent>
10 <artifactId>argeo-slc-demo</artifactId>
11 <packaging>pom</packaging>
12 <name>Argeo SLC Demo</name>
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.argeo.slc.maven</groupId>
17 <artifactId>maven-argeo-osgi-plugin</artifactId>
18 <version>0.1.6</version>
19 <configuration>
20 <execDir>exec/server</execDir>
21 <jvmArgs>
22 <jvmArg>-Xmx256m</jvmArg>
23 <!-- <jvmArg>-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=8000</jvmArg> -->
24 </jvmArgs>
25 <systemProperties>
26 <slc.osgi.bundles>../../site;in=*</slc.osgi.bundles>
27 <slc.osgi.start>
28 org.argeo.dep.osgi.catalina.start,
29 org.springframework.osgi.extender,
30 org.springframework.osgi.web.extender,
31 org.springframework.osgi.samples.simplewebapp,
32 org.argeo.slc.server.activemq,
33 org.argeo.slc.server.hsqldb,
34 org.argeo.slc.server.hibernate,
35 org.argeo.slc.server.services,
36 org.argeo.slc.server.jms,
37 org.argeo.slc.webapp,
38 org.argeo.slc.ria,
39 org.argeo.slc.support.equinox,
40 org.argeo.slc.demo.basic,
41 org.argeo.slc.demo.manager
42 </slc.osgi.start>
43 </systemProperties>
44 </configuration>
45 </plugin>
46 <!--
47 <plugin> <artifactId>maven-dependency-plugin</artifactId>
48 <executions> <execution> <goals> <goal>copy-dependencies</goal>
49 </goals> <phase>initialize</phase> <configuration>
50 <outputDirectory>lib</outputDirectory>
51 <includeTypes>jar</includeTypes> </configuration> </execution>
52 </executions> </plugin> <plugin>
53 <groupId>org.codehaus.mojo</groupId>
54 <artifactId>exec-maven-plugin</artifactId> <version>1.1</version>
55 <configuration> <executable>java</executable>
56 <workingDirectory>exec/server</workingDirectory> <arguments>
57 <argument>-Dmyproperty=myvalue</argument> <argument>-jar</argument>
58 <argument>../../lib/org.eclipse.osgi-3.4.2.R34x_v20080826-1230.jar</argument>
59 <argument>-clean</argument> <argument>-console</argument>
60 <argument>-configuration</argument> <argument>conf</argument>
61 </arguments> </configuration> </plugin>
62 -->
63
64 </plugins>
65 </build>
66 <dependencies>
67
68 <dependency>
69 <groupId>org.argeo.slc.runtime</groupId>
70 <artifactId>org.argeo.slc.support.equinox</artifactId>
71 </dependency>
72 <dependency>
73 <groupId>org.argeo.slc.runtime</groupId>
74 <artifactId>org.argeo.slc.osgiboot</artifactId>
75 <version>${project.version}</version>
76 </dependency>
77 <!-- Server -->
78 <dependency>
79 <groupId>org.argeo.slc.server</groupId>
80 <artifactId>bundles</artifactId>
81 <version>${project.version}</version>
82 <type>pom</type>
83 </dependency>
84 </dependencies>
85
86
87 </project>