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