forked from Teiid-Designer/teiid-designer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
164 lines (151 loc) · 5.27 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
<project
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>parent</artifactId>
<version>4.3.0.Final-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools</groupId>
<artifactId>teiid</artifactId>
<name>teiid.all</name>
<version>0.0.4-SNAPSHOT</version>
<packaging>pom</packaging>
<properties>
<jboss-tycho-version>${tychoVersion}</jboss-tycho-version>
<tycho.scmUrl>scm:git:https://github.com/Teiid-Designer/teiid-designer.git</tycho.scmUrl>
<!-- Specify our own TP using the JBT-IS rather than using the definition in the parent pom -->
<no-target-platform>true</no-target-platform>
<td.tpc.groupId>org.jboss.tools.integration-stack</td.tpc.groupId>
<td.tpc.artifactId>target-platform</td.tpc.artifactId>
<td.tpc.version>4.3.0.Final</td.tpc.version>
<td.tpc.type>target</td.tpc.type>
<td.tpc.classifier>base-ea</td.tpc.classifier>
</properties>
<modules>
<module>target-platform</module>
<module>plugins</module>
<module>features</module>
<module>tests</module>
<module>test-aggregate</module>
<module>site</module>
</modules>
<repositories>
<repository>
<id>jboss-public-repository-group</id>
<name>JBoss Public Repository Group</name>
<url>http://repository.jboss.org/nexus/content/groups/public/</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>daily</updatePolicy>
</snapshots>
</repository>
<repository>
<id>sonatype</id>
<url>http://oss.sonatype.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
<releases>
<enabled>false</enabled>
</releases>
</repository>
<repository>
<id>jboss-maven2-release-repository</id>
<url>https://repository.jboss.org/nexus/content/groups/m2-proxy/</url>
</repository>
<repository>
<id>redhat-techpreview-all-repository</id>
<name>Red Hat Tech Preview repository (all)</name>
<url>http://maven.repository.redhat.com/techpreview/all/</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
<repository>
<id>jboss-earlyaccess</id>
<name>JBoss Early Access</name>
<url>https://maven.repository.redhat.com/earlyaccess/all/</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<target>
<echo>basedir: ${basedir}</echo>
<echo>project.basedir: ${project.basedir}</echo>
<echo>project.baseUri: ${project.baseUri}</echo>
<echo>project.version: ${project.version}</echo>
<echo>project.groupId: ${project.groupId}</echo>
<echo>project.artifactId: ${project.artifactId}</echo>
<echo>project.name: ${project.name}</echo>
<echo>project.build.sourceDirectory: ${project.build.sourceDirectory}</echo>
<echo>project.build.scriptSourceDirectory: ${project.build.scriptSourceDirectory}</echo>
<echo>project.build.testSourceDirectory: ${project.build.testSourceDirectory}</echo>
<echo>project.build.outputDirectory: ${project.build.outputDirectory}</echo>
<echo>project.build.testOutputDirectory: ${project.build.testOutputDirectory}</echo>
<echo>project.build.directory: ${project.build.directory}</echo>
<echo>eclipse.tycho.version: ${tychoVersion}</echo>
<echo>eclipse.target.version: ${targetEclipseVersion}</echo>
<echo>not.using.jbt.parent.pom.tp: ${no-target-platform}</echo>
<echo>teiid.designer.tp.group.id: ${td.tpc.groupId}</echo>
<echo>teiid.designer.tp.artifact.id: ${td.tpc.artifactId}</echo>
<echo>teiid.designer.tp.version: ${td.tpc.version}</echo>
<echo>teiid.designer.tp.type: ${td.tpc.type}</echo>
<echo>teiid.designer.tp.classifier: ${td.tpc.classifier}</echo>
</target>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>target-platform-configuration</artifactId>
<version>${tychoVersion}</version>
<configuration>
<resolver>p2</resolver>
<ignoreTychoRepositories>true</ignoreTychoRepositories>
<target>
<artifact>
<groupId>${td.tpc.groupId}</groupId>
<artifactId>${td.tpc.artifactId}</artifactId>
<version>${td.tpc.version}</version>
<type>${td.tpc.type}</type>
<classifier>${td.tpc.classifier}</classifier>
</artifact>
</target>
</configuration>
</plugin>
</plugins>
</build>
</project>