-
Notifications
You must be signed in to change notification settings - Fork 9
/
pom.xml
100 lines (90 loc) · 2.99 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?xml version="1.0" encoding="UTF-8"?>
<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>vdb-bench</artifactId>
<packaging>pom</packaging>
<version>0.1-SNAPSHOT</version>
<name>vdb-bench</name>
<description>vdb :: bench</description>
<url>http://www.jboss.org/teiiddesigner</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com/Teiid-Designer/vdb-bench.git</connection>
<developerConnection>scm:git:git@github.com/Teiid-Designer/vdb-bench.git</developerConnection>
<url>git@github.com/Teiid-Designer/vdb-bench.git</url>
<tag>HEAD</tag>
</scm>
<prerequisites>
<maven>3.1.1</maven>
</prerequisites>
<properties>
<context>/ds-builder</context>
<hawtio-config-dir>${basedir}/hawtio-config</hawtio-config-dir>
<hawtio-config-repo>https://github.com/hawtio/hawtio-config.git</hawtio-config-repo>
<hawtio-console-version>1.0.0</hawtio-console-version>
<ruleoftech-version>0.10</ruleoftech-version>
<webapp-dir>${project.artifactId}-${project.version}</webapp-dir>
<webapp-outdir>${basedir}/target/${webapp-dir}</webapp-outdir>
<hawtio.version>2.0.0</hawtio.version>
</properties>
<modules>
<module>vdb-bench-assembly</module>
<module>vdb-bench-war</module>
<module>vdb-bench-doc</module>
<module>vdb-bench-ear</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>vdb-bench-assembly</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>vdb-bench-doc</artifactId>
<version>${project.version}</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>vdb-bench-war</artifactId>
<version>${project.version}</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>vdb-bench-ear</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>io.hawt</groupId>
<artifactId>hawtio-core</artifactId>
<version>${hawtio.version}</version>
</dependency>
<dependency>
<groupId>io.hawt</groupId>
<artifactId>hawtio-system</artifactId>
<version>${hawtio.version}</version>
</dependency>
<dependency>
<groupId>io.hawt</groupId>
<artifactId>hawtio-util</artifactId>
<version>${hawtio.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
</project>