Timoney, Dan (dt5972) | bbcacd2 | 2019-06-18 10:42:07 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Singal, Kapil (ks220y) | 2e8a4da | 2019-10-01 22:31:50 -0400 | [diff] [blame] | 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"> |
Timoney, Dan (dt5972) | bbcacd2 | 2019-06-18 10:42:07 -0400 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
Timoney, Dan (dt5972) | bbcacd2 | 2019-06-18 10:42:07 -0400 | [diff] [blame] | 4 | |
| 5 | <parent> |
| 6 | <groupId>org.opendaylight.odlparent</groupId> |
| 7 | <artifactId>odlparent</artifactId> |
Singal, Kapil (ks220y) | 7fb8832 | 2021-07-08 20:39:34 -0400 | [diff] [blame] | 8 | <version>8.1.2</version> |
Singal, Kapil (ks220y) | 2e8a4da | 2019-10-01 22:31:50 -0400 | [diff] [blame] | 9 | <relativePath/> |
Timoney, Dan (dt5972) | bbcacd2 | 2019-06-18 10:42:07 -0400 | [diff] [blame] | 10 | </parent> |
| 11 | |
Singal, Kapil (ks220y) | 2e8a4da | 2019-10-01 22:31:50 -0400 | [diff] [blame] | 12 | <groupId>org.onap.ccsdk.parent</groupId> |
| 13 | <artifactId>dependencies-odl-bom</artifactId> |
Dan Timoney | 1c6dd26 | 2022-08-03 16:36:42 -0400 | [diff] [blame] | 14 | <version>2.4.2-SNAPSHOT</version> |
Singal, Kapil (ks220y) | 2e8a4da | 2019-10-01 22:31:50 -0400 | [diff] [blame] | 15 | <packaging>pom</packaging> |
Timoney, Dan (dt5972) | bbcacd2 | 2019-06-18 10:42:07 -0400 | [diff] [blame] | 16 | |
Timoney, Dan (dt5972) | 54fc4ce | 2019-06-25 09:26:00 -0400 | [diff] [blame] | 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> |
Timoney, Dan (dt5972) | bbcacd2 | 2019-06-18 10:42:07 -0400 | [diff] [blame] | 27 | |
Timoney, Dan (dt5972) | bbcacd2 | 2019-06-18 10:42:07 -0400 | [diff] [blame] | 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 --> |
Timoney, Dan (dt5972) | bbcacd2 | 2019-06-18 10:42:07 -0400 | [diff] [blame] | 32 | <dependencyManagement> |
| 33 | <dependencies> |
Dan Timoney | 7f23907 | 2020-06-01 09:28:12 -0400 | [diff] [blame] | 34 | <!-- Preinstalled OpenDaylight artifacts --> |
Timoney, Dan (dt5972) | bbcacd2 | 2019-06-18 10:42:07 -0400 | [diff] [blame] | 35 | <dependency> |
Dan Timoney | 7f23907 | 2020-06-01 09:28:12 -0400 | [diff] [blame] | 36 | <groupId>${project.groupId}</groupId> |
| 37 | <artifactId>installed-odl-bom</artifactId> |
| 38 | <version>${project.version}</version> |
Dan Timoney | b4c9d0b | 2020-04-10 13:50:09 -0400 | [diff] [blame] | 39 | <type>pom</type> |
| 40 | <scope>import</scope> |
| 41 | </dependency> |
Dan Timoney | 7f23907 | 2020-06-01 09:28:12 -0400 | [diff] [blame] | 42 | |
Dan Timoney | b69bc4e | 2020-06-05 08:40:49 -0400 | [diff] [blame] | 43 | <!-- Other OpenDaylight dependencies --> |
| 44 | <dependency> |
| 45 | <groupId>org.opendaylight.bgpcep</groupId> |
| 46 | <artifactId>bgp-artifacts</artifactId> |
Michael Dürre | d3168e3 | 2022-06-13 05:23:15 +0200 | [diff] [blame] | 47 | <version>0.17.5</version> |
Dan Timoney | b69bc4e | 2020-06-05 08:40:49 -0400 | [diff] [blame] | 48 | <type>pom</type> |
| 49 | <scope>import</scope> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.opendaylight.controller</groupId> |
Michael DÜrre | c6bdd9a | 2020-12-01 13:34:56 +0100 | [diff] [blame] | 53 | <artifactId>controller-artifacts</artifactId> |
Michael Dürre | d3168e3 | 2022-06-13 05:23:15 +0200 | [diff] [blame] | 54 | <version>5.0.5</version> |
Michael DÜrre | c6bdd9a | 2020-12-01 13:34:56 +0100 | [diff] [blame] | 55 | <type>pom</type> |
| 56 | <scope>import</scope> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.opendaylight.mdsal</groupId> |
Dan Timoney | b69bc4e | 2020-06-05 08:40:49 -0400 | [diff] [blame] | 60 | <artifactId>mdsal-artifacts</artifactId> |
Michael Dürre | d3168e3 | 2022-06-13 05:23:15 +0200 | [diff] [blame] | 61 | <version>9.0.4</version> |
Michael DÜrre | c6bdd9a | 2020-12-01 13:34:56 +0100 | [diff] [blame] | 62 | <type>pom</type> |
| 63 | <scope>import</scope> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>org.opendaylight.netconf</groupId> |
| 67 | <artifactId>netconf-artifacts</artifactId> |
Michael Dürre | d3168e3 | 2022-06-13 05:23:15 +0200 | [diff] [blame] | 68 | <version>3.0.5</version> |
Dan Timoney | b69bc4e | 2020-06-05 08:40:49 -0400 | [diff] [blame] | 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> |
Michael Dürre | d3168e3 | 2022-06-13 05:23:15 +0200 | [diff] [blame] | 75 | <version>3.0.5</version> |
Dan Timoney | b69bc4e | 2020-06-05 08:40:49 -0400 | [diff] [blame] | 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>org.opendaylight.controller</groupId> |
| 79 | <artifactId>sal-binding-broker-impl</artifactId> |
Michael Dürre | d3168e3 | 2022-06-13 05:23:15 +0200 | [diff] [blame] | 80 | <version>3.0.5</version> |
Dan Timoney | b69bc4e | 2020-06-05 08:40:49 -0400 | [diff] [blame] | 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> |
Michael Dürre | d3168e3 | 2022-06-13 05:23:15 +0200 | [diff] [blame] | 88 | <version>3.0.5</version> |
Timoney, Dan (dt5972) | 135e407 | 2019-07-01 13:08:58 -0400 | [diff] [blame] | 89 | </dependency> |
Timoney, Dan (dt5972) | bbcacd2 | 2019-06-18 10:42:07 -0400 | [diff] [blame] | 90 | <dependency> |
Timoney, Dan (dt5972) | bbcacd2 | 2019-06-18 10:42:07 -0400 | [diff] [blame] | 91 | <groupId>org.java-websocket</groupId> |
| 92 | <artifactId>Java-WebSocket</artifactId> |
Dan Timoney | bc67c40 | 2021-08-05 10:46:18 -0400 | [diff] [blame] | 93 | <version>1.5.2</version> |
Timoney, Dan (dt5972) | bbcacd2 | 2019-06-18 10:42:07 -0400 | [diff] [blame] | 94 | </dependency> |
Michael Dürre | 66430cc | 2020-08-24 14:39:08 +0200 | [diff] [blame] | 95 | <!-- sdnr package dependencies --> |
| 96 | <dependency> |
| 97 | <groupId>org.elasticsearch.client</groupId> |
| 98 | <artifactId>elasticsearch-rest-client</artifactId> |
Dan Timoney | bc67c40 | 2021-08-05 10:46:18 -0400 | [diff] [blame] | 99 | <version>7.13.4</version> |
Michael Dürre | 66430cc | 2020-08-24 14:39:08 +0200 | [diff] [blame] | 100 | </dependency> |
| 101 | <dependency> |
| 102 | <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId> |
| 103 | <artifactId>dmaapClient</artifactId> |
Michael Dürre | 7e70156 | 2022-07-26 08:21:50 +0200 | [diff] [blame] | 104 | <version>1.1.13-SNAPSHOT</version> |
Michael Dürre | 66430cc | 2020-08-24 14:39:08 +0200 | [diff] [blame] | 105 | </dependency> |
Singal, Kapil (ks220y) | b2db3c4 | 2021-06-08 12:00:17 -0400 | [diff] [blame] | 106 | <!-- Below provides javax.annotations --> |
Michael DÜrre | c6bdd9a | 2020-12-01 13:34:56 +0100 | [diff] [blame] | 107 | <dependency> |
| 108 | <groupId>com.google.code.findbugs</groupId> |
| 109 | <artifactId>annotations</artifactId> |
Singal, Kapil (ks220y) | b473d3c | 2021-06-07 19:47:37 -0400 | [diff] [blame] | 110 | <version>3.0.1</version> |
Michael DÜrre | c6bdd9a | 2020-12-01 13:34:56 +0100 | [diff] [blame] | 111 | </dependency> |
Singal, Kapil (ks220y) | b2db3c4 | 2021-06-08 12:00:17 -0400 | [diff] [blame] | 112 | <!-- Below provides javax.xml.bind and javax.xml.bind.annotations --> |
| 113 | <dependency> |
| 114 | <groupId>javax.xml.bind</groupId> |
| 115 | <artifactId>jaxb-api</artifactId> |
| 116 | <version>2.3.1</version> |
Singal, Kapil (ks220y) | 0c8b420 | 2021-06-09 09:54:36 -0400 | [diff] [blame] | 117 | <exclusions> |
| 118 | <exclusion> |
| 119 | <groupId>*</groupId> |
| 120 | <artifactId>*</artifactId> |
| 121 | </exclusion> |
| 122 | </exclusions> |
| 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>jakarta.activation</groupId> |
| 126 | <artifactId>jakarta.activation-api</artifactId> |
| 127 | <version>2.0.1</version> |
Singal, Kapil (ks220y) | b2db3c4 | 2021-06-08 12:00:17 -0400 | [diff] [blame] | 128 | </dependency> |
| 129 | <!-- Below provides javax.jws --> |
| 130 | <dependency> |
| 131 | <groupId>com.sun.xml.ws</groupId> |
| 132 | <artifactId>jaxws-ri</artifactId> |
| 133 | <version>2.3.4</version> |
| 134 | <type>pom</type> |
| 135 | </dependency> |
Michael DÜrre | c6bdd9a | 2020-12-01 13:34:56 +0100 | [diff] [blame] | 136 | <dependency> |
| 137 | <groupId>org.glassfish.jersey</groupId> |
| 138 | <artifactId>jersey-bom</artifactId> |
| 139 | <version>2.27</version> |
Michael DÜrre | c6bdd9a | 2020-12-01 13:34:56 +0100 | [diff] [blame] | 140 | <type>pom</type> |
Singal, Kapil (ks220y) | 9714cfc | 2021-05-17 13:23:11 -0400 | [diff] [blame] | 141 | <scope>import</scope> |
Michael DÜrre | c6bdd9a | 2020-12-01 13:34:56 +0100 | [diff] [blame] | 142 | </dependency> |
| 143 | <dependency> |
Michael DÜrre | 7bb133e | 2022-01-18 10:06:31 +0100 | [diff] [blame] | 144 | <groupId>ch.qos.logback</groupId> |
| 145 | <artifactId>logback-classic</artifactId> |
Dan Timoney | 59d34e4 | 2022-07-25 09:36:01 -0400 | [diff] [blame] | 146 | <version>1.2.11</version> |
Michael DÜrre | 7bb133e | 2022-01-18 10:06:31 +0100 | [diff] [blame] | 147 | </dependency> |
| 148 | <dependency> |
| 149 | <groupId>ch.qos.logback</groupId> |
| 150 | <artifactId>logback-core</artifactId> |
Dan Timoney | 59d34e4 | 2022-07-25 09:36:01 -0400 | [diff] [blame] | 151 | <version>1.2.11</version> |
Michael DÜrre | 7bb133e | 2022-01-18 10:06:31 +0100 | [diff] [blame] | 152 | </dependency> |
| 153 | <dependency> |
Michael DÜrre | c6bdd9a | 2020-12-01 13:34:56 +0100 | [diff] [blame] | 154 | <groupId>commons-cli</groupId> |
| 155 | <artifactId>commons-cli</artifactId> |
| 156 | <version>1.3.1</version> |
| 157 | </dependency> |
Michael DÜrre | 67cb8d5 | 2021-04-12 13:11:00 +0200 | [diff] [blame] | 158 | <dependency> |
| 159 | <groupId>org.osgi</groupId> |
| 160 | <artifactId>org.osgi.compendium</artifactId> |
| 161 | <version>5.0.0</version> |
| 162 | </dependency> |
Michael DÜrre | 7bb133e | 2022-01-18 10:06:31 +0100 | [diff] [blame] | 163 | <dependency> |
| 164 | <groupId>org.dom4j</groupId> |
| 165 | <artifactId>dom4j</artifactId> |
| 166 | <version>2.1.3</version> |
| 167 | </dependency> |
| 168 | |
Singal, Kapil (ks220y) | b2db3c4 | 2021-06-08 12:00:17 -0400 | [diff] [blame] | 169 | <!-- Below is required by com.google.guava : guava : jar : 28.2-jre --> |
| 170 | <dependency> |
| 171 | <groupId>com.google.guava</groupId> |
| 172 | <artifactId>listenablefuture</artifactId> |
| 173 | <version>9999.0-empty-to-avoid-conflict-with-guava</version> |
| 174 | </dependency> |
Singal, Kapil (ks220y) | 7bc072e | 2021-06-09 17:31:32 -0400 | [diff] [blame] | 175 | <!-- Below is no longer packaged within ODL distribution --> |
| 176 | <dependency> |
| 177 | <groupId>com.typesafe.akka</groupId> |
| 178 | <artifactId>akka-bom_2.13</artifactId> |
| 179 | <version>2.6.12</version> |
| 180 | <type>pom</type> |
| 181 | <scope>import</scope> |
| 182 | </dependency> |
| 183 | <dependency> |
| 184 | <groupId>org.apache.sshd</groupId> |
| 185 | <artifactId>sshd-core</artifactId> |
Dan Timoney | 29e355f | 2022-07-21 08:21:16 -0400 | [diff] [blame] | 186 | <version>2.8.0</version> |
Singal, Kapil (ks220y) | 7bc072e | 2021-06-09 17:31:32 -0400 | [diff] [blame] | 187 | </dependency> |
Michael DÜrre | b91d791 | 2021-07-07 07:28:02 +0200 | [diff] [blame] | 188 | <!-- Below highstreet odl artifacts --> |
| 189 | <dependency> |
| 190 | <groupId>com.highstreet-technologies.aaa</groupId> |
| 191 | <artifactId>aaa-shiro</artifactId> |
Michael DÜrre | 4f50392 | 2021-10-29 07:53:09 +0200 | [diff] [blame] | 192 | <version>0.13.5</version> |
Michael DÜrre | b91d791 | 2021-07-07 07:28:02 +0200 | [diff] [blame] | 193 | </dependency> |
| 194 | <dependency> |
| 195 | <groupId>com.highstreet-technologies.opendaylight</groupId> |
| 196 | <artifactId>odl-ready</artifactId> |
Michael DÜrre | 4f50392 | 2021-10-29 07:53:09 +0200 | [diff] [blame] | 197 | <version>3.2.0</version> |
Michael DÜrre | b91d791 | 2021-07-07 07:28:02 +0200 | [diff] [blame] | 198 | </dependency> |
Michael DÜrre | 284b6cf | 2021-08-19 08:13:46 +0200 | [diff] [blame] | 199 | <dependency> |
| 200 | <groupId>com.auth0</groupId> |
| 201 | <artifactId>java-jwt</artifactId> |
| 202 | <version>3.11.0</version> |
| 203 | <exclusions> |
| 204 | <exclusion> |
| 205 | <groupId>*</groupId> |
| 206 | <artifactId>*</artifactId> |
| 207 | </exclusion> |
| 208 | </exclusions> |
| 209 | </dependency> |
Timoney, Dan (dt5972) | bbcacd2 | 2019-06-18 10:42:07 -0400 | [diff] [blame] | 210 | </dependencies> |
Timoney, Dan (dt5972) | bbcacd2 | 2019-06-18 10:42:07 -0400 | [diff] [blame] | 211 | </dependencyManagement> |
Singal, Kapil (ks220y) | e1d0e25 | 2021-02-01 22:06:16 -0500 | [diff] [blame] | 212 | |
| 213 | <build> |
| 214 | <plugins> |
| 215 | <plugin> |
| 216 | <groupId>org.apache.maven.plugins</groupId> |
| 217 | <artifactId>maven-deploy-plugin</artifactId> |
| 218 | <!-- This version supports the "deployAtEnd" parameter --> |
| 219 | <version>2.8</version> |
| 220 | <configuration> |
| 221 | <skip/> |
| 222 | <deployAtEnd>true</deployAtEnd> |
| 223 | </configuration> |
| 224 | </plugin> |
| 225 | </plugins> |
| 226 | </build> |
Singal, Kapil (ks220y) | 2e8a4da | 2019-10-01 22:31:50 -0400 | [diff] [blame] | 227 | </project> |