-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
48 lines (41 loc) · 1.34 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
<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.jboss.integration-platform</groupId>
<artifactId>jboss-integration-platform-parent</artifactId>
<version>6.0.1.Final</version>
</parent>
<groupId>org.teiid</groupId>
<artifactId>komodo-openshift</artifactId>
<version>0.1.Final</version>
<packaging>pom</packaging>
<name>komodo openshift war archives</name>
<properties>
<version.komodo-rest>0.0.4-SNAPSHOT</version.komodo-rest>
<version.vdb-bench>0.1-SNAPSHOT</version.vdb-bench>
<jboss.home>/wildfly</jboss.home>
<teiid.version>9.1.1</teiid.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.komodo</groupId>
<artifactId>komodo-rest</artifactId>
<version>${version.komodo-rest}</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>vdb-bench-war</artifactId>
<version>${version.vdb-bench}</version>
<type>war</type>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>teiid-os</module>
<module>vdb-builder-os</module>
<module>ds-builder-os</module>
</modules>
</project>