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