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