Hooking ospf into the overall build.
More fixes are required to allow ospf/protocol and ospf/ctl to build. Change-Id: I6367178a5dff56f13e4c67c4503bc59b7deb45cb
Showing
7 changed files
with
47 additions
and
94 deletions
... | @@ -17,6 +17,7 @@ | ... | @@ -17,6 +17,7 @@ |
17 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
18 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | 18 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
19 | <modelVersion>4.0.0</modelVersion> | 19 | <modelVersion>4.0.0</modelVersion> |
20 | + | ||
20 | <parent> | 21 | <parent> |
21 | <artifactId>onos-apps</artifactId> | 22 | <artifactId>onos-apps</artifactId> |
22 | <groupId>org.onosproject</groupId> | 23 | <groupId>org.onosproject</groupId> |
... | @@ -24,30 +25,21 @@ | ... | @@ -24,30 +25,21 @@ |
24 | <relativePath>../pom.xml</relativePath> | 25 | <relativePath>../pom.xml</relativePath> |
25 | </parent> | 26 | </parent> |
26 | 27 | ||
27 | - <groupId>org.onosproject</groupId> | ||
28 | <artifactId>onos-events</artifactId> | 28 | <artifactId>onos-events</artifactId> |
29 | <packaging>bundle</packaging> | 29 | <packaging>bundle</packaging> |
30 | 30 | ||
31 | <description>App to display ONOS event history</description> | 31 | <description>App to display ONOS event history</description> |
32 | - <url>http://onosproject.org</url> | ||
33 | 32 | ||
34 | <properties> | 33 | <properties> |
35 | - <onos.version>1.5.0-SNAPSHOT</onos.version> | ||
36 | <onos.app.name>org.onosproject.events</onos.app.name> | 34 | <onos.app.name>org.onosproject.events</onos.app.name> |
37 | <onos.app.category>default</onos.app.category> | 35 | <onos.app.category>default</onos.app.category> |
38 | <onos.app.url>http://onosproject.org</onos.app.url> | 36 | <onos.app.url>http://onosproject.org</onos.app.url> |
39 | - <onos.app.readme>ONOS event history display application. | 37 | + <onos.app.readme>ONOS event history display application.</onos.app.readme> |
40 | - </onos.app.readme> | ||
41 | </properties> | 38 | </properties> |
42 | 39 | ||
43 | <dependencies> | 40 | <dependencies> |
44 | <dependency> | 41 | <dependency> |
45 | <groupId>org.onosproject</groupId> | 42 | <groupId>org.onosproject</groupId> |
46 | - <artifactId>onos-api</artifactId> | ||
47 | - </dependency> | ||
48 | - | ||
49 | - <dependency> | ||
50 | - <groupId>org.onosproject</groupId> | ||
51 | <artifactId>onlab-osgi</artifactId> | 43 | <artifactId>onlab-osgi</artifactId> |
52 | </dependency> | 44 | </dependency> |
53 | 45 | ||
... | @@ -98,63 +90,4 @@ | ... | @@ -98,63 +90,4 @@ |
98 | </dependency> | 90 | </dependency> |
99 | </dependencies> | 91 | </dependencies> |
100 | 92 | ||
101 | - <build> | ||
102 | - <plugins> | ||
103 | - <plugin> | ||
104 | - <groupId>org.apache.felix</groupId> | ||
105 | - <artifactId>maven-bundle-plugin</artifactId> | ||
106 | - <extensions>true</extensions> | ||
107 | - </plugin> | ||
108 | - <plugin> | ||
109 | - <groupId>org.apache.maven.plugins</groupId> | ||
110 | - <artifactId>maven-compiler-plugin</artifactId> | ||
111 | - </plugin> | ||
112 | - <plugin> | ||
113 | - <groupId>org.apache.felix</groupId> | ||
114 | - <artifactId>maven-scr-plugin</artifactId> | ||
115 | - <executions> | ||
116 | - <execution> | ||
117 | - <id>generate-scr-srcdescriptor</id> | ||
118 | - <goals> | ||
119 | - <goal>scr</goal> | ||
120 | - </goals> | ||
121 | - </execution> | ||
122 | - </executions> | ||
123 | - <configuration> | ||
124 | - <supportedProjectTypes> | ||
125 | - <supportedProjectType>bundle</supportedProjectType> | ||
126 | - <supportedProjectType>war</supportedProjectType> | ||
127 | - </supportedProjectTypes> | ||
128 | - </configuration> | ||
129 | - </plugin> | ||
130 | - <plugin> | ||
131 | - <groupId>org.onosproject</groupId> | ||
132 | - <artifactId>onos-maven-plugin</artifactId> | ||
133 | - <executions> | ||
134 | - <execution> | ||
135 | - <id>cfg</id> | ||
136 | - <phase>generate-resources</phase> | ||
137 | - <goals> | ||
138 | - <goal>cfg</goal> | ||
139 | - </goals> | ||
140 | - </execution> | ||
141 | - <execution> | ||
142 | - <id>swagger</id> | ||
143 | - <phase>generate-sources</phase> | ||
144 | - <goals> | ||
145 | - <goal>swagger</goal> | ||
146 | - </goals> | ||
147 | - </execution> | ||
148 | - <execution> | ||
149 | - <id>app</id> | ||
150 | - <phase>package</phase> | ||
151 | - <goals> | ||
152 | - <goal>app</goal> | ||
153 | - </goals> | ||
154 | - </execution> | ||
155 | - </executions> | ||
156 | - </plugin> | ||
157 | - </plugins> | ||
158 | - </build> | ||
159 | - | ||
160 | </project> | 93 | </project> | ... | ... |
... | @@ -22,7 +22,7 @@ | ... | @@ -22,7 +22,7 @@ |
22 | <parent> | 22 | <parent> |
23 | <groupId>org.onosproject</groupId> | 23 | <groupId>org.onosproject</groupId> |
24 | <artifactId>onos-ospf</artifactId> | 24 | <artifactId>onos-ospf</artifactId> |
25 | - <version>1.4.0-SNAPSHOT</version> | 25 | + <version>1.5.0-SNAPSHOT</version> |
26 | <relativePath>../pom.xml</relativePath> | 26 | <relativePath>../pom.xml</relativePath> |
27 | </parent> | 27 | </parent> |
28 | 28 | ||
... | @@ -40,22 +40,6 @@ | ... | @@ -40,22 +40,6 @@ |
40 | <groupId>org.onosproject</groupId> | 40 | <groupId>org.onosproject</groupId> |
41 | <artifactId>onos-api</artifactId> | 41 | <artifactId>onos-api</artifactId> |
42 | </dependency> | 42 | </dependency> |
43 | - | ||
44 | </dependencies> | 43 | </dependencies> |
45 | - <build> | ||
46 | - <plugins> | ||
47 | - <plugin> | ||
48 | - <groupId>org.apache.felix</groupId> | ||
49 | - <artifactId>maven-bundle-plugin</artifactId> | ||
50 | - <configuration> | ||
51 | - <instructions> | ||
52 | - <Export-Package> | ||
53 | - org.onosproject.ospf.* | ||
54 | - </Export-Package> | ||
55 | - </instructions> | ||
56 | - </configuration> | ||
57 | - </plugin> | ||
58 | - </plugins> | ||
59 | - </build> | ||
60 | 44 | ||
61 | </project> | 45 | </project> | ... | ... |
... | @@ -21,14 +21,14 @@ | ... | @@ -21,14 +21,14 @@ |
21 | <parent> | 21 | <parent> |
22 | <groupId>org.onosproject</groupId> | 22 | <groupId>org.onosproject</groupId> |
23 | <artifactId>onos-ospf</artifactId> | 23 | <artifactId>onos-ospf</artifactId> |
24 | - <version>1.4.0-SNAPSHOT</version> | 24 | + <version>1.5.0-SNAPSHOT</version> |
25 | <relativePath>../pom.xml</relativePath> | 25 | <relativePath>../pom.xml</relativePath> |
26 | </parent> | 26 | </parent> |
27 | 27 | ||
28 | <artifactId>onos-ospf-ctl</artifactId> | 28 | <artifactId>onos-ospf-ctl</artifactId> |
29 | <packaging>bundle</packaging> | 29 | <packaging>bundle</packaging> |
30 | 30 | ||
31 | - <description>ONOS Ospf controller subsystem API</description> | 31 | + <description>ONOS OSPF controller subsystem API</description> |
32 | 32 | ||
33 | <dependencies> | 33 | <dependencies> |
34 | <dependency> | 34 | <dependency> | ... | ... |
protocols/ospf/pom.xml
0 → 100755
1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
2 | +<!-- | ||
3 | + ~ Copyright 2016 Open Networking Laboratory | ||
4 | + ~ | ||
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 | + <groupId>org.onosproject</groupId> | ||
24 | + <artifactId>onos-protocols</artifactId> | ||
25 | + <version>1.5.0-SNAPSHOT</version> | ||
26 | + <relativePath>../pom.xml</relativePath> | ||
27 | + </parent> | ||
28 | + | ||
29 | + <artifactId>onos-ospf</artifactId> | ||
30 | + <packaging>pom</packaging> | ||
31 | + | ||
32 | + <description>ONOS OSPF Protocol subsystem</description> | ||
33 | + | ||
34 | + <modules> | ||
35 | + <module>api</module> | ||
36 | + <!--module>ctl</module--> | ||
37 | + <!--module>protocol</module--> | ||
38 | + </modules> | ||
39 | + | ||
40 | +</project> |
... | @@ -21,7 +21,7 @@ | ... | @@ -21,7 +21,7 @@ |
21 | <parent> | 21 | <parent> |
22 | <groupId>org.onosproject</groupId> | 22 | <groupId>org.onosproject</groupId> |
23 | <artifactId>onos-ospf</artifactId> | 23 | <artifactId>onos-ospf</artifactId> |
24 | - <version>1.4.0-SNAPSHOT</version> | 24 | + <version>1.5.0-SNAPSHOT</version> |
25 | <relativePath>../pom.xml</relativePath> | 25 | <relativePath>../pom.xml</relativePath> |
26 | </parent> | 26 | </parent> |
27 | 27 | ||
... | @@ -35,11 +35,6 @@ | ... | @@ -35,11 +35,6 @@ |
35 | <artifactId>onos-ospf-api</artifactId> | 35 | <artifactId>onos-ospf-api</artifactId> |
36 | <version>${project.version}</version> | 36 | <version>${project.version}</version> |
37 | </dependency> | 37 | </dependency> |
38 | - <dependency> | ||
39 | - <groupId>org.onosproject</groupId> | ||
40 | - <artifactId>onos-ospf-api</artifactId> | ||
41 | - <version>1.4.0-SNAPSHOT</version> | ||
42 | - </dependency> | ||
43 | </dependencies> | 38 | </dependencies> |
44 | 39 | ||
45 | </project> | 40 | </project> | ... | ... |
-
Please register or login to post a comment