tom

Preparing new projects for separate distributed store, trivial sstore and the networking cores.

1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<project xmlns="http://maven.apache.org/POM/4.0.0"
3 + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 + <modelVersion>4.0.0</modelVersion>
6 +
7 + <parent>
8 + <groupId>org.onlab.onos</groupId>
9 + <artifactId>onos-core</artifactId>
10 + <version>1.0.0-SNAPSHOT</version>
11 + <relativePath>../pom.xml</relativePath>
12 + </parent>
13 +
14 + <artifactId>onos-core-net</artifactId>
15 + <packaging>bundle</packaging>
16 +
17 + <description>ONOS network control core subsystems</description>
18 +
19 + <dependencies>
20 + <dependency>
21 + <groupId>org.onlab.onos</groupId>
22 + <artifactId>onos-api</artifactId>
23 + </dependency>
24 + <dependency>
25 + <groupId>org.apache.felix</groupId>
26 + <artifactId>org.apache.felix.scr.annotations</artifactId>
27 + </dependency>
28 + </dependencies>
29 +
30 + <build>
31 + <plugins>
32 + <plugin>
33 + <groupId>org.apache.felix</groupId>
34 + <artifactId>maven-scr-plugin</artifactId>
35 + </plugin>
36 + </plugins>
37 + </build>
38 +
39 +</project>
1 +package org.onlab.onos.net;
2 +
3 +/**
4 + * Created by tom on 9/19/14.
5 + */
6 +public class DeleteMe {
7 +}
...@@ -18,6 +18,8 @@ ...@@ -18,6 +18,8 @@
18 18
19 <modules> 19 <modules>
20 <module>api</module> 20 <module>api</module>
21 + <module>net</module>
22 + <module>store</module>
21 <module>trivial</module> 23 <module>trivial</module>
22 </modules> 24 </modules>
23 25
......
1 +<?xml version="1.0" encoding="UTF-8"?>
2 +<project xmlns="http://maven.apache.org/POM/4.0.0"
3 + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
5 + <modelVersion>4.0.0</modelVersion>
6 +
7 + <parent>
8 + <groupId>org.onlab.onos</groupId>
9 + <artifactId>onos-core</artifactId>
10 + <version>1.0.0-SNAPSHOT</version>
11 + <relativePath>../pom.xml</relativePath>
12 + </parent>
13 +
14 + <artifactId>onos-core-store</artifactId>
15 + <packaging>bundle</packaging>
16 +
17 + <description>ONOS distributed store subsystems</description>
18 +
19 + <dependencies>
20 + <dependency>
21 + <groupId>org.onlab.onos</groupId>
22 + <artifactId>onos-api</artifactId>
23 + </dependency>
24 + <dependency>
25 + <groupId>org.apache.felix</groupId>
26 + <artifactId>org.apache.felix.scr.annotations</artifactId>
27 + </dependency>
28 + </dependencies>
29 +
30 + <build>
31 + <plugins>
32 + <plugin>
33 + <groupId>org.apache.felix</groupId>
34 + <artifactId>maven-scr-plugin</artifactId>
35 + </plugin>
36 + </plugins>
37 + </build>
38 +
39 +</project>
1 +package org.onlab.onos.store.device.impl;
2 +
3 +/**
4 + * Created by tom on 9/19/14.
5 + */
6 +public class DeleteMe {
7 +}
...@@ -55,7 +55,7 @@ ssh $remote " ...@@ -55,7 +55,7 @@ ssh $remote "
55 $onos cluster:feature-install onos onos-api 1>>$LOG 2>&1 55 $onos cluster:feature-install onos onos-api 1>>$LOG 2>&1
56 $onos cluster:feature-install onos onos-core 1>>$LOG 2>&1 56 $onos cluster:feature-install onos onos-core 1>>$LOG 2>&1
57 $onos cluster:feature-install onos onos-openflow 1>>$LOG 2>&1 57 $onos cluster:feature-install onos onos-openflow 1>>$LOG 2>&1
58 - $onos cluster:feature-install onoe onos-cli 1>>$LOG 2>&1 58 + $onos cluster:feature-install onos onos-cli 1>>$LOG 2>&1
59 # $onos cluster:feature-install onos onos-gui 1>>$LOG 2>&1 59 # $onos cluster:feature-install onos onos-gui 1>>$LOG 2>&1
60 # $onos cluster:feature-install onos onos-rest 1>>$LOG 2>&1 60 # $onos cluster:feature-install onos onos-rest 1>>$LOG 2>&1
61 $onos cluster:feature-install onos onos-app-tvue 1>>$LOG 2>&1 61 $onos cluster:feature-install onos onos-app-tvue 1>>$LOG 2>&1
......