-
Notifications
You must be signed in to change notification settings - Fork 100
/
pom.xml
78 lines (65 loc) · 2.89 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.ops4j</groupId>
<artifactId>master</artifactId>
<version>4.3.0</version>
</parent>
<groupId>org.ops4j.pax</groupId>
<artifactId>exam-reactor</artifactId>
<version>4.13.6-SNAPSHOT</version>
<packaging>pom</packaging>
<name>OPS4J Pax Exam (Reactor POM)</name>
<profiles>
<profile>
<id>default</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>build/pax-exam-checkstyle-rules</module>
<module>pom</module>
<module>core/pax-exam</module>
<module>core/pax-exam-spi</module>
<module>core/pax-exam-extender-service</module>
<module>core/pax-exam-inject</module>
<module>core/pax-exam-invoker-jaxrs2</module>
<module>core/pax-exam-invoker-junit</module>
<module>core/pax-exam-servlet-bridge</module>
<module>core/pax-exam-cm</module>
<module>drivers/pax-exam-junit4</module>
<module>drivers/pax-exam-testng</module>
<module>drivers/pax-exam-testng-servlet-bridge</module>
<module>core/pax-exam-link-mvn</module>
<module>core/pax-exam-link-assembly</module>
<module>core/pax-exam-container-rbc</module>
<module>core/pax-exam-container-rbc-client</module>
<module>features</module>
<module>samples</module>
<module>containers/pax-exam-container-native</module>
<module>containers/pax-exam-container-remote</module>
<module>containers/pax-exam-container-forked</module>
<module>containers/pax-exam-container-karaf</module>
<module>maven/exam-maven-plugin</module>
<module>itest</module>
</modules>
</profile>
</profiles>
<scm>
<connection>scm:git:git://github.com/ops4j/org.ops4j.pax.exam.git</connection>
<developerConnection>scm:git:ssh://[email protected]/ops4j/org.ops4j.pax.exam.git</developerConnection>
<url>scm:git:https://github.com/ops4j/org.ops4j.pax.exam.git</url>
<tag>HEAD</tag>
</scm>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<aggregate>true</aggregate>
</configuration>
</plugin>
</plugins>
</build>
</project>