-
Notifications
You must be signed in to change notification settings - Fork 12
/
pom.xml
51 lines (48 loc) · 1.87 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
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>io.vlingo.xoom</groupId>
<artifactId>xoom-platform</artifactId>
<!-- Latest released version. Commit new version for release of projects from PLATFORM -->
<!-- Only semantic versions are supported (i.e. x.y.z) -->
<version>1.11.1</version>
<packaging>pom</packaging>
<name>xoom-platform</name>
<url>http://maven.apache.org</url>
<profiles>
<profile>
<id>modules</id>
<activation>
<property>
<name>modules</name>
</property>
</activation>
<modules>
<module>../xoom-common</module>
<module>../xoom-actors</module>
<module>../xoom-wire</module>
<module>../xoom-streams</module>
<module>../xoom-streams-tck</module>
<module>../xoom-http</module>
<module>../xoom-cluster</module>
<module>../xoom-graphql</module>
<module>../xoom-codegen</module>
<module>../xoom-directory</module>
<module>../xoom-auth</module>
<module>../xoom-symbio</module>
<module>../xoom-symbio-dynamodb</module>
<module>../xoom-symbio-geode</module>
<module>../xoom-symbio-jdbc</module>
<module>../xoom-lattice</module>
<module>../xoom-lattice-exchange-camel</module>
<module>../xoom-lattice-exchange-rabbitmq</module>
<module>../xoom-turbo</module>
<module>../xoom-designer</module>
<module>../xoom-schemata</module>
<module>../xoom-build-plugins</module>
<module>../xoom-telemetry</module>
<module>../xoom-examples</module>
<module>../xoom-helloworld</module>
</modules>
</profile>
</profiles>
</project>