]> git.argeo.org Git - gpl/argeo-slc.git/blob - integration-tests/org.argeo.slc.it.webapp/pom.xml
Introduce H
[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.13.0-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 <useDependencies>false</useDependencies>
21 <argsToAppend>
22 <arg>-clean</arg>
23 </argsToAppend>
24 <systemProperties>
25 <argeo.osgi.bundles>
26 ${basedir}/../../demo/site;in=*;ex=target;ex=pom.xml;ex=.*,
27 ${project.build.directory}/lib;in=*.jar,
28 </argeo.osgi.bundles>
29 <!--
30 <argeo.osgi.bundles>
31 ${basedir}/../../demo/site;in=*;ex=target;ex=pom.xml;ex=.*,
32 ${basedir}/../../modules/server;in=*;ex=target;ex=pom.xml;ex=.*,
33 ${basedir}/../../modules/agent;in=*;ex=target;ex=pom.xml;ex=.*
34 </argeo.osgi.bundles>
35 -->
36
37 <argeo.osgi.start>
38 org.springframework.osgi.extender,
39 org.argeo.slc.server.main,
40 org.argeo.slc.server.h2,
41 org.argeo.slc.server.hibernate,
42 org.argeo.slc.ria,
43 org.argeo.slc.agent,
44 org.argeo.slc.agent.jms,
45 org.argeo.slc.demo.minimal,
46 org.argeo.slc.demo.basic,
47 org.argeo.slc.demo.ant
48 </argeo.osgi.start>
49
50 <!--<argeo.osgi.start>
51 org.springframework.osgi.extender,
52 org.argeo.server.ads.server,
53 org.argeo.slc.server.jackrabbit.derby,
54 org.argeo.slc.server.jcr,
55 org.argeo.slc.server.main,
56 org.argeo.slc.ria,
57 org.argeo.slc.agent,
58 org.argeo.slc.agent.jms,
59 org.argeo.slc.demo.minimal,
60 org.argeo.slc.demo.basic,
61 org.argeo.slc.demo.ant
62 </argeo.osgi.start>
63 --></systemProperties>
64 </configuration>
65 <executions>
66 <execution>
67 <id>equinox-start</id>
68 <phase>pre-integration-test</phase>
69 <goals>
70 <goal>equinox</goal>
71 </goals>
72 <configuration>
73 <wait>false</wait>
74 </configuration>
75 </execution>
76 <execution>
77 <id>equinox-shutdown</id>
78 <phase>post-integration-test</phase>
79 <goals>
80 <goal>equinox-shutdown</goal>
81 </goals>
82 </execution>
83 </executions>
84 </plugin>
85 <plugin>
86 <groupId>org.apache.maven.plugins</groupId>
87 <artifactId>maven-surefire-plugin</artifactId>
88 <configuration>
89 <skipTests>true</skipTests>
90 </configuration>
91 <executions>
92 <execution>
93 <id>surefire-it</id>
94 <phase>integration-test</phase>
95 <goals>
96 <goal>test</goal>
97 </goals>
98 <configuration>
99 <skipTests>false</skipTests>
100 </configuration>
101 </execution>
102 </executions>
103 </plugin>
104 <plugin>
105 <groupId>org.apache.maven.plugins</groupId>
106 <artifactId>maven-dependency-plugin</artifactId>
107 <executions>
108 <execution>
109 <id>copy-dependencies</id>
110 <phase>process-resources</phase>
111 <goals>
112 <goal>copy-dependencies</goal>
113 </goals>
114 <configuration>
115 <includeTypes>jar</includeTypes>
116 <outputDirectory>${project.build.directory}/lib</outputDirectory>
117 </configuration>
118 </execution>
119 </executions>
120 </plugin>
121 </plugins>
122 </build>
123 <dependencies>
124 <dependency>
125 <groupId>org.argeo.slc.dep</groupId>
126 <artifactId>org.argeo.slc.dep.sdk</artifactId>
127 <version>${project.version}</version>
128 </dependency>
129 <!-- Unit Tests -->
130 <dependency>
131 <groupId>org.argeo.slc.runtime</groupId>
132 <artifactId>org.argeo.slc.unit</artifactId>
133 <scope>test</scope>
134 </dependency>
135 </dependencies>
136 </project>