1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <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" >
3+ <modelVersion >4.0.0</modelVersion >
4+ <groupId >org.tango-controls</groupId >
5+ <artifactId >rest-api-bom</artifactId >
6+ <version >1.0-SNAPSHOT</version >
7+ <packaging >pom</packaging >
8+
9+ <modules >
10+ <module >rc4</module >
11+ <module >rc5</module >
12+ <module >rc6</module >
13+ </modules >
14+
15+ <scm >
16+ <connection >scm:git:git@github.com:tango-controls/rest-api.git</connection >
17+ <developerConnection >scm:git:git@github.com:tango-controls/rest-api.git</developerConnection >
18+ <url >https://github.com/tango-controls/rest-api</url >
19+ <tag >HEAD</tag >
20+ </scm >
21+
22+ <distributionManagement >
23+ <repository >
24+ <id >bintray-tango-controls</id >
25+ <url >https://api.bintray.com/maven/tango-controls/rest/rest-api-bom/;publish=1</url >
26+ </repository >
27+ </distributionManagement >
28+
29+ <developers >
30+ <developer >
31+ <id >ingvord</id >
32+ <name >Igor Khokhriakov</name >
33+ <email >mail@ingvord.ru</email >
34+ <roles >
35+ <role >Maintainer</role >
36+ </roles >
37+ </developer >
38+ </developers >
39+
40+ <properties >
41+ <java .version>1.8</java .version>
42+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
43+ <guava .version>22.0</guava .version>
44+ <resteasy .version>3.6.2.Final</resteasy .version>
45+ <slf4j .version>1.7.6</slf4j .version>
46+ <logback .version>1.2.3</logback .version>
47+ </properties >
48+
49+ <dependencyManagement >
50+ <dependencies >
51+ <dependency >
52+ <groupId >junit</groupId >
53+ <artifactId >junit</artifactId >
54+ <version >4.12</version >
55+ </dependency >
56+ <dependency >
57+ <groupId >ch.qos.logback</groupId >
58+ <artifactId >logback-core</artifactId >
59+ <version >${logback.version} </version >
60+ </dependency >
61+ <dependency >
62+ <groupId >ch.qos.logback</groupId >
63+ <artifactId >logback-classic</artifactId >
64+ <version >${logback.version} </version >
65+ </dependency >
66+ <dependency >
67+ <groupId >com.google.guava</groupId >
68+ <artifactId >guava</artifactId >
69+ <version >${guava.version} </version >
70+ </dependency >
71+ <dependency >
72+ <groupId >org.jboss.resteasy</groupId >
73+ <artifactId >resteasy-client</artifactId >
74+ <version >${resteasy.version} </version >
75+ </dependency >
76+ <dependency >
77+ <groupId >org.jboss.resteasy</groupId >
78+ <artifactId >resteasy-jackson-provider</artifactId >
79+ <version >${resteasy.version} </version >
80+ </dependency >
81+ <dependency >
82+ <groupId >org.slf4j</groupId >
83+ <artifactId >slf4j-api</artifactId >
84+ <version >${slf4j.version} </version >
85+ </dependency >
86+ </dependencies >
87+ </dependencyManagement >
88+
89+ <build >
90+ <plugins >
91+ <plugin >
92+ <groupId >org.apache.maven.plugins</groupId >
93+ <artifactId >maven-compiler-plugin</artifactId >
94+ <configuration >
95+ <source >${java.version} </source >
96+ <target >${java.version} </target >
97+ <encoding >${project.build.sourceEncoding} </encoding >
98+ </configuration >
99+ </plugin >
100+ <plugin >
101+ <artifactId >maven-source-plugin</artifactId >
102+ <executions >
103+ <execution >
104+ <id >attach-sources</id >
105+ <goals >
106+ <goal >jar</goal >
107+ </goals >
108+ </execution >
109+ </executions >
110+ </plugin >
111+ <plugin >
112+ <artifactId >maven-javadoc-plugin</artifactId >
113+ <configuration >
114+ <skip >true</skip >
115+ </configuration >
116+ </plugin >
117+ <plugin >
118+ <artifactId >maven-release-plugin</artifactId >
119+ </plugin >
120+ <plugin >
121+ <artifactId >maven-surefire-plugin</artifactId >
122+ <configuration >
123+ <skip >true</skip >
124+ </configuration >
125+ </plugin >
126+ </plugins >
127+ </build >
128+
129+ <profiles >
130+ <profile >
131+ <id >test-suite</id >
132+ <build >
133+ <plugins >
134+ <plugin >
135+ <artifactId >maven-surefire-plugin</artifactId >
136+ <configuration >
137+ <skip >false</skip >
138+ </configuration >
139+ </plugin >
140+ </plugins >
141+ </build >
142+ </profile >
143+ </profiles >
144+
145+ <!-- temporary resolve ezTangORB -->
146+ <repositories >
147+ <repository >
148+ <snapshots >
149+ <enabled >false</enabled >
150+ </snapshots >
151+ <id >bintray-release</id >
152+ <name >bintray</name >
153+ <url >http://dl.bintray.com/hzgde/hzg-wpn-projects</url >
154+ </repository >
155+ </repositories >
156+ </project >
0 commit comments