blob: b16a2913a5b487b3a3e92415f3e4beb5ae35ac6c [file] [log] [blame]
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -07001<?xml version="1.0" encoding="UTF-8"?>
alshabibab984662014-12-04 18:56:18 -08002<!--
Brian O'Connor5ab426f2016-04-09 01:19:45 -07003 ~ Copyright 2014-present Open Networking Laboratory
alshabibab984662014-12-04 18:56:18 -08004 ~
5 ~ Licensed under the Apache License, Version 2.0 (the "License");
6 ~ you may not use this file except in compliance with the License.
7 ~ You may obtain a copy of the License at
8 ~
9 ~ http://www.apache.org/licenses/LICENSE-2.0
10 ~
11 ~ Unless required by applicable law or agreed to in writing, software
12 ~ distributed under the License is distributed on an "AS IS" BASIS,
13 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 ~ See the License for the specific language governing permissions and
15 ~ limitations under the License.
16 -->
Yuta HIGUCHIe76a24d2014-09-27 00:48:34 -070017<project xmlns="http://maven.apache.org/POM/4.0.0"
18 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4_0_0.xsd">
Brian O'Connor932d9412014-12-03 17:20:11 -080020 <modelVersion>4.0.0</modelVersion>
Yuta HIGUCHI382b2662014-10-02 15:44:12 -070021
Brian O'Connor932d9412014-12-03 17:20:11 -080022 <parent>
23 <groupId>org.onosproject</groupId>
24 <artifactId>onos-base</artifactId>
25 <version>1</version>
26 </parent>
27
28 <groupId>org.onosproject</groupId>
29 <artifactId>onos-build-conf</artifactId>
Ray Milkey7e285192017-07-20 15:45:28 -070030 <version>1.11.0-b2</version>
Ayaka Koshibe41ee2f02015-07-01 16:06:25 -070031 <description>Various ONOS build settings</description>
Brian O'Connor932d9412014-12-03 17:20:11 -080032
33 <properties>
34 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
35 </properties>
Yuta HIGUCHI382b2662014-10-02 15:44:12 -070036
Brian O'Connorbe95f682016-05-18 15:40:19 -070037 <dependencies>
38 <dependency>
39 <groupId>com.puppycrawl.tools</groupId>
40 <artifactId>checkstyle</artifactId>
Ray Milkey2d572dd2017-04-14 10:01:24 -070041 <version>6.19</version>
Brian O'Connorbe95f682016-05-18 15:40:19 -070042 </dependency>
43 </dependencies>
44
45 <build>
46 <plugins>
47 <plugin>
48 <groupId>org.apache.maven.plugins</groupId>
49 <artifactId>maven-compiler-plugin</artifactId>
50 <!-- TODO: update once following issue is fixed. -->
51 <!-- https://jira.codehaus.org/browse/MCOMPILER-205 -->
52 <version>2.5.1</version>
53 <configuration>
54 <source>1.8</source>
55 <target>1.8</target>
56 </configuration>
57 </plugin>
58 </plugins>
59 </build>
60
tom0eb04ca2014-08-25 14:34:51 -070061</project>
62