Pruned duplicate dependencies and plugins from several core related pom.xml files.
Showing
11 changed files
with
69 additions
and
134 deletions
core/json/pom.xml
0 → 100644
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-json</artifactId> | ||
15 | + <packaging>bundle</packaging> | ||
16 | + | ||
17 | + <description>ONOS JSON encode/decode facilities</description> | ||
18 | + | ||
19 | + <dependencies> | ||
20 | + <dependency> | ||
21 | + <groupId>org.onlab.onos</groupId> | ||
22 | + <artifactId>onos-api</artifactId> | ||
23 | + </dependency> | ||
24 | + <dependency> | ||
25 | + <groupId>org.onlab.onos</groupId> | ||
26 | + <artifactId>onos-api</artifactId> | ||
27 | + <classifier>tests</classifier> | ||
28 | + <scope>test</scope> | ||
29 | + </dependency> | ||
30 | + | ||
31 | + <dependency> | ||
32 | + <groupId>org.onlab.onos</groupId> | ||
33 | + <artifactId>onos-core-trivial</artifactId> | ||
34 | + <version>${project.version}</version> | ||
35 | + <scope>test</scope> | ||
36 | + </dependency> | ||
37 | + | ||
38 | + <dependency> | ||
39 | + <groupId>org.apache.felix</groupId> | ||
40 | + <artifactId>org.apache.felix.scr.annotations</artifactId> | ||
41 | + </dependency> | ||
42 | + </dependencies> | ||
43 | + | ||
44 | + <build> | ||
45 | + <plugins> | ||
46 | + <plugin> | ||
47 | + <groupId>org.apache.felix</groupId> | ||
48 | + <artifactId>maven-scr-plugin</artifactId> | ||
49 | + </plugin> | ||
50 | + </plugins> | ||
51 | + </build> | ||
52 | + | ||
53 | +</project> |
... | @@ -19,21 +19,10 @@ | ... | @@ -19,21 +19,10 @@ |
19 | <dependencies> | 19 | <dependencies> |
20 | <dependency> | 20 | <dependency> |
21 | <groupId>org.onlab.onos</groupId> | 21 | <groupId>org.onlab.onos</groupId> |
22 | - <artifactId>onos-api</artifactId> | ||
23 | - </dependency> | ||
24 | - <dependency> | ||
25 | - <groupId>org.onlab.onos</groupId> | ||
26 | <artifactId>onos-core-serializers</artifactId> | 22 | <artifactId>onos-core-serializers</artifactId> |
27 | <version>${project.version}</version> | 23 | <version>${project.version}</version> |
28 | </dependency> | 24 | </dependency> |
29 | 25 | ||
30 | - | ||
31 | - <dependency> | ||
32 | - <groupId>org.onlab.onos</groupId> | ||
33 | - <artifactId>onlab-nio</artifactId> | ||
34 | - <version>${project.version}</version> | ||
35 | - </dependency> | ||
36 | - | ||
37 | <dependency> | 26 | <dependency> |
38 | <groupId>org.onlab.onos</groupId> | 27 | <groupId>org.onlab.onos</groupId> |
39 | <artifactId>onlab-netty</artifactId> | 28 | <artifactId>onlab-netty</artifactId> |
... | @@ -50,10 +39,6 @@ | ... | @@ -50,10 +39,6 @@ |
50 | </dependency> | 39 | </dependency> |
51 | 40 | ||
52 | <dependency> | 41 | <dependency> |
53 | - <groupId>org.apache.felix</groupId> | ||
54 | - <artifactId>org.apache.felix.scr.annotations</artifactId> | ||
55 | - </dependency> | ||
56 | - <dependency> | ||
57 | <groupId>com.google.guava</groupId> | 42 | <groupId>com.google.guava</groupId> |
58 | <artifactId>guava-testlib</artifactId> | 43 | <artifactId>guava-testlib</artifactId> |
59 | <scope>test</scope> | 44 | <scope>test</scope> |
... | @@ -69,13 +54,4 @@ | ... | @@ -69,13 +54,4 @@ |
69 | </dependency> | 54 | </dependency> |
70 | </dependencies> | 55 | </dependencies> |
71 | 56 | ||
72 | - <build> | ||
73 | - <plugins> | ||
74 | - <plugin> | ||
75 | - <groupId>org.apache.felix</groupId> | ||
76 | - <artifactId>maven-scr-plugin</artifactId> | ||
77 | - </plugin> | ||
78 | - </plugins> | ||
79 | - </build> | ||
80 | - | ||
81 | </project> | 57 | </project> | ... | ... |
... | @@ -19,10 +19,6 @@ | ... | @@ -19,10 +19,6 @@ |
19 | <dependencies> | 19 | <dependencies> |
20 | <dependency> | 20 | <dependency> |
21 | <groupId>org.onlab.onos</groupId> | 21 | <groupId>org.onlab.onos</groupId> |
22 | - <artifactId>onos-api</artifactId> | ||
23 | - </dependency> | ||
24 | - <dependency> | ||
25 | - <groupId>org.onlab.onos</groupId> | ||
26 | <artifactId>onos-core-serializers</artifactId> | 22 | <artifactId>onos-core-serializers</artifactId> |
27 | <version>${project.version}</version> | 23 | <version>${project.version}</version> |
28 | </dependency> | 24 | </dependency> |
... | @@ -38,23 +34,6 @@ | ... | @@ -38,23 +34,6 @@ |
38 | <scope>test</scope> | 34 | <scope>test</scope> |
39 | <version>${project.version}</version> | 35 | <version>${project.version}</version> |
40 | </dependency> | 36 | </dependency> |
41 | - <dependency> | ||
42 | - <groupId>org.apache.felix</groupId> | ||
43 | - <artifactId>org.apache.felix.scr.annotations</artifactId> | ||
44 | - </dependency> | ||
45 | - <dependency> | ||
46 | - <groupId>com.hazelcast</groupId> | ||
47 | - <artifactId>hazelcast</artifactId> | ||
48 | - </dependency> | ||
49 | </dependencies> | 37 | </dependencies> |
50 | 38 | ||
51 | - <build> | ||
52 | - <plugins> | ||
53 | - <plugin> | ||
54 | - <groupId>org.apache.felix</groupId> | ||
55 | - <artifactId>maven-scr-plugin</artifactId> | ||
56 | - </plugin> | ||
57 | - </plugins> | ||
58 | - </build> | ||
59 | - | ||
60 | </project> | 39 | </project> | ... | ... |
... | @@ -19,34 +19,13 @@ | ... | @@ -19,34 +19,13 @@ |
19 | <dependencies> | 19 | <dependencies> |
20 | <dependency> | 20 | <dependency> |
21 | <groupId>org.onlab.onos</groupId> | 21 | <groupId>org.onlab.onos</groupId> |
22 | - <artifactId>onos-api</artifactId> | ||
23 | - </dependency> | ||
24 | - <dependency> | ||
25 | - <groupId>org.onlab.onos</groupId> | ||
26 | <artifactId>onos-core-serializers</artifactId> | 22 | <artifactId>onos-core-serializers</artifactId> |
27 | <version>${project.version}</version> | 23 | <version>${project.version}</version> |
28 | </dependency> | 24 | </dependency> |
29 | <dependency> | 25 | <dependency> |
30 | - <groupId>org.apache.felix</groupId> | ||
31 | - <artifactId>org.apache.felix.scr.annotations</artifactId> | ||
32 | - </dependency> | ||
33 | - <dependency> | ||
34 | - <groupId>com.hazelcast</groupId> | ||
35 | - <artifactId>hazelcast</artifactId> | ||
36 | - </dependency> | ||
37 | - <dependency> | ||
38 | <groupId>org.apache.commons</groupId> | 26 | <groupId>org.apache.commons</groupId> |
39 | <artifactId>commons-lang3</artifactId> | 27 | <artifactId>commons-lang3</artifactId> |
40 | </dependency> | 28 | </dependency> |
41 | </dependencies> | 29 | </dependencies> |
42 | 30 | ||
43 | - <build> | ||
44 | - <plugins> | ||
45 | - <plugin> | ||
46 | - <groupId>org.apache.felix</groupId> | ||
47 | - <artifactId>maven-scr-plugin</artifactId> | ||
48 | - </plugin> | ||
49 | - </plugins> | ||
50 | - </build> | ||
51 | - | ||
52 | </project> | 31 | </project> | ... | ... |
... | @@ -21,30 +21,9 @@ | ... | @@ -21,30 +21,9 @@ |
21 | 21 | ||
22 | <dependencies> | 22 | <dependencies> |
23 | <dependency> | 23 | <dependency> |
24 | - <groupId>com.google.guava</groupId> | ||
25 | - <artifactId>guava</artifactId> | ||
26 | - </dependency> | ||
27 | - <dependency> | ||
28 | - <groupId>org.onlab.onos</groupId> | ||
29 | - <artifactId>onlab-misc</artifactId> | ||
30 | - </dependency> | ||
31 | - <dependency> | ||
32 | - <groupId>org.onlab.onos</groupId> | ||
33 | - <artifactId>onlab-junit</artifactId> | ||
34 | - </dependency> | ||
35 | - <dependency> | ||
36 | <groupId>com.hazelcast</groupId> | 24 | <groupId>com.hazelcast</groupId> |
37 | <artifactId>hazelcast</artifactId> | 25 | <artifactId>hazelcast</artifactId> |
38 | </dependency> | 26 | </dependency> |
39 | </dependencies> | 27 | </dependencies> |
40 | 28 | ||
41 | - <build> | ||
42 | - <plugins> | ||
43 | - <plugin> | ||
44 | - <groupId>org.apache.felix</groupId> | ||
45 | - <artifactId>maven-bundle-plugin</artifactId> | ||
46 | - </plugin> | ||
47 | - </plugins> | ||
48 | - </build> | ||
49 | - | ||
50 | </project> | 29 | </project> | ... | ... |
1 | <?xml version="1.0" encoding="UTF-8"?> | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | -<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/maven-v4_0_0.xsd"> | 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"> | ||
3 | <modelVersion>4.0.0</modelVersion> | 5 | <modelVersion>4.0.0</modelVersion> |
4 | 6 | ||
5 | <parent> | 7 | <parent> |
... | @@ -23,20 +25,13 @@ | ... | @@ -23,20 +25,13 @@ |
23 | 25 | ||
24 | <dependencies> | 26 | <dependencies> |
25 | <dependency> | 27 | <dependency> |
26 | - <groupId>com.google.guava</groupId> | ||
27 | - <artifactId>guava</artifactId> | ||
28 | - </dependency> | ||
29 | - <dependency> | ||
30 | <groupId>org.onlab.onos</groupId> | 28 | <groupId>org.onlab.onos</groupId> |
31 | - <artifactId>onlab-misc</artifactId> | 29 | + <artifactId>onos-api</artifactId> |
32 | - </dependency> | ||
33 | - <dependency> | ||
34 | - <groupId>org.onlab.onos</groupId> | ||
35 | - <artifactId>onlab-junit</artifactId> | ||
36 | </dependency> | 30 | </dependency> |
31 | + | ||
37 | <dependency> | 32 | <dependency> |
38 | - <groupId>com.hazelcast</groupId> | 33 | + <groupId>org.apache.felix</groupId> |
39 | - <artifactId>hazelcast</artifactId> | 34 | + <artifactId>org.apache.felix.scr.annotations</artifactId> |
40 | </dependency> | 35 | </dependency> |
41 | </dependencies> | 36 | </dependencies> |
42 | 37 | ||
... | @@ -44,7 +39,7 @@ | ... | @@ -44,7 +39,7 @@ |
44 | <plugins> | 39 | <plugins> |
45 | <plugin> | 40 | <plugin> |
46 | <groupId>org.apache.felix</groupId> | 41 | <groupId>org.apache.felix</groupId> |
47 | - <artifactId>maven-bundle-plugin</artifactId> | 42 | + <artifactId>maven-scr-plugin</artifactId> |
48 | </plugin> | 43 | </plugin> |
49 | </plugins> | 44 | </plugins> |
50 | </build> | 45 | </build> | ... | ... |
... | @@ -18,14 +18,6 @@ | ... | @@ -18,14 +18,6 @@ |
18 | 18 | ||
19 | <dependencies> | 19 | <dependencies> |
20 | <dependency> | 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 | - <dependency> | ||
29 | <groupId>com.esotericsoftware</groupId> | 21 | <groupId>com.esotericsoftware</groupId> |
30 | <artifactId>kryo</artifactId> | 22 | <artifactId>kryo</artifactId> |
31 | </dependency> | 23 | </dependency> |
... | @@ -36,13 +28,4 @@ | ... | @@ -36,13 +28,4 @@ |
36 | </dependency> | 28 | </dependency> |
37 | </dependencies> | 29 | </dependencies> |
38 | 30 | ||
39 | - <build> | ||
40 | - <plugins> | ||
41 | - <plugin> | ||
42 | - <groupId>org.apache.felix</groupId> | ||
43 | - <artifactId>maven-scr-plugin</artifactId> | ||
44 | - </plugin> | ||
45 | - </plugins> | ||
46 | - </build> | ||
47 | - | ||
48 | </project> | 31 | </project> | ... | ... |
... | @@ -18,26 +18,9 @@ | ... | @@ -18,26 +18,9 @@ |
18 | 18 | ||
19 | <dependencies> | 19 | <dependencies> |
20 | <dependency> | 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 | - <dependency> | ||
29 | <groupId>org.apache.commons</groupId> | 21 | <groupId>org.apache.commons</groupId> |
30 | <artifactId>commons-lang3</artifactId> | 22 | <artifactId>commons-lang3</artifactId> |
31 | </dependency> | 23 | </dependency> |
32 | </dependencies> | 24 | </dependencies> |
33 | 25 | ||
34 | - <build> | ||
35 | - <plugins> | ||
36 | - <plugin> | ||
37 | - <groupId>org.apache.felix</groupId> | ||
38 | - <artifactId>maven-scr-plugin</artifactId> | ||
39 | - </plugin> | ||
40 | - </plugins> | ||
41 | - </build> | ||
42 | - | ||
43 | </project> | 26 | </project> | ... | ... |
-
Please register or login to post a comment