Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 3 | |
hussainnm | 5371252 | 2021-02-18 19:46:31 +0530 | [diff] [blame] | 4 | Copyright (c) 1997, 2021 Oracle and/or its affiliates. All rights reserved. |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 5 | |
| 6 | This program and the accompanying materials are made available under the |
| 7 | terms of the Eclipse Public License v. 2.0, which is available at |
| 8 | http://www.eclipse.org/legal/epl-2.0. |
| 9 | |
| 10 | This Source Code may also be made available under the following Secondary |
| 11 | Licenses when the conditions for such availability set forth in the |
| 12 | Eclipse Public License v. 2.0 are satisfied: GNU General Public License, |
| 13 | version 2 with the GNU Classpath Exception, which is available at |
| 14 | https://www.gnu.org/software/classpath/license.html. |
| 15 | |
| 16 | SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 |
| 17 | |
| 18 | --> |
| 19 | |
| 20 | <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"> |
| 21 | |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | |
| 24 | <parent> |
| 25 | <groupId>org.glassfish.main.extras</groupId> |
| 26 | <artifactId>extras</artifactId> |
David Matějček | 56030c9 | 2021-06-03 12:55:40 +0200 | [diff] [blame^] | 27 | <version>6.2.0-SNAPSHOT</version> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 28 | <relativePath>../../pom.xml</relativePath> |
| 29 | </parent> |
| 30 | <artifactId>glassfish-embedded-nucleus</artifactId> |
| 31 | <name>Embedded GlassFish nucleus</name> |
| 32 | |
| 33 | <build> |
| 34 | <defaultGoal>install</defaultGoal> |
| 35 | <plugins> |
| 36 | <plugin> |
| 37 | <groupId>org.apache.maven.plugins</groupId> |
| 38 | <artifactId>maven-dependency-plugin</artifactId> |
| 39 | <executions> |
| 40 | <execution> |
| 41 | <id>copy-dependencies</id> |
| 42 | <goals> |
| 43 | <goal>copy-dependencies</goal> |
| 44 | </goals> |
| 45 | <configuration> |
| 46 | <outputDirectory>${project.build.directory}/packager_zips</outputDirectory> |
| 47 | <overWriteReleases>false</overWriteReleases> |
| 48 | <overWriteSnapshots>true</overWriteSnapshots> |
| 49 | <excludeTransitive>true</excludeTransitive> |
| 50 | <includeScope>compile</includeScope> |
| 51 | <includeScope>runtime</includeScope> |
| 52 | </configuration> |
| 53 | </execution> |
| 54 | </executions> |
| 55 | </plugin> |
| 56 | <plugin> |
| 57 | <groupId>org.jvnet.maven-antrun-extended-plugin</groupId> |
| 58 | <artifactId>maven-antrun-extended-plugin</artifactId> |
| 59 | <executions> |
| 60 | <execution> |
| 61 | <phase>package</phase> |
| 62 | <goals> |
| 63 | <goal>run</goal> |
| 64 | </goals> |
| 65 | <configuration> |
| 66 | <tasks> |
| 67 | <ant dir="." antfile="../build.xml" target="create.distribution"> |
| 68 | <property name="bundlename" value="org.glassfish.main.embedded.nucleus" /> |
| 69 | <property name="finaljar" value="${project.build.directory}/glassfish-embedded-nucleus.jar" /> |
| 70 | <property name="install.dir.name" value="${install.dir.name}" /> |
| 71 | </ant> |
| 72 | </tasks> |
| 73 | </configuration> |
| 74 | </execution> |
| 75 | </executions> |
| 76 | </plugin> |
| 77 | </plugins> |
| 78 | </build> |
| 79 | |
| 80 | <dependencies> |
| 81 | <!-- glassfish-hk2 --> |
| 82 | <dependency> |
| 83 | <groupId>org.glassfish.hk2.external</groupId> |
| 84 | <artifactId>aopalliance-repackaged</artifactId> |
| 85 | <version>${hk2.version}</version> |
| 86 | <optional>true</optional> |
| 87 | </dependency> |
| 88 | <dependency> |
hs536 | d7b6491 | 2020-02-03 15:21:16 +0900 | [diff] [blame] | 89 | <groupId>org.ow2.asm</groupId> |
| 90 | <artifactId>asm</artifactId> |
| 91 | <version>${asm.version}</version> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 92 | <optional>true</optional> |
| 93 | </dependency> |
| 94 | <dependency> |
hs536 | d7b6491 | 2020-02-03 15:21:16 +0900 | [diff] [blame] | 95 | <groupId>org.ow2.asm</groupId> |
| 96 | <artifactId>asm-analysis</artifactId> |
| 97 | <version>${asm.version}</version> |
| 98 | <optional>true</optional> |
| 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>org.ow2.asm</groupId> |
| 102 | <artifactId>asm-commons</artifactId> |
| 103 | <version>${asm.version}</version> |
| 104 | <optional>true</optional> |
| 105 | </dependency> |
| 106 | <dependency> |
| 107 | <groupId>org.ow2.asm</groupId> |
| 108 | <artifactId>asm-tree</artifactId> |
| 109 | <version>${asm.version}</version> |
| 110 | <optional>true</optional> |
| 111 | </dependency> |
| 112 | <dependency> |
| 113 | <groupId>org.ow2.asm</groupId> |
| 114 | <artifactId>asm-util</artifactId> |
| 115 | <version>${asm.version}</version> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 116 | <optional>true</optional> |
| 117 | </dependency> |
| 118 | <dependency> |
| 119 | <groupId>org.glassfish.hk2</groupId> |
| 120 | <artifactId>hk2-core</artifactId> |
| 121 | <version>${hk2.version}</version> |
| 122 | <optional>true</optional> |
| 123 | </dependency> |
| 124 | <dependency> |
| 125 | <groupId>org.glassfish.hk2</groupId> |
| 126 | <artifactId>osgi-resource-locator</artifactId> |
| 127 | <version>${osgi-resource-locator.version}</version> |
| 128 | <optional>true</optional> |
| 129 | </dependency> |
| 130 | <dependency> |
| 131 | <groupId>org.glassfish.hk2</groupId> |
| 132 | <artifactId>hk2-api</artifactId> |
| 133 | <version>${hk2.version}</version> |
| 134 | <optional>true</optional> |
| 135 | </dependency> |
| 136 | <dependency> |
Ankur Kathuria | aa2482b | 2018-12-25 17:31:43 +0530 | [diff] [blame] | 137 | <groupId>org.glassfish.main.hk2</groupId> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 138 | <artifactId>hk2-config</artifactId> |
| 139 | <version>${project.version}</version> |
| 140 | <optional>true</optional> |
| 141 | </dependency> |
| 142 | <dependency> |
| 143 | <groupId>org.glassfish.hk2</groupId> |
| 144 | <artifactId>hk2-runlevel</artifactId> |
| 145 | <version>${hk2.version}</version> |
| 146 | <optional>true</optional> |
| 147 | </dependency> |
| 148 | <dependency> |
| 149 | <groupId>org.glassfish.hk2</groupId> |
| 150 | <artifactId>hk2-locator</artifactId> |
| 151 | <version>${hk2.version}</version> |
| 152 | <optional>true</optional> |
| 153 | </dependency> |
| 154 | <dependency> |
| 155 | <groupId>org.glassfish.hk2</groupId> |
| 156 | <artifactId>hk2</artifactId> |
| 157 | <version>${hk2.version}</version> |
| 158 | <optional>true</optional> |
| 159 | </dependency> |
| 160 | <dependency> |
| 161 | <groupId>org.glassfish.hk2</groupId> |
| 162 | <artifactId>class-model</artifactId> |
| 163 | <version>${hk2.version}</version> |
| 164 | <optional>true</optional> |
| 165 | </dependency> |
| 166 | <dependency> |
| 167 | <groupId>org.glassfish.hk2</groupId> |
| 168 | <artifactId>hk2-utils</artifactId> |
| 169 | <version>${hk2.version}</version> |
| 170 | <optional>true</optional> |
| 171 | </dependency> |
| 172 | <dependency> |
arjantijms | 56fa90f | 2020-03-15 23:52:26 +0100 | [diff] [blame] | 173 | <groupId>org.hibernate.validator</groupId> |
| 174 | <artifactId>hibernate-validator</artifactId> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 175 | <optional>true</optional> |
| 176 | </dependency> |
| 177 | <dependency> |
arjantijms | 56fa90f | 2020-03-15 23:52:26 +0100 | [diff] [blame] | 178 | <groupId>org.hibernate.validator</groupId> |
| 179 | <artifactId>hibernate-validator-cdi</artifactId> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 180 | <optional>true</optional> |
| 181 | </dependency> |
| 182 | <dependency> |
| 183 | <groupId>org.javassist</groupId> |
| 184 | <artifactId>javassist</artifactId> |
| 185 | <optional>true</optional> |
| 186 | </dependency> |
| 187 | <dependency> |
Lukas Jungmann | 13ce323 | 2020-06-13 11:41:34 +0200 | [diff] [blame] | 188 | <groupId>jakarta.inject</groupId> |
| 189 | <artifactId>jakarta.inject-api</artifactId> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 190 | <optional>true</optional> |
| 191 | </dependency> |
| 192 | <dependency> |
| 193 | <groupId>org.jboss.logging</groupId> |
| 194 | <artifactId>jboss-logging</artifactId> |
| 195 | <optional>true</optional> |
| 196 | </dependency> |
| 197 | <dependency> |
| 198 | <groupId>com.fasterxml</groupId> |
| 199 | <artifactId>classmate</artifactId> |
| 200 | <optional>true</optional> |
| 201 | </dependency> |
| 202 | <!-- glassfish-grizzly --> |
| 203 | <dependency> |
| 204 | <groupId>org.glassfish.main.grizzly</groupId> |
| 205 | <artifactId>nucleus-grizzly-all</artifactId> |
| 206 | <version>${project.version}</version> |
| 207 | <optional>true</optional> |
| 208 | </dependency> |
| 209 | <dependency> |
| 210 | <groupId>org.glassfish.grizzly</groupId> |
smillidge | 67827d5 | 2020-08-14 17:14:50 +0100 | [diff] [blame] | 211 | <artifactId>grizzly-npn-api</artifactId> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 212 | <version>${grizzly.npn.version}</version> |
| 213 | <optional>true</optional> |
| 214 | </dependency> |
| 215 | <dependency> |
| 216 | <groupId>org.glassfish.grizzly</groupId> |
| 217 | <artifactId>grizzly-npn-osgi</artifactId> |
| 218 | <version>${grizzly.npn.version}</version> |
| 219 | <optional>true</optional> |
| 220 | </dependency> |
| 221 | <!-- glassfish-nucleus --> |
| 222 | <dependency> |
| 223 | <groupId>org.glassfish.main.admin</groupId> |
| 224 | <artifactId>admin-cli</artifactId> |
| 225 | <version>${project.version}</version> |
| 226 | <optional>true</optional> |
| 227 | </dependency> |
| 228 | <dependency> |
| 229 | <groupId>org.glassfish.main.admin</groupId> |
| 230 | <artifactId>admin-util</artifactId> |
| 231 | <version>${project.version}</version> |
| 232 | <optional>true</optional> |
| 233 | </dependency> |
| 234 | <dependency> |
| 235 | <groupId>org.glassfish.main.common</groupId> |
| 236 | <artifactId>common-util</artifactId> |
| 237 | <version>${project.version}</version> |
| 238 | <optional>true</optional> |
| 239 | </dependency> |
| 240 | <dependency> |
| 241 | <groupId>org.glassfish.main.admin</groupId> |
| 242 | <artifactId>config-api</artifactId> |
| 243 | <version>${project.version}</version> |
| 244 | <optional>true</optional> |
| 245 | </dependency> |
| 246 | <dependency> |
Ankur Kathuria | aa2482b | 2018-12-25 17:31:43 +0530 | [diff] [blame] | 247 | <groupId>org.glassfish.main.hk2</groupId> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 248 | <artifactId>config-types</artifactId> |
| 249 | <version>${project.version}</version> |
| 250 | <optional>true</optional> |
| 251 | </dependency> |
| 252 | <dependency> |
| 253 | <groupId>org.glassfish.main.deployment</groupId> |
| 254 | <artifactId>deployment-admin</artifactId> |
| 255 | <version>${project.version}</version> |
| 256 | <optional>true</optional> |
| 257 | </dependency> |
| 258 | <dependency> |
| 259 | <groupId>org.glassfish.main.deployment</groupId> |
| 260 | <artifactId>deployment-autodeploy</artifactId> |
| 261 | <version>${project.version}</version> |
| 262 | <optional>true</optional> |
| 263 | </dependency> |
| 264 | <dependency> |
| 265 | <groupId>org.glassfish.main.deployment</groupId> |
| 266 | <artifactId>deployment-common</artifactId> |
| 267 | <version>${project.version}</version> |
| 268 | <optional>true</optional> |
| 269 | </dependency> |
| 270 | <dependency> |
| 271 | <groupId>org.glassfish.gmbal</groupId> |
| 272 | <artifactId>gmbal</artifactId> |
| 273 | <optional>true</optional> |
| 274 | </dependency> |
| 275 | <dependency> |
| 276 | <groupId>org.glassfish.main.common</groupId> |
| 277 | <artifactId>internal-api</artifactId> |
| 278 | <version>${project.version}</version> |
| 279 | <optional>true</optional> |
| 280 | </dependency> |
| 281 | <dependency> |
| 282 | <groupId>org.glassfish.main.common</groupId> |
| 283 | <artifactId>glassfish-api</artifactId> |
| 284 | <version>${project.version}</version> |
| 285 | <optional>true</optional> |
| 286 | </dependency> |
| 287 | <dependency> |
| 288 | <groupId>org.glassfish.main.admin</groupId> |
| 289 | <artifactId>launcher</artifactId> |
| 290 | <version>${project.version}</version> |
| 291 | <optional>true</optional> |
| 292 | </dependency> |
| 293 | <dependency> |
| 294 | <groupId>org.glassfish.main.core</groupId> |
| 295 | <artifactId>logging</artifactId> |
| 296 | <version>${project.version}</version> |
| 297 | <optional>true</optional> |
| 298 | </dependency> |
| 299 | <dependency> |
| 300 | <groupId>org.glassfish.main.common</groupId> |
| 301 | <artifactId>scattered-archive-api</artifactId> |
| 302 | <version>${project.version}</version> |
| 303 | <optional>true</optional> |
| 304 | </dependency> |
| 305 | <dependency> |
| 306 | <groupId>org.glassfish.main.common</groupId> |
| 307 | <artifactId>simple-glassfish-api</artifactId> |
| 308 | <version>${project.version}</version> |
| 309 | <optional>true</optional> |
| 310 | </dependency> |
| 311 | <dependency> |
| 312 | <groupId>org.glassfish.external</groupId> |
| 313 | <artifactId>management-api</artifactId> |
| 314 | <optional>true</optional> |
| 315 | </dependency> |
| 316 | <dependency> |
| 317 | <groupId>org.glassfish.main.flashlight</groupId> |
| 318 | <artifactId>flashlight-framework</artifactId> |
| 319 | <version>${project.version}</version> |
| 320 | <optional>true</optional> |
| 321 | </dependency> |
| 322 | <dependency> |
| 323 | <groupId>org.glassfish.main.flashlight</groupId> |
| 324 | <artifactId>flashlight-agent</artifactId> |
| 325 | <version>${project.version}</version> |
| 326 | <optional>true</optional> |
| 327 | </dependency> |
| 328 | <dependency> |
| 329 | <groupId>org.glassfish.main.flashlight</groupId> |
| 330 | <artifactId>flashlight-extra-jdk-packages</artifactId> |
| 331 | <version>${project.version}</version> |
| 332 | <optional>true</optional> |
| 333 | </dependency> |
| 334 | <dependency> |
| 335 | <groupId>org.glassfish.main.admin</groupId> |
| 336 | <artifactId>server-mgmt</artifactId> |
| 337 | <version>${project.version}</version> |
| 338 | <optional>true</optional> |
| 339 | </dependency> |
| 340 | <dependency> |
| 341 | <groupId>org.glassfish.main.core</groupId> |
| 342 | <artifactId>kernel</artifactId> |
| 343 | <version>${project.version}</version> |
| 344 | <optional>true</optional> |
| 345 | </dependency> |
| 346 | <dependency> |
| 347 | <groupId>org.glassfish.main.core</groupId> |
| 348 | <artifactId>glassfish</artifactId> |
| 349 | <version>${project.version}</version> |
| 350 | <optional>true</optional> |
| 351 | </dependency> |
| 352 | <dependency> |
| 353 | <groupId>org.glassfish.main.core</groupId> |
| 354 | <artifactId>api-exporter</artifactId> |
| 355 | <version>${project.version}</version> |
| 356 | <optional>true</optional> |
| 357 | </dependency> |
| 358 | <dependency> |
| 359 | <groupId>org.glassfish.hk2</groupId> |
| 360 | <artifactId>osgi-adapter</artifactId> |
| 361 | <optional>true</optional> |
| 362 | </dependency> |
| 363 | <dependency> |
| 364 | <groupId>org.glassfish.main.security</groupId> |
| 365 | <artifactId>security</artifactId> |
| 366 | <version>${project.version}</version> |
| 367 | <optional>true</optional> |
| 368 | </dependency> |
| 369 | <dependency> |
| 370 | <groupId>org.glassfish.main.security</groupId> |
| 371 | <artifactId>security-services</artifactId> |
| 372 | <version>${project.version}</version> |
| 373 | <optional>true</optional> |
| 374 | </dependency> |
| 375 | <dependency> |
| 376 | <groupId>org.glassfish.main.security</groupId> |
| 377 | <artifactId>ssl-impl</artifactId> |
| 378 | <version>${project.version}</version> |
| 379 | <optional>true</optional> |
| 380 | </dependency> |
| 381 | <dependency> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 382 | <groupId>org.jvnet.mimepull</groupId> |
| 383 | <artifactId>mimepull</artifactId> |
| 384 | <optional>true</optional> |
| 385 | </dependency> |
| 386 | <dependency> |
Lukas Jungmann | d560b8f | 2018-12-04 04:08:28 +0100 | [diff] [blame] | 387 | <groupId>jakarta.annotation</groupId> |
| 388 | <artifactId>jakarta.annotation-api</artifactId> |
Vinay Vishal | 5717147 | 2018-09-18 20:22:00 +0530 | [diff] [blame] | 389 | <optional>true</optional> |
| 390 | </dependency> |
| 391 | </dependencies> |
| 392 | |
| 393 | <profiles> |
| 394 | <profile> |
| 395 | <!-- generate empty javadoc jar --> |
| 396 | <id>release-phase2</id> |
| 397 | <activation> |
| 398 | <activeByDefault>false</activeByDefault> |
| 399 | </activation> |
| 400 | <build> |
| 401 | <plugins> |
| 402 | <plugin> |
| 403 | <groupId>org.apache.maven.plugins</groupId> |
| 404 | <artifactId>maven-jar-plugin</artifactId> |
| 405 | <executions> |
| 406 | <execution> |
| 407 | <id>create-empty-javadoc-jar</id> |
| 408 | <goals> |
| 409 | <goal>jar</goal> |
| 410 | </goals> |
| 411 | <configuration> |
| 412 | <classesDirectory>${project.build.directory}/javadoc</classesDirectory> |
| 413 | <classifier>javadoc</classifier> |
| 414 | </configuration> |
| 415 | </execution> |
| 416 | </executions> |
| 417 | </plugin> |
| 418 | </plugins> |
| 419 | </build> |
| 420 | </profile> |
| 421 | </profiles> |
| 422 | </project> |