Upgrade to Argon SR2
[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.2</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.onap.ccsdk.parent</groupId>
13     <artifactId>dependencies-odl-bom</artifactId>
14     <version>2.6.1-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.19.5</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>7.0.9</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>11.0.12</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>5.0.7</version>
69                 <type>pom</type>
70                 <scope>import</scope>
71             </dependency>
72             <dependency>
73                 <groupId>org.java-websocket</groupId>
74                 <artifactId>Java-WebSocket</artifactId>
75                 <version>1.5.2</version>
76             </dependency>
77             <!-- sdnr package dependencies -->
78             <dependency>
79                 <groupId>org.elasticsearch.client</groupId>
80                 <artifactId>elasticsearch-rest-client</artifactId>
81                 <version>7.13.4</version>
82             </dependency>
83             <dependency>
84                 <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
85                 <artifactId>dmaapClient</artifactId>
86                 <version>1.1.14</version>
87             </dependency>
88             <!-- Below provides javax.annotations -->
89             <dependency>
90                 <groupId>com.google.code.findbugs</groupId>
91                 <artifactId>annotations</artifactId>
92                 <version>3.0.1</version>
93             </dependency>
94             <!-- Below provides javax.xml.bind and javax.xml.bind.annotations -->
95             <dependency>
96                 <groupId>javax.xml.bind</groupId>
97                 <artifactId>jaxb-api</artifactId>
98                 <version>2.3.1</version>
99                 <exclusions>
100                     <exclusion>
101                         <groupId>*</groupId>
102                         <artifactId>*</artifactId>
103                     </exclusion>
104                 </exclusions>
105             </dependency>
106             <dependency>
107                 <groupId>jakarta.activation</groupId>
108                 <artifactId>jakarta.activation-api</artifactId>
109                 <version>2.0.1</version>
110             </dependency>
111             <!-- Below provides javax.jws -->
112             <dependency>
113                 <groupId>com.sun.xml.ws</groupId>
114                 <artifactId>jaxws-ri</artifactId>
115                 <version>2.3.4</version>
116                 <type>pom</type>
117             </dependency>
118             <dependency>
119                 <groupId>org.glassfish.jersey</groupId>
120                 <artifactId>jersey-bom</artifactId>
121                 <version>2.27</version>
122                 <type>pom</type>
123                 <scope>import</scope>
124             </dependency>
125             <dependency>
126                 <groupId>ch.qos.logback</groupId>
127                 <artifactId>logback-classic</artifactId>
128                 <version>1.2.11</version>
129             </dependency>
130             <dependency>
131                 <groupId>ch.qos.logback</groupId>
132                 <artifactId>logback-core</artifactId>
133                 <version>1.2.11</version>
134             </dependency>
135             <dependency>
136                 <groupId>commons-cli</groupId>
137                 <artifactId>commons-cli</artifactId>
138                 <version>1.3.1</version>
139             </dependency>
140             <dependency>
141                 <groupId>org.osgi</groupId>
142                 <artifactId>org.osgi.compendium</artifactId>
143                 <version>5.0.0</version>
144             </dependency>
145             <dependency>
146                 <groupId>org.dom4j</groupId>
147                 <artifactId>dom4j</artifactId>
148                 <version>2.1.3</version>
149             </dependency>
150
151             <!-- Below is required by com.google.guava : guava : jar : 28.2-jre -->
152             <dependency>
153                 <groupId>com.google.guava</groupId>
154                 <artifactId>listenablefuture</artifactId>
155                 <version>9999.0-empty-to-avoid-conflict-with-guava</version>
156             </dependency>
157             <!-- Below is no longer packaged within ODL distribution -->
158             <dependency>
159                 <groupId>com.typesafe.akka</groupId>
160                 <artifactId>akka-bom_2.13</artifactId>
161                 <version>2.6.12</version>
162                 <type>pom</type>
163                 <scope>import</scope>
164             </dependency>
165             <dependency>
166                 <groupId>org.apache.sshd</groupId>
167                 <artifactId>sshd-core</artifactId>
168                 <version>2.10.0</version>
169             </dependency>
170             <!-- Below highstreet odl artifacts -->
171             <dependency>
172                 <groupId>com.highstreet-technologies.aaa</groupId>
173                 <artifactId>aaa-shiro</artifactId>
174                 <version>0.13.5</version>
175             </dependency>
176             <dependency>
177                 <groupId>com.highstreet-technologies.opendaylight</groupId>
178                 <artifactId>odl-ready</artifactId>
179                 <version>3.2.0</version>
180             </dependency>
181             <dependency>
182                 <groupId>com.auth0</groupId>
183                 <artifactId>java-jwt</artifactId>
184                 <version>3.11.0</version>
185                 <exclusions>
186                     <exclusion>
187                         <groupId>*</groupId>
188                         <artifactId>*</artifactId>
189                     </exclusion>
190                 </exclusions>
191             </dependency>
192         </dependencies>
193     </dependencyManagement>
194
195     <build>
196         <plugins>
197             <plugin>
198                 <groupId>org.apache.maven.plugins</groupId>
199                 <artifactId>maven-deploy-plugin</artifactId>
200                 <!-- This version supports the "deployAtEnd" parameter -->
201                 <version>2.8</version>
202                 <configuration>
203                     <skip/>
204                     <deployAtEnd>true</deployAtEnd>
205                 </configuration>
206             </plugin>
207         </plugins>
208     </build>
209 </project>