forked from teiid/teiid-embedded-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
167 lines (157 loc) · 6.09 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
159
160
161
162
163
164
165
166
167
<?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.jboss.teiid.examples</groupId>
<artifactId>teiid-examples-parent</artifactId>
<packaging>pom</packaging>
<version>1.0.1-SNAPSHOT</version>
<name>Teiid Examples Parent</name>
<description>Examples for the Teiid project</description>
<url>http://jboss.org/teiid</url>
<licenses>
<license>
<name>GNU Lesser General Public License</name>
<url>http://www.gnu.org/copyleft/lesser.html</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</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>9.3.0.Beta2-SNAPSHOT</version.teiid>
<version.wildfly-swarm>2017.2.0</version.wildfly-swarm>
<version.slf4j-api>1.7.2.redhat-3</version.slf4j-api>
<version.io.netty>3.6.10.Final</version.io.netty>
<version.com.h2database>1.3.152</version.com.h2database>
<mysql.connector.version>5.1.5</mysql.connector.version>
<version.narayana>5.0.4.Final</version.narayana>
<version.ironjacamar>1.0.30.Final-redhat-1</version.ironjacamar>
<version.jboss-logmanager>2.0.0.Final</version.jboss-logmanager>
<version.drools>6.2.0.Final</version.drools>
<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.picketbox>4.9.3.Final</version.picketbox>
<version.resteasy-jaxb-provider>3.0.12.Final</version.resteasy-jaxb-provider>
<version.swagger-jaxrs>1.5.2</version.swagger-jaxrs>
<version.swagger-parser>1.0.10</version.swagger-parser>
<cxf.version>3.1.3</cxf.version>
</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.jboss.teiid</groupId>
<artifactId>teiid-parent</artifactId>
<version>${version.teiid}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.jboss.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>