]> git.argeo.org Git - gpl/argeo-slc.git/blob - legacy/integration-tests/org.argeo.slc.it.webapp/pom.xml
Clean up JCR repo config.
[gpl/argeo-slc.git] / legacy / 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.1-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 <!-- <argeo.osgi.bundles> ${basedir}/../../demo/site;in=*;ex=target;ex=pom.xml;ex=.*,
30 ${basedir}/../../modules/server;in=*;ex=target;ex=pom.xml;ex=.*, ${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.h2,
37 org.argeo.slc.server.hibernate,
38 org.argeo.slc.ria,
39 org.argeo.slc.agent,
40 org.argeo.slc.agent.jms,
41 org.argeo.slc.demo.minimal,
42 org.argeo.slc.demo.basic,
43 org.argeo.slc.demo.ant
44 </argeo.osgi.start>
45 <argeo.server.port.http>7080</argeo.server.port.http>
46 </systemProperties>
47 </configuration>
48 <executions>
49 <execution>
50 <id>equinox-start</id>
51 <phase>pre-integration-test</phase>
52 <goals>
53 <goal>equinox</goal>
54 </goals>
55 <configuration>
56 <wait>false</wait>
57 </configuration>
58 </execution>
59 <execution>
60 <id>equinox-shutdown</id>
61 <phase>post-integration-test</phase>
62 <goals>
63 <goal>equinox-shutdown</goal>
64 </goals>
65 </execution>
66 </executions>
67 </plugin>
68 <plugin>
69 <groupId>org.apache.maven.plugins</groupId>
70 <artifactId>maven-surefire-plugin</artifactId>
71 <configuration>
72 <skipTests>true</skipTests>
73 </configuration>
74 <executions>
75 <execution>
76 <id>surefire-it</id>
77 <phase>integration-test</phase>
78 <goals>
79 <goal>test</goal>
80 </goals>
81 <configuration>
82 <skipTests>false</skipTests>
83 </configuration>
84 </execution>
85 </executions>
86 </plugin>
87 <plugin>
88 <groupId>org.apache.maven.plugins</groupId>
89 <artifactId>maven-dependency-plugin</artifactId>
90 <executions>
91 <execution>
92 <id>copy-dependencies</id>
93 <phase>process-resources</phase>
94 <goals>
95 <goal>copy-dependencies</goal>
96 </goals>
97 <configuration>
98 <includeTypes>jar</includeTypes>
99 <outputDirectory>${project.build.directory}/lib</outputDirectory>
100 </configuration>
101 </execution>
102 </executions>
103 </plugin>
104 <plugin>
105 <artifactId>maven-jar-plugin</artifactId>
106 <configuration>
107 <archive>
108 <manifestFile>META-INF/MANIFEST.MF</manifestFile>
109 </archive>
110 </configuration>
111 </plugin>
112 </plugins>
113 </build>
114 <dependencies>
115 <dependency>
116 <groupId>org.argeo.slc.dep</groupId>
117 <artifactId>org.argeo.slc.dep.sdk.rcp</artifactId>
118 <version>${version.slc}</version>
119 </dependency>
120 <!-- Unit Tests -->
121 <dependency>
122 <groupId>org.argeo.slc.runtime</groupId>
123 <artifactId>org.argeo.slc.unit</artifactId>
124 <scope>test</scope>
125 <version>${version.slc}</version>
126 </dependency>
127 </dependencies>
128 </project>