Updating logging-analytics version from 1.6.6 to 1.6.9
[ccsdk/parent.git] / dependencies-odl-bom / pom.xml
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/xsd/maven-4.0.0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4
5     <parent>
6         <groupId>org.opendaylight.odlparent</groupId>
7         <artifactId>odlparent</artifactId>
8         <version>8.1.1</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.onap.ccsdk.parent</groupId>
13     <artifactId>dependencies-odl-bom</artifactId>
14     <version>2.2.0-SNAPSHOT</version>
15     <packaging>pom</packaging>
16
17     <distributionManagement>
18         <repository>
19             <id>ecomp-releases</id>
20             <url>https://nexus.onap.org/content/repositories/releases</url>
21         </repository>
22         <snapshotRepository>
23             <id>ecomp-snapshots</id>
24             <url>https://nexus.onap.org/content/repositories/snapshots</url>
25         </snapshotRepository>
26     </distributionManagement>
27
28     <!-- Note: maven properties do not work as expected in BOMs.  The property settings are
29     not imported - so if you use a property in the version below, the pom that imports your BOM is
30     expected to have that property set - defeating the whole point of a BOM.  Moral : use constants,
31     not properties, for versions in BOMs -->
32     <dependencyManagement>
33         <dependencies>
34             <!-- Preinstalled OpenDaylight artifacts -->
35             <dependency>
36                 <groupId>${project.groupId}</groupId>
37                 <artifactId>installed-odl-bom</artifactId>
38                 <version>${project.version}</version>
39                 <type>pom</type>
40                 <scope>import</scope>
41             </dependency>
42
43             <!-- Other OpenDaylight dependencies -->
44             <dependency>
45                 <groupId>org.opendaylight.bgpcep</groupId>
46                 <artifactId>bgp-artifacts</artifactId>
47                 <version>0.15.0</version>
48                 <type>pom</type>
49                 <scope>import</scope>
50             </dependency>
51             <dependency>
52                 <groupId>org.opendaylight.controller</groupId>
53                 <artifactId>controller-artifacts</artifactId>
54                 <version>3.0.7</version>
55                 <type>pom</type>
56                 <scope>import</scope>
57             </dependency>
58             <dependency>
59                 <groupId>org.opendaylight.mdsal</groupId>
60                 <artifactId>mdsal-artifacts</artifactId>
61                 <version>7.0.6</version>
62                 <type>pom</type>
63                 <scope>import</scope>
64             </dependency>
65             <dependency>
66                 <groupId>org.opendaylight.netconf</groupId>
67                 <artifactId>netconf-artifacts</artifactId>
68                 <version>1.13.1</version>
69                 <type>pom</type>
70                 <scope>import</scope>
71             </dependency>
72             <dependency>
73                 <groupId>org.opendaylight.controller</groupId>
74                 <artifactId>sal-binding-broker-impl</artifactId>
75                 <version>1.13.1</version>
76             </dependency>
77             <dependency>
78                 <groupId>org.opendaylight.controller</groupId>
79                 <artifactId>sal-binding-broker-impl</artifactId>
80                 <version>1.13.1</version>
81                 <type>test-jar</type>
82                 <classifier>tests</classifier>
83                 <scope>test</scope>
84             </dependency>
85             <dependency>
86                 <groupId>org.opendaylight.controller</groupId>
87                 <artifactId>sal-test-model</artifactId>
88                 <version>1.13.1</version>
89             </dependency>
90             <dependency>
91                 <groupId>org.java-websocket</groupId>
92                 <artifactId>Java-WebSocket</artifactId>
93                 <version>1.4.0</version>
94             </dependency>
95             <!-- sdnr package dependencies -->
96             <dependency>
97                 <groupId>org.elasticsearch.client</groupId>
98                 <artifactId>elasticsearch-rest-client</artifactId>
99                 <version>6.4.3</version>
100             </dependency>
101             <dependency>
102                 <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
103                 <artifactId>dmaapClient</artifactId>
104                 <version>1.1.12</version>
105             </dependency>
106             <dependency>
107                 <groupId>com.google.code.findbugs</groupId>
108                 <artifactId>annotations</artifactId>
109                 <version>3.0.1</version>
110             </dependency>
111             <dependency>
112                 <groupId>org.glassfish.jersey</groupId>
113                 <artifactId>jersey-bom</artifactId>
114                 <version>2.27</version>
115                 <type>pom</type>
116                 <scope>import</scope>
117             </dependency>
118             <dependency>
119                 <groupId>commons-cli</groupId>
120                 <artifactId>commons-cli</artifactId>
121                 <version>1.3.1</version>
122             </dependency>
123             <dependency>
124                 <groupId>org.osgi</groupId>
125                 <artifactId>org.osgi.compendium</artifactId>
126                 <version>5.0.0</version>
127             </dependency>
128         </dependencies>
129     </dependencyManagement>
130
131     <build>
132         <plugins>
133             <plugin>
134                 <groupId>org.apache.maven.plugins</groupId>
135                 <artifactId>maven-deploy-plugin</artifactId>
136                 <!-- This version supports the "deployAtEnd" parameter -->
137                 <version>2.8</version>
138                 <configuration>
139                     <skip/>
140                     <deployAtEnd>true</deployAtEnd>
141                 </configuration>
142             </plugin>
143         </plugins>
144     </build>
145 </project>