blob: 9917925729156686e52a7bb4bcd0e19cbd0e868c [file] [log] [blame]
auehadea8dad2017-06-19 22:37:17 +09001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Brian O'Connor6547c0e2017-08-03 18:48:25 -07003 ~ Copyright 2017-present Open Networking Foundation
auehadea8dad2017-06-19 22:37:17 +09004 ~
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"
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/maven-v4_0_0.xsd">
20 <modelVersion>4.0.0</modelVersion>
21
22 <parent>
23 <artifactId>onos-dependencies</artifactId>
24 <groupId>org.onosproject</groupId>
25 <version>1.8.2</version>
26 <relativePath></relativePath>
27 </parent>
28
29 <artifactId>onos-pppoe</artifactId>
30 <version>1.9.0-SNAPSHOT</version>
31 <packaging>pom</packaging>
32
33 <description>PPPoE Management Applications</description>
34
35 <properties>
36 <onos.version>1.8.2</onos.version>
37 </properties>
38
39 <modules>
40 <module>api</module>
41 <module>driver</module>
42 <module>app</module>
43 </modules>
44
45 <dependencies>
46 <dependency>
47 <groupId>org.osgi</groupId>
48 <artifactId>org.osgi.compendium</artifactId>
49 </dependency>
50 <dependency>
51 <groupId>org.onosproject</groupId>
52 <artifactId>onos-api</artifactId>
53 <version>${onos.version}</version>
54 </dependency>
55 <dependency>
56 <groupId>org.onosproject</groupId>
57 <artifactId>onlab-junit</artifactId>
58 <scope>test</scope>
59 <version>${onos.version}</version>
60 </dependency>
61 <dependency>
62 <groupId>org.onosproject</groupId>
63 <artifactId>onos-core-serializers</artifactId>
64 <version>${onos.version}</version>
65 </dependency>
66 <dependency>
67 <groupId>org.apache.felix</groupId>
68 <artifactId>org.apache.felix.scr.annotations</artifactId>
69 </dependency>
70 </dependencies>
71
72 <build>
73 <plugins>
74 <plugin>
75 <groupId>org.apache.felix</groupId>
76 <artifactId>maven-scr-plugin</artifactId>
77 </plugin>
78 <plugin>
79 <groupId>org.apache.felix</groupId>
80 <artifactId>maven-bundle-plugin</artifactId>
81 </plugin>
82 <plugin>
83 <groupId>org.onosproject</groupId>
84 <artifactId>onos-maven-plugin</artifactId>
85 </plugin>
86 </plugins>
87 </build>
88</project>