blob: 0de6965641f802bfaf2ac42eb4f9f93b98d0c571 [file] [log] [blame]
Amit Ghosh47243cb2017-07-26 05:08:53 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Deepa vaddireddy0060f532017-08-04 06:46:05 +00003 ~ Copyright 2016-present Open Networking Foundation
Amit Ghosh47243cb2017-07-26 05:08:53 +01004 ~
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 -->
17<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">
18 <modelVersion>4.0.0</modelVersion>
19
Amit Ghosh47243cb2017-07-26 05:08:53 +010020 <groupId>org.opencord</groupId>
21 <artifactId>dhcpl2relay</artifactId>
Carmelo Casconede1e6e32019-07-15 19:39:08 -070022 <!-- TODO: Should the version be bumped since we are now producing
23 classes for JRE 11? -->
24 <version>2.0.0-SNAPSHOT</version>
Matteo Scandolo57af5d12019-04-29 17:11:41 -070025 <packaging>pom</packaging>
Amit Ghosh47243cb2017-07-26 05:08:53 +010026
27 <description>DHCP L2 Relay Agent</description>
28 <url>http://opencord.org</url>
29
30 <properties>
31 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Carmelo Casconede1e6e32019-07-15 19:39:08 -070032 <onos.version>2.2.0</onos.version>
33 <sadis.api.version>4.0.0-SNAPSHOT</sadis.api.version>
Amit Ghosh47243cb2017-07-26 05:08:53 +010034 </properties>
35
Matteo Scandolo57af5d12019-04-29 17:11:41 -070036 <modules>
37 <module>app</module>
38 <module>api</module>
39 </modules>
40
Amit Ghosh47243cb2017-07-26 05:08:53 +010041 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.apache.felix</groupId>
45 <artifactId>maven-bundle-plugin</artifactId>
Carmelo Casconede1e6e32019-07-15 19:39:08 -070046 <version>4.1.0</version>
47 <extensions>true</extensions>
48 <inherited>true</inherited>
Amit Ghosh47243cb2017-07-26 05:08:53 +010049 </plugin>
50
51 <plugin>
Carmelo Casconede1e6e32019-07-15 19:39:08 -070052 <groupId>org.apache.maven.plugins</groupId>
53 <artifactId>maven-compiler-plugin</artifactId>
54 <version>3.8.0</version>
55 <configuration>
56 <release>11</release>
57 </configuration>
58 <inherited>true</inherited>
Amit Ghosh47243cb2017-07-26 05:08:53 +010059 </plugin>
60 </plugins>
61 </build>
62
63 <repositories>
64 <repository>
65 <id>central</id>
66 <name>Central Repository</name>
67 <url>http://repo.maven.apache.org/maven2</url>
68 <layout>default</layout>
69 <snapshots>
70 <enabled>false</enabled>
71 </snapshots>
72 <releases>
73 <enabled>true</enabled>
74 <updatePolicy>always</updatePolicy>
75 <checksumPolicy>fail</checksumPolicy>
76 </releases>
77 </repository>
78
79 <repository>
80 <id>snapshots</id>
81 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
82 <snapshots>
83 <enabled>true</enabled>
84 <updatePolicy>always</updatePolicy>
85 <checksumPolicy>fail</checksumPolicy>
86 </snapshots>
87 </repository>
88 </repositories>
Carmelo Casconede1e6e32019-07-15 19:39:08 -070089 <distributionManagement>
90 <snapshotRepository>
91 <id>ossrh</id>
92 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
93 </snapshotRepository>
94 </distributionManagement>
Amit Ghosh47243cb2017-07-26 05:08:53 +010095</project>