]> git.argeo.org Git - gpl/argeo-slc.git/blob - pom.xml
4da8d4fc0c31d4fb96d6b27a2afdc81f601f4566
[gpl/argeo-slc.git] / 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 <argeo.server.port.http>7080</argeo.server.port.http>
50 <!--
51 <argeo.osgi.start> org.springframework.osgi.extender,
52 org.argeo.server.ads.server,
53 org.argeo.slc.server.jackrabbit.derby, org.argeo.slc.server.jcr,
54 org.argeo.slc.server.main, org.argeo.slc.ria,
55 org.argeo.slc.agent, org.argeo.slc.agent.jms,
56 org.argeo.slc.demo.minimal, org.argeo.slc.demo.basic,
57 org.argeo.slc.demo.ant </argeo.osgi.start>
58 -->
59 </systemProperties>
60 </configuration>
61 <executions>
62 <execution>
63 <id>equinox-start</id>
64 <phase>pre-integration-test</phase>
65 <goals>
66 <goal>equinox</goal>
67 </goals>
68 <configuration>
69 <wait>false</wait>
70 </configuration>
71 </execution>
72 <execution>
73 <id>equinox-shutdown</id>
74 <phase>post-integration-test</phase>
75 <goals>
76 <goal>equinox-shutdown</goal>
77 </goals>
78 </execution>
79 </executions>
80 </plugin>
81 <plugin>
82 <groupId>org.apache.maven.plugins</groupId>
83 <artifactId>maven-surefire-plugin</artifactId>
84 <configuration>
85 <skipTests>true</skipTests>
86 </configuration>
87 <executions>
88 <execution>
89 <id>surefire-it</id>
90 <phase>integration-test</phase>
91 <goals>
92 <goal>test</goal>
93 </goals>
94 <configuration>
95 <skipTests>false</skipTests>
96 </configuration>
97 </execution>
98 </executions>
99 </plugin>
100 <plugin>
101 <groupId>org.apache.maven.plugins</groupId>
102 <artifactId>maven-dependency-plugin</artifactId>
103 <executions>
104 <execution>
105 <id>copy-dependencies</id>
106 <phase>process-resources</phase>
107 <goals>
108 <goal>copy-dependencies</goal>
109 </goals>
110 <configuration>
111 <includeTypes>jar</includeTypes>
112 <outputDirectory>${project.build.directory}/lib</outputDirectory>
113 </configuration>
114 </execution>
115 </executions>
116 </plugin>
117 </plugins>
118 </build>
119 <dependencies>
120 <dependency>
121 <groupId>org.argeo.slc.dep</groupId>
122 <artifactId>org.argeo.slc.dep.sdk</artifactId>
123 <version>${project.version}</version>
124 </dependency>
125 <!-- Unit Tests -->
126 <dependency>
127 <groupId>org.argeo.slc.runtime</groupId>
128 <artifactId>org.argeo.slc.unit</artifactId>
129 <scope>test</scope>
130 </dependency>
131 </dependencies>
132 </project>