forked from jboss-switchyard/tools
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pom.xml
53 lines (47 loc) · 1.84 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
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.switchyard</groupId>
<artifactId>switchyard-parent</artifactId>
<version>2.1.0.Final</version>
</parent>
<groupId>org.switchyard.tools</groupId>
<artifactId>switchyard-tools-parent</artifactId>
<packaging>pom</packaging>
<name>SwitchYard: Tools Parent</name>
<description>Parent project for SwitchYard tooling</description>
<properties>
<!-- Just in case the Eclipse project version does not match the parent. -->
<version.switchyard.runtime>2.1.0.Final</version.switchyard.runtime>
<jbtis.version>4.5.1.Beta1</jbtis.version>
<jbtis.classifier>base</jbtis.classifier> <!-- base-ea -->
<!-- Tycho versions -->
<jboss-tycho-version>0.26.0</jboss-tycho-version>
<tychoVersion>0.26.0</tychoVersion>
<tychoExtrasVersion>${tychoVersion}</tychoExtrasVersion>
<illegaltransitivereportonly>true</illegaltransitivereportonly>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<modules>
<module>eclipse</module>
</modules>
<repositories>
<repository>
<id>jboss-public-repository-group</id>
<name>JBoss Public Maven Repository Group</name>
<url>https://repository.jboss.org/nexus/content/groups/public/</url>
<layout>default</layout>
<releases>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
</repositories>
<version>2.4.1-SNAPSHOT</version>
</project>