]> git.argeo.org Git - gpl/argeo-slc.git/blob - integration-tests/org.argeo.slc.it.webapp/pom.xml
Rename into org.argeo.slc.server.jackrabbit.derby
[gpl/argeo-slc.git] / integration-tests / org.argeo.slc.it.webapp / 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>integration-tests</artifactId>
7 <version>0.12.2-SNAPSHOT</version>
8 </parent>
9 <groupId>org.argeo.slc.it</groupId>
10 <artifactId>org.argeo.slc.it.webapp</artifactId>
11 <packaging>jar</packaging>
12 <name>SLC Integration Tests Web Application</name>
13 <build>
14 <plugins>
15 <plugin>
16 <groupId>org.argeo.maven.plugins</groupId>
17 <artifactId>maven-argeo-osgi-plugin</artifactId>
18 <version>${version.maven-argeo-osgi}</version>
19 <configuration>
20 <argsToAppend>
21 <arg>-clean</arg>
22 </argsToAppend>
23 <systemProperties>
24 <argeo.osgi.bundles>
25 ${basedir}/../../demo/site;in=*;ex=target;ex=pom.xml;ex=.*,
26 </argeo.osgi.bundles><!--
27 <argeo.osgi.bundles>
28 ${basedir}/../../demo/site;in=*;ex=target;ex=pom.xml;ex=.*,
29 ${basedir}/../../modules/server;in=*;ex=target;ex=pom.xml;ex=.*,
30 ${basedir}/../../modules/agent;in=*;ex=target;ex=pom.xml;ex=.*
31 </argeo.osgi.bundles>
32 --><!--
33 <argeo.osgi.start>
34 org.springframework.osgi.extender,
35 org.argeo.slc.server.main,
36 org.argeo.slc.server.hsqldb,
37 org.argeo.slc.server.hibernate,
38 org.argeo.slc.ria,
39 org.argeo.slc.agent,
40 org.argeo.slc.agent.jms
41 </argeo.osgi.start>
42 --><argeo.osgi.start>
43 org.springframework.osgi.extender,
44 org.argeo.slc.server.jcr,
45 org.argeo.slc.server.main,
46 org.argeo.slc.ria,
47 org.argeo.slc.agent,
48 org.argeo.slc.agent.jms
49 </argeo.osgi.start>
50 </systemProperties>
51 </configuration>
52 <executions>
53 <execution>
54 <id>equinox-start</id>
55 <phase>pre-integration-test</phase>
56 <goals>
57 <goal>equinox</goal>
58 </goals>
59 <configuration>
60 <wait>false</wait>
61 </configuration>
62 </execution>
63 <execution>
64 <id>equinox-shutdown</id>
65 <phase>post-integration-test</phase>
66 <goals>
67 <goal>equinox-shutdown</goal>
68 </goals>
69 </execution>
70 </executions>
71 </plugin>
72 <plugin>
73 <groupId>org.apache.maven.plugins</groupId>
74 <artifactId>maven-surefire-plugin</artifactId>
75 <configuration>
76 <skipTests>true</skipTests>
77 </configuration>
78 <executions>
79 <execution>
80 <id>surefire-it</id>
81 <phase>integration-test</phase>
82 <goals>
83 <goal>test</goal>
84 </goals>
85 <configuration>
86 <skipTests>false</skipTests>
87 </configuration>
88 </execution>
89 </executions>
90 </plugin>
91 </plugins>
92 </build>
93 <dependencies>
94 <dependency>
95 <groupId>org.argeo.slc.dep</groupId>
96 <artifactId>org.argeo.slc.dep.sdk</artifactId>
97 <version>${project.version}</version>
98 </dependency>
99 <!-- Unit Tests -->
100 <dependency>
101 <groupId>org.argeo.slc.runtime</groupId>
102 <artifactId>org.argeo.slc.unit</artifactId>
103 <scope>test</scope>
104 </dependency>
105 </dependencies>
106 </project>