-
Notifications
You must be signed in to change notification settings - Fork 33
/
pom.xml
158 lines (148 loc) · 5.07 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<?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>
<groupId>org.teiid.examples</groupId>
<artifactId>teiid-examples-parent</artifactId>
<packaging>pom</packaging>
<version>3.0.0-SNAPSHOT</version>
<name>Teiid Examples Parent</name>
<description>Examples for the Teiid project</description>
<url>http://jboss.org/teiid</url>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
</license>
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<version.assembly.plugin>2.4</version.assembly.plugin>
<version.exec.plugin>1.5.0</version.exec.plugin>
<version.war.plugin>2.1.1</version.war.plugin>
<version.compiler.plugin>3.1</version.compiler.plugin>
<version.jar.plugin>2.2</version.jar.plugin>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<version.junit>4.11</version.junit>
<version.teiid>12.0.0-SNAPSHOT</version.teiid>
<version.wildfly-swarm>2017.2.0</version.wildfly-swarm>
<version.narayana>5.0.4.Final</version.narayana>
<version.ironjacamar>1.0.30.Final</version.ironjacamar>
<version.com.h2database>1.3.152</version.com.h2database>
<version.apache.hive>1.2.1</version.apache.hive>
<version.apache.hadoop>1.2.1</version.apache.hadoop>
<version.spark-project.hive>0.13.1a</version.spark-project.hive>
<version.jboss-logmanager>2.0.0.Final</version.jboss-logmanager>
<version.drools>6.5.0.Final</version.drools>
<version.connector.api>1.0.0.Final</version.connector.api>
</properties>
<profiles>
<profile>
<id>release</id>
<properties>
<maven.javadoc.skip>true</maven.javadoc.skip>
</properties>
<modules>
<module>build</module>
</modules>
</profile>
</profiles>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.teiid</groupId>
<artifactId>teiid-parent</artifactId>
<version>${version.teiid}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.teiid.examples</groupId>
<artifactId>embedded-portfolio</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${version.junit}</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${version.jar.plugin}</version>
</plugin>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>${version.war.plugin}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>${version.exec.plugin}</version>
<executions>
<execution>
<goals>
<goal>java</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.wildfly.swarm</groupId>
<artifactId>wildfly-swarm-plugin</artifactId>
<version>${version.wildfly-swarm}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${version.compiler.plugin}</version>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<showDeprecation>false</showDeprecation>
<showWarnings>false</showWarnings>
</configuration>
</plugin>
</plugins>
</build>
<modules>
<module>embedded-portfolio</module>
<module>embedded-portfolio-security</module>
<module>embedded-caching</module>
<module>embedded-portfolio-logging</module>
<module>embedded-portfolio-sockets</module>
<module>embedded-portfolio-jdbc-extensions</module>
<module>excel-as-a-datasource</module>
<module>ldap-as-a-datasource</module>
<module>cassandra-as-a-datasourse</module>
<module>mongodb-as-a-datasource</module>
<module>couchbase-as-a-datasource</module>
<module>soapservice-as-a-datasource</module>
<module>restservice-as-a-datasource</module>
<module>swagger-as-a-datasource</module>
<module>odataservice-as-a-datasource</module>
<module>odata4service-as-a-datasource</module>
<module>vertica-as-a-datasource</module>
<module>prestodb-as-a-datasource</module>
<module>drools-integration</module>
<module>bigdata-integration</module>
<module>socialmedia-integration</module>
<module>loopback-example</module>
</modules>
</project>