blob: 98cc16fb06a232b3707064185f9ca969d656dbfd [file] [log] [blame]
Vinay Vishal57171472018-09-18 20:22:00 +05301<?xml version="1.0" encoding="UTF-8"?>
2<!--
3
Jayasheelan Kumara6a684d2019-01-08 11:07:04 +05304 Copyright (c) 2019 Oracle and/or its affiliates. All rights reserved.
Vinay Vishal57171472018-09-18 20:22:00 +05305
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
arjantijms40d0c142020-02-24 17:18:11 +010020<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">
Vinay Vishal57171472018-09-18 20:22:00 +053021 <modelVersion>4.0.0</modelVersion>
arjantijms40d0c142020-02-24 17:18:11 +010022
Vinay Vishal57171472018-09-18 20:22:00 +053023 <parent>
24 <groupId>org.glassfish.main.featuresets</groupId>
25 <artifactId>nucleus-featuresets</artifactId>
arjantijms3cfb3a32020-02-18 23:13:47 +010026 <version>6.0.0-SNAPSHOT</version>
Vinay Vishal57171472018-09-18 20:22:00 +053027 </parent>
arjantijms40d0c142020-02-24 17:18:11 +010028
Vinay Vishal57171472018-09-18 20:22:00 +053029 <artifactId>atomic</artifactId>
Vinay Vishal57171472018-09-18 20:22:00 +053030 <packaging>pom</packaging>
arjantijms40d0c142020-02-24 17:18:11 +010031
32 <name>Glassfish Nucleus Atomic Featureset</name>
Vinay Vishal57171472018-09-18 20:22:00 +053033 <description>This pom defines the set of modules for GlassFish Nucleus Atomic distribution</description>
34
35 <dependencies>
36 <!-- nucleus-felix -->
37 <dependency>
38 <groupId>org.apache.felix</groupId>
39 <artifactId>org.apache.felix.main</artifactId>
40 <exclusions>
41 <exclusion>
42 <groupId>*</groupId>
43 <artifactId>*</artifactId>
44 </exclusion>
45 </exclusions>
46 </dependency>
47 <dependency>
48 <groupId>org.apache.felix</groupId>
49 <artifactId>org.apache.felix.bundlerepository</artifactId>
50 <exclusions>
51 <exclusion>
52 <groupId>*</groupId>
53 <artifactId>*</artifactId>
54 </exclusion>
55 </exclusions>
56 </dependency>
57
58 <!-- nucleus-osgi -->
59 <dependency>
60 <groupId>org.apache.felix</groupId>
61 <artifactId>org.apache.felix.gogo.runtime</artifactId>
arjantijms40d0c142020-02-24 17:18:11 +010062 <exclusions>
Vinay Vishal57171472018-09-18 20:22:00 +053063 <exclusion>
64 <groupId>*</groupId>
65 <artifactId>*</artifactId>
66 </exclusion>
67 </exclusions>
68 </dependency>
69 <dependency>
70 <groupId>org.apache.felix</groupId>
71 <artifactId>org.apache.felix.gogo.shell</artifactId>
arjantijms40d0c142020-02-24 17:18:11 +010072 <exclusions>
Vinay Vishal57171472018-09-18 20:22:00 +053073 <exclusion>
74 <groupId>*</groupId>
75 <artifactId>*</artifactId>
76 </exclusion>
77 </exclusions>
78 </dependency>
79 <dependency>
80 <groupId>org.apache.felix</groupId>
81 <artifactId>org.apache.felix.gogo.command</artifactId>
arjantijms40d0c142020-02-24 17:18:11 +010082 <exclusions>
Vinay Vishal57171472018-09-18 20:22:00 +053083 <exclusion>
84 <groupId>*</groupId>
85 <artifactId>*</artifactId>
86 </exclusion>
87 </exclusions>
88 </dependency>
89 <!-- We install fileinstall bundle which monitors modules
90 dir and autodeploy dir for addition/removal/updation of bundles -->
91 <dependency>
92 <groupId>org.apache.felix</groupId>
93 <artifactId>org.apache.felix.fileinstall</artifactId>
arjantijms40d0c142020-02-24 17:18:11 +010094 <exclusions>
Vinay Vishal57171472018-09-18 20:22:00 +053095 <exclusion>
96 <groupId>*</groupId>
97 <artifactId>*</artifactId>
98 </exclusion>
99 </exclusions>
100 </dependency>
101 <!-- fileinstall needs configadmin service -->
102 <dependency>
103 <groupId>org.apache.felix</groupId>
104 <artifactId>org.apache.felix.configadmin</artifactId>
arjantijms40d0c142020-02-24 17:18:11 +0100105 <exclusions>
Vinay Vishal57171472018-09-18 20:22:00 +0530106 <exclusion>
107 <groupId>*</groupId>
108 <artifactId>*</artifactId>
109 </exclusion>
110 </exclusions>
111 </dependency>
arjantijms4c744d42020-03-04 12:32:21 +0100112 <!-- Felix SCR always needs to be deployed as 3 bundles since 2.0.12 -->
Vinay Vishal57171472018-09-18 20:22:00 +0530113 <dependency>
114 <groupId>org.apache.felix</groupId>
115 <artifactId>org.apache.felix.scr</artifactId>
arjantijms40d0c142020-02-24 17:18:11 +0100116 <exclusions>
Vinay Vishal57171472018-09-18 20:22:00 +0530117 <exclusion>
118 <groupId>*</groupId>
119 <artifactId>*</artifactId>
120 </exclusion>
121 </exclusions>
122 </dependency>
123 <dependency>
arjantijms4c744d42020-03-04 12:32:21 +0100124 <groupId>org.osgi</groupId>
125 <artifactId>org.osgi.util.promise</artifactId>
126 </dependency>
127 <dependency>
128 <groupId>org.osgi</groupId>
129 <artifactId>org.osgi.util.function</artifactId>
Vinay Vishal57171472018-09-18 20:22:00 +0530130 </dependency>
131 <dependency>
132 <groupId>org.glassfish.main.osgi-platforms</groupId>
133 <artifactId>osgi-cli-remote</artifactId>
134 <version>${project.version}</version>
135 <exclusions>
136 <exclusion>
137 <groupId>*</groupId>
138 <artifactId>*</artifactId>
139 </exclusion>
140 </exclusions>
141 </dependency>
142 <dependency>
143 <groupId>org.glassfish.main.osgi-platforms</groupId>
144 <artifactId>osgi-cli-interactive</artifactId>
145 <version>${project.version}</version>
146 <exclusions>
147 <exclusion>
148 <groupId>*</groupId>
149 <artifactId>*</artifactId>
150 </exclusion>
151 </exclusions>
152 </dependency>
153 <dependency>
154 <groupId>org.glassfish.main.osgi-platforms</groupId>
155 <artifactId>osgi-container</artifactId>
156 <version>${project.version}</version>
157 <exclusions>
158 <exclusion>
159 <groupId>*</groupId>
160 <artifactId>*</artifactId>
161 </exclusion>
162 </exclusions>
163 </dependency>
164
165 <!-- nucleus-hk2 -->
166 <dependency>
167 <groupId>org.glassfish.hk2</groupId>
168 <artifactId>hk2-core</artifactId>
169 <exclusions>
170 <exclusion>
171 <groupId>*</groupId>
172 <artifactId>*</artifactId>
173 </exclusion>
174 </exclusions>
175 </dependency>
176 <dependency>
177 <groupId>org.glassfish.hk2</groupId>
178 <artifactId>osgi-resource-locator</artifactId>
179 <exclusions>
180 <exclusion>
181 <groupId>*</groupId>
182 <artifactId>*</artifactId>
183 </exclusion>
184 </exclusions>
185 </dependency>
186 <dependency>
187 <groupId>org.glassfish.hk2</groupId>
188 <artifactId>hk2-api</artifactId>
189 <exclusions>
190 <exclusion>
191 <groupId>*</groupId>
192 <artifactId>*</artifactId>
193 </exclusion>
194 </exclusions>
195 </dependency>
196 <dependency>
Ankur Kathuriaaa2482b2018-12-25 17:31:43 +0530197 <groupId>org.glassfish.main.hk2</groupId>
Vinay Vishal57171472018-09-18 20:22:00 +0530198 <artifactId>hk2-config</artifactId>
199 <version>${project.version}</version>
200 <exclusions>
201 <exclusion>
202 <groupId>*</groupId>
203 <artifactId>*</artifactId>
204 </exclusion>
205 </exclusions>
206 </dependency>
207 <dependency>
208 <groupId>org.glassfish.hk2</groupId>
209 <artifactId>hk2-runlevel</artifactId>
210 <exclusions>
211 <exclusion>
212 <groupId>*</groupId>
213 <artifactId>*</artifactId>
214 </exclusion>
215 </exclusions>
216 </dependency>
217 <dependency>
Ankur Kathuriaaa2482b2018-12-25 17:31:43 +0530218 <groupId>org.glassfish.main.hk2</groupId>
Vinay Vishal57171472018-09-18 20:22:00 +0530219 <artifactId>tiger-types</artifactId>
220 <version>${project.version}</version>
221 <exclusions>
222 <exclusion>
223 <groupId>*</groupId>
224 <artifactId>*</artifactId>
225 </exclusion>
226 </exclusions>
227 </dependency>
228 <dependency>
229 <groupId>org.glassfish.hk2</groupId>
230 <artifactId>hk2</artifactId>
231 <exclusions>
232 <exclusion>
233 <groupId>*</groupId>
234 <artifactId>*</artifactId>
235 </exclusion>
236 </exclusions>
237 </dependency>
238 <dependency>
239 <groupId>org.glassfish.hk2</groupId>
240 <artifactId>hk2-locator</artifactId>
241 <exclusions>
242 <exclusion>
243 <groupId>*</groupId>
244 <artifactId>*</artifactId>
245 </exclusion>
246 </exclusions>
247 </dependency>
248 <dependency>
249 <groupId>org.glassfish.hk2</groupId>
250 <artifactId>class-model</artifactId>
251 <exclusions>
252 <exclusion>
253 <groupId>*</groupId>
254 <artifactId>*</artifactId>
255 </exclusion>
256 </exclusions>
257 </dependency>
258 <dependency>
259 <groupId>org.glassfish.hk2</groupId>
260 <artifactId>hk2-utils</artifactId>
261 <exclusions>
262 <exclusion>
263 <groupId>*</groupId>
264 <artifactId>*</artifactId>
265 </exclusion>
266 </exclusions>
267 </dependency>
268 <dependency>
hs5366faf57c2020-02-03 15:21:16 +0900269 <groupId>org.ow2.asm</groupId>
270 <artifactId>asm</artifactId>
271 <exclusions>
272 <exclusion>
273 <groupId>*</groupId>
274 <artifactId>*</artifactId>
275 </exclusion>
276 </exclusions>
277 </dependency>
278 <dependency>
279 <groupId>org.ow2.asm</groupId>
280 <artifactId>asm-analysis</artifactId>
281 <exclusions>
282 <exclusion>
283 <groupId>*</groupId>
284 <artifactId>*</artifactId>
285 </exclusion>
286 </exclusions>
287 </dependency>
288 <dependency>
289 <groupId>org.ow2.asm</groupId>
290 <artifactId>asm-commons</artifactId>
291 <exclusions>
292 <exclusion>
293 <groupId>*</groupId>
294 <artifactId>*</artifactId>
295 </exclusion>
296 </exclusions>
297 </dependency>
298 <dependency>
299 <groupId>org.ow2.asm</groupId>
300 <artifactId>asm-tree</artifactId>
301 <exclusions>
302 <exclusion>
303 <groupId>*</groupId>
304 <artifactId>*</artifactId>
305 </exclusion>
306 </exclusions>
307 </dependency>
308 <dependency>
309 <groupId>org.ow2.asm</groupId>
310 <artifactId>asm-util</artifactId>
Vinay Vishal57171472018-09-18 20:22:00 +0530311 <exclusions>
312 <exclusion>
313 <groupId>*</groupId>
314 <artifactId>*</artifactId>
315 </exclusion>
316 </exclusions>
317 </dependency>
318 <dependency>
arjantijms0ed12842020-04-29 16:13:26 +0200319 <groupId>jakarta.validation</groupId>
320 <artifactId>jakarta.validation-api</artifactId>
arjantijms56fa90f2020-03-15 23:52:26 +0100321 </dependency>
322 <dependency>
323 <groupId>org.hibernate.validator</groupId>
324 <artifactId>hibernate-validator</artifactId>
Vinay Vishal57171472018-09-18 20:22:00 +0530325 <exclusions>
326 <exclusion>
327 <groupId>*</groupId>
328 <artifactId>*</artifactId>
329 </exclusion>
330 </exclusions>
331 </dependency>
332 <dependency>
arjantijms56fa90f2020-03-15 23:52:26 +0100333 <groupId>org.hibernate.validator</groupId>
334 <artifactId>hibernate-validator-cdi</artifactId>
Vinay Vishal57171472018-09-18 20:22:00 +0530335 <exclusions>
336 <exclusion>
337 <groupId>*</groupId>
338 <artifactId>*</artifactId>
339 </exclusion>
340 </exclusions>
341 </dependency>
342 <dependency>
343 <groupId>org.jboss.logging</groupId>
344 <artifactId>jboss-logging</artifactId>
345 <version>${jboss.logging.version}</version>
346 <exclusions>
347 <exclusion>
348 <groupId>*</groupId>
349 <artifactId>*</artifactId>
350 </exclusion>
351 </exclusions>
352 </dependency>
353 <dependency>
354 <groupId>com.fasterxml</groupId>
355 <artifactId>classmate</artifactId>
356 <exclusions>
357 <exclusion>
358 <groupId>*</groupId>
359 <artifactId>*</artifactId>
360 </exclusion>
361 </exclusions>
362 </dependency>
363 <dependency>
Gaurav Gupta508d8752020-05-04 11:01:28 +0530364 <groupId>jakarta.inject</groupId>
365 <artifactId>jakarta.inject-api</artifactId>
Vinay Vishal57171472018-09-18 20:22:00 +0530366 <exclusions>
367 <exclusion>
368 <groupId>*</groupId>
369 <artifactId>*</artifactId>
370 </exclusion>
371 </exclusions>
372 </dependency>
373 <dependency>
374 <groupId>org.glassfish</groupId>
Vinay Vishal00e18e92018-12-07 10:16:31 +0530375 <artifactId>jakarta.el</artifactId>
Vinay Vishal57171472018-09-18 20:22:00 +0530376 <exclusions>
377 <exclusion>
378 <groupId>*</groupId>
379 <artifactId>*</artifactId>
380 </exclusion>
381 </exclusions>
382 </dependency>
383 <dependency>
384 <groupId>org.javassist</groupId>
385 <artifactId>javassist</artifactId>
386 <exclusions>
387 <exclusion>
388 <groupId>*</groupId>
389 <artifactId>*</artifactId>
390 </exclusion>
391 </exclusions>
392 </dependency>
393 <dependency>
394 <groupId>org.glassfish.hk2.external</groupId>
395 <artifactId>aopalliance-repackaged</artifactId>
396 <exclusions>
397 <exclusion>
398 <groupId>*</groupId>
399 <artifactId>*</artifactId>
400 </exclusion>
401 </exclusions>
402 </dependency>
Vinay Vishal57171472018-09-18 20:22:00 +0530403
404 <!-- nucleus-grizzly -->
405 <dependency>
406 <groupId>org.glassfish.main.grizzly</groupId>
407 <artifactId>nucleus-grizzly-all</artifactId>
408 <version>${project.version}</version>
409 <exclusions>
410 <exclusion>
411 <groupId>*</groupId>
412 <artifactId>*</artifactId>
413 </exclusion>
414 </exclusions>
415 </dependency>
416 <dependency>
417 <groupId>org.glassfish.grizzly</groupId>
418 <artifactId>grizzly-npn-bootstrap</artifactId>
419 <version>${grizzly.npn.version}</version>
420 <exclusions>
421 <exclusion>
422 <groupId>*</groupId>
423 <artifactId>*</artifactId>
424 </exclusion>
425 </exclusions>
426 </dependency>
427 <dependency>
428 <groupId>org.glassfish.grizzly</groupId>
429 <artifactId>grizzly-npn-osgi</artifactId>
430 <version>${grizzly.npn.version}</version>
431 <exclusions>
432 <exclusion>
433 <groupId>*</groupId>
434 <artifactId>*</artifactId>
435 </exclusion>
436 </exclusions>
437 </dependency>
438
439 <!-- nucleus -->
440 <dependency>
441 <groupId>org.glassfish.hk2</groupId>
442 <artifactId>osgi-adapter</artifactId>
443 <exclusions>
444 <exclusion>
445 <groupId>*</groupId>
446 <artifactId>*</artifactId>
447 </exclusion>
448 </exclusions>
449 </dependency>
450 <dependency>
451 <groupId>org.glassfish.main.core</groupId>
452 <artifactId>glassfish-extra-jre-packages</artifactId>
453 <version>${project.version}</version>
454 <exclusions>
455 <exclusion>
456 <groupId>*</groupId>
457 <artifactId>*</artifactId>
458 </exclusion>
459 </exclusions>
460 </dependency>
461 <dependency>
462 <groupId>org.glassfish.main.core</groupId>
463 <artifactId>api-exporter</artifactId>
464 <version>${project.version}</version>
465 <exclusions>
466 <exclusion>
467 <groupId>*</groupId>
468 <artifactId>*</artifactId>
469 </exclusion>
470 </exclusions>
471 </dependency>
472 <dependency>
473 <groupId>org.glassfish.main.core</groupId>
474 <artifactId>glassfish</artifactId>
475 <version>${project.version}</version>
476 <exclusions>
477 <exclusion>
478 <groupId>*</groupId>
479 <artifactId>*</artifactId>
480 </exclusion>
481 </exclusions>
482 </dependency>
483 <dependency>
484 <groupId>org.glassfish.main.core</groupId>
485 <artifactId>kernel</artifactId>
486 <version>${project.version}</version>
487 <exclusions>
488 <exclusion>
489 <groupId>*</groupId>
490 <artifactId>*</artifactId>
491 </exclusion>
492 </exclusions>
493 </dependency>
494 <dependency>
495 <groupId>org.glassfish.main.admin</groupId>
496 <artifactId>admin-cli</artifactId>
497 <version>${project.version}</version>
498 <exclusions>
499 <exclusion>
500 <groupId>*</groupId>
501 <artifactId>*</artifactId>
502 </exclusion>
503 </exclusions>
504 </dependency>
505 <dependency>
506 <groupId>org.glassfish.main.admin</groupId>
507 <artifactId>admin-util</artifactId>
508 <version>${project.version}</version>
509 <exclusions>
510 <exclusion>
511 <groupId>*</groupId>
512 <artifactId>*</artifactId>
513 </exclusion>
514 </exclusions>
515 </dependency>
516 <dependency>
517 <groupId>org.glassfish.main.common</groupId>
518 <artifactId>common-util</artifactId>
519 <version>${project.version}</version>
520 <exclusions>
521 <exclusion>
522 <groupId>*</groupId>
523 <artifactId>*</artifactId>
524 </exclusion>
525 </exclusions>
526 </dependency>
527 <dependency>
528 <groupId>org.glassfish.main.admin</groupId>
529 <artifactId>config-api</artifactId>
530 <version>${project.version}</version>
531 <exclusions>
532 <exclusion>
533 <groupId>*</groupId>
534 <artifactId>*</artifactId>
535 </exclusion>
536 </exclusions>
537 </dependency>
538 <dependency>
Ankur Kathuriaaa2482b2018-12-25 17:31:43 +0530539 <groupId>org.glassfish.main.hk2</groupId>
Vinay Vishal57171472018-09-18 20:22:00 +0530540 <artifactId>config-types</artifactId>
541 <version>${project.version}</version>
542 <exclusions>
543 <exclusion>
544 <groupId>*</groupId>
545 <artifactId>*</artifactId>
546 </exclusion>
547 </exclusions>
548 </dependency>
549 <dependency>
550 <groupId>org.glassfish.main.deployment</groupId>
551 <artifactId>deployment-admin</artifactId>
552 <version>${project.version}</version>
553 <exclusions>
554 <exclusion>
555 <groupId>*</groupId>
556 <artifactId>*</artifactId>
557 </exclusion>
558 </exclusions>
559 </dependency>
560 <dependency>
561 <groupId>org.glassfish.main.deployment</groupId>
562 <artifactId>deployment-autodeploy</artifactId>
563 <version>${project.version}</version>
564 <exclusions>
565 <exclusion>
566 <groupId>*</groupId>
567 <artifactId>*</artifactId>
568 </exclusion>
569 </exclusions>
570 </dependency>
571 <dependency>
572 <groupId>org.glassfish.main.deployment</groupId>
573 <artifactId>deployment-common</artifactId>
574 <version>${project.version}</version>
575 <exclusions>
576 <exclusion>
577 <groupId>*</groupId>
578 <artifactId>*</artifactId>
579 </exclusion>
580 </exclusions>
581 </dependency>
582 <dependency>
583 <groupId>org.glassfish.gmbal</groupId>
584 <artifactId>gmbal</artifactId>
585 <exclusions>
586 <exclusion>
587 <groupId>*</groupId>
588 <artifactId>*</artifactId>
589 </exclusion>
590 </exclusions>
591 </dependency>
592 <dependency>
593 <groupId>org.glassfish.main.common</groupId>
594 <artifactId>internal-api</artifactId>
595 <version>${project.version}</version>
596 <exclusions>
597 <exclusion>
598 <groupId>*</groupId>
599 <artifactId>*</artifactId>
600 </exclusion>
601 </exclusions>
602 </dependency>
603 <dependency>
604 <groupId>org.glassfish.main.common</groupId>
605 <artifactId>glassfish-api</artifactId>
606 <version>${project.version}</version>
607 <exclusions>
608 <exclusion>
609 <groupId>*</groupId>
610 <artifactId>*</artifactId>
611 </exclusion>
612 </exclusions>
613 </dependency>
614 <dependency>
615 <groupId>org.glassfish.main.admin</groupId>
616 <artifactId>launcher</artifactId>
617 <version>${project.version}</version>
618 <exclusions>
619 <exclusion>
620 <groupId>*</groupId>
621 <artifactId>*</artifactId>
622 </exclusion>
623 </exclusions>
624 </dependency>
625 <dependency>
626 <groupId>org.glassfish.main.core</groupId>
627 <artifactId>logging</artifactId>
628 <version>${project.version}</version>
629 <exclusions>
630 <exclusion>
631 <groupId>*</groupId>
632 <artifactId>*</artifactId>
633 </exclusion>
634 </exclusions>
635 </dependency>
636 <dependency>
637 <groupId>org.glassfish.main.common</groupId>
638 <artifactId>scattered-archive-api</artifactId>
639 <version>${project.version}</version>
640 <exclusions>
641 <exclusion>
642 <groupId>*</groupId>
643 <artifactId>*</artifactId>
644 </exclusion>
645 </exclusions>
646 </dependency>
647 <dependency>
648 <groupId>org.glassfish.main.common</groupId>
649 <artifactId>simple-glassfish-api</artifactId>
650 <version>${project.version}</version>
651 <exclusions>
652 <exclusion>
653 <groupId>*</groupId>
654 <artifactId>*</artifactId>
655 </exclusion>
656 </exclusions>
657 </dependency>
658 <dependency>
659 <groupId>org.glassfish.external</groupId>
660 <artifactId>management-api</artifactId>
661 <exclusions>
662 <exclusion>
663 <groupId>*</groupId>
664 <artifactId>*</artifactId>
665 </exclusion>
666 </exclusions>
667 </dependency>
668 <dependency>
669 <groupId>org.glassfish.main.flashlight</groupId>
670 <artifactId>flashlight-framework</artifactId>
671 <version>${project.version}</version>
672 <exclusions>
673 <exclusion>
674 <groupId>*</groupId>
675 <artifactId>*</artifactId>
676 </exclusion>
677 </exclusions>
678 </dependency>
679 <dependency>
680 <groupId>org.glassfish.main.flashlight</groupId>
681 <artifactId>flashlight-agent</artifactId>
682 <version>${project.version}</version>
683 <exclusions>
684 <exclusion>
685 <groupId>*</groupId>
686 <artifactId>*</artifactId>
687 </exclusion>
688 </exclusions>
689 </dependency>
690 <dependency>
691 <groupId>org.glassfish.main.flashlight</groupId>
692 <artifactId>flashlight-extra-jdk-packages</artifactId>
693 <version>${project.version}</version>
694 <exclusions>
695 <exclusion>
696 <groupId>*</groupId>
697 <artifactId>*</artifactId>
698 </exclusion>
699 </exclusions>
700 </dependency>
701 <dependency>
702 <groupId>org.glassfish.main.admin</groupId>
703 <artifactId>nucleus-domain</artifactId>
704 <version>${project.version}</version>
705 <exclusions>
706 <exclusion>
707 <groupId>*</groupId>
708 <artifactId>*</artifactId>
709 </exclusion>
710 </exclusions>
711 </dependency>
712 <dependency>
713 <groupId>org.glassfish.main.admin</groupId>
714 <artifactId>server-mgmt</artifactId>
715 <version>${project.version}</version>
716 <exclusions>
717 <exclusion>
718 <groupId>*</groupId>
719 <artifactId>*</artifactId>
720 </exclusion>
721 </exclusions>
722 </dependency>
723 <dependency>
724 <groupId>org.glassfish.main.security</groupId>
725 <artifactId>security</artifactId>
726 <version>${project.version}</version>
727 <exclusions>
728 <exclusion>
729 <groupId>*</groupId>
730 <artifactId>*</artifactId>
731 </exclusion>
732 </exclusions>
733 </dependency>
734 <dependency>
735 <groupId>org.glassfish.main.security</groupId>
736 <artifactId>security-services</artifactId>
737 <version>${project.version}</version>
738 <exclusions>
739 <exclusion>
740 <groupId>*</groupId>
741 <artifactId>*</artifactId>
742 </exclusion>
743 </exclusions>
744 </dependency>
745 <dependency>
746 <groupId>org.glassfish.main.security</groupId>
747 <artifactId>ssl-impl</artifactId>
748 <version>${project.version}</version>
749 <exclusions>
750 <exclusion>
751 <groupId>*</groupId>
752 <artifactId>*</artifactId>
753 </exclusion>
754 </exclusions>
755 </dependency>
756 <dependency>
757 <groupId>org.glassfish.main.ldapbp</groupId>
758 <artifactId>ldapbp</artifactId>
759 <version>${project.version}</version>
760 <exclusions>
761 <exclusion>
762 <groupId>*</groupId>
763 <artifactId>*</artifactId>
764 </exclusion>
765 </exclusions>
766 </dependency>
767 <dependency>
768 <groupId>org.jvnet.mimepull</groupId>
769 <artifactId>mimepull</artifactId>
770 <exclusions>
771 <exclusion>
772 <groupId>*</groupId>
773 <artifactId>*</artifactId>
774 </exclusion>
775 </exclusions>
776 </dependency>
777 <dependency>
Lukas Jungmannd560b8f2018-12-04 04:08:28 +0100778 <groupId>jakarta.annotation</groupId>
779 <artifactId>jakarta.annotation-api</artifactId>
Vinay Vishal57171472018-09-18 20:22:00 +0530780 <exclusions>
781 <exclusion>
782 <groupId>*</groupId>
783 <artifactId>*</artifactId>
784 </exclusion>
785 </exclusions>
786 </dependency>
787
788 <!-- nucleus-jmx -->
789 <dependency>
790 <groupId>org.glassfish.main.common</groupId>
791 <artifactId>glassfish-mbeanserver</artifactId>
792 <version>${project.version}</version>
793 <exclusions>
794 <exclusion>
795 <groupId>*</groupId>
796 <artifactId>*</artifactId>
797 </exclusion>
798 </exclusions>
799 </dependency>
800 <dependency>
801 <groupId>org.glassfish.main.common</groupId>
802 <artifactId>amx-core</artifactId>
803 <version>${project.version}</version>
804 <exclusions>
805 <exclusion>
806 <groupId>*</groupId>
807 <artifactId>*</artifactId>
808 </exclusion>
809 </exclusions>
810 </dependency>
811
Lukas Jungmanneeac2ba2020-04-29 03:38:42 +0200812 <!-- nucleus-xml-binding -->
813 <dependency>
814 <groupId>jakarta.xml.bind</groupId>
815 <artifactId>jakarta.xml.bind-api</artifactId>
816 <exclusions>
817 <exclusion>
818 <groupId>*</groupId>
819 <artifactId>*</artifactId>
820 </exclusion>
821 </exclusions>
822 </dependency>
823 <dependency>
824 <groupId>com.sun.activation</groupId>
825 <artifactId>jakarta.activation</artifactId>
826 <exclusions>
827 <exclusion>
828 <groupId>*</groupId>
829 <artifactId>*</artifactId>
830 </exclusion>
831 </exclusions>
832 </dependency>
833 <dependency>
834 <groupId>com.sun.xml.bind</groupId>
835 <artifactId>jaxb-osgi</artifactId>
836 <exclusions>
837 <exclusion>
838 <groupId>*</groupId>
839 <artifactId>*</artifactId>
840 </exclusion>
841 </exclusions>
842 </dependency>
843
Vinay Vishal57171472018-09-18 20:22:00 +0530844 <!-- nucleus-jersey -->
845 <dependency>
846 <groupId>org.glassfish.jersey.core</groupId>
847 <artifactId>jersey-server</artifactId>
848 <exclusions>
849 <exclusion>
850 <groupId>*</groupId>
851 <artifactId>*</artifactId>
852 </exclusion>
853 </exclusions>
854 </dependency>
855 <dependency>
856 <groupId>org.glassfish.jersey.core</groupId>
857 <artifactId>jersey-client</artifactId>
858 <exclusions>
859 <exclusion>
860 <groupId>*</groupId>
861 <artifactId>*</artifactId>
862 </exclusion>
863 </exclusions>
864 </dependency>
865 <dependency>
866 <groupId>org.glassfish.jersey.containers</groupId>
867 <artifactId>jersey-container-grizzly2-http</artifactId>
868 <exclusions>
869 <exclusion>
870 <groupId>*</groupId>
871 <artifactId>*</artifactId>
872 </exclusion>
873 </exclusions>
874 </dependency>
875 <dependency>
876 <groupId>org.glassfish.jersey.media</groupId>
877 <artifactId>jersey-media-jaxb</artifactId>
878 <exclusions>
879 <exclusion>
880 <groupId>*</groupId>
881 <artifactId>*</artifactId>
882 </exclusion>
883 </exclusions>
884 </dependency>
885 <dependency>
886 <groupId>org.glassfish.jersey.media</groupId>
887 <artifactId>jersey-media-json-jettison</artifactId>
888 <exclusions>
889 <exclusion>
890 <groupId>*</groupId>
891 <artifactId>*</artifactId>
892 </exclusion>
893 </exclusions>
894 </dependency>
Gaurav Gupta254b31c2020-05-20 17:18:52 +0530895 <dependency>
Vinay Vishal57171472018-09-18 20:22:00 +0530896 <groupId>org.glassfish.jersey.media</groupId>
897 <artifactId>jersey-media-json-jackson</artifactId>
898 <exclusions>
899 <exclusion>
900 <groupId>*</groupId>
901 <artifactId>*</artifactId>
902 </exclusion>
903 </exclusions>
Gaurav Gupta254b31c2020-05-20 17:18:52 +0530904 </dependency>
Vinay Vishal57171472018-09-18 20:22:00 +0530905 <dependency>
906 <groupId>org.glassfish.jersey.media</groupId>
907 <artifactId>jersey-media-sse</artifactId>
908 <exclusions>
909 <exclusion>
910 <groupId>*</groupId>
911 <artifactId>*</artifactId>
912 </exclusion>
913 </exclusions>
914 </dependency>
915 <dependency>
916 <groupId>org.glassfish.jersey.media</groupId>
917 <artifactId>jersey-media-multipart</artifactId>
918 <exclusions>
919 <exclusion>
920 <groupId>*</groupId>
921 <artifactId>*</artifactId>
922 </exclusion>
923 </exclusions>
924 </dependency>
925 <dependency>
926 <groupId>org.glassfish.jersey.ext</groupId>
927 <artifactId>jersey-bean-validation</artifactId>
928 <exclusions>
929 <exclusion>
930 <groupId>*</groupId>
931 <artifactId>*</artifactId>
932 </exclusion>
933 </exclusions>
934 </dependency>
935 <dependency>
936 <groupId>org.glassfish.jersey.ext</groupId>
937 <artifactId>jersey-entity-filtering</artifactId>
938 <exclusions>
939 <exclusion>
940 <groupId>*</groupId>
941 <artifactId>*</artifactId>
942 </exclusion>
943 </exclusions>
944 </dependency>
945 <dependency>
946 <groupId>org.glassfish.jersey.core</groupId>
947 <artifactId>jersey-common</artifactId>
948 <exclusions>
949 <exclusion>
950 <groupId>*</groupId>
951 <artifactId>*</artifactId>
952 </exclusion>
953 </exclusions>
954 </dependency>
955 <dependency>
956 <groupId>org.glassfish.jersey.inject</groupId>
957 <artifactId>jersey-hk2</artifactId>
958 <exclusions>
959 <exclusion>
960 <groupId>*</groupId>
961 <artifactId>*</artifactId>
962 </exclusion>
963 </exclusions>
964 </dependency>
Lukas Jungmann0bbb4662020-04-29 04:59:33 +0200965 <!-- TODO: see https://github.com/eclipse-ee4j/jersey/issues/4454 -->
966<!-- <dependency>
Vinay Vishal57171472018-09-18 20:22:00 +0530967 <groupId>org.glassfish.jersey.media</groupId>
968 <artifactId>jersey-media-json-processing</artifactId>
969 <exclusions>
970 <exclusion>
971 <groupId>*</groupId>
972 <artifactId>*</artifactId>
973 </exclusion>
974 </exclusions>
Lukas Jungmann0bbb4662020-04-29 04:59:33 +0200975 </dependency>-->
Vinay Vishal57171472018-09-18 20:22:00 +0530976 <dependency>
977 <groupId>org.glassfish.jersey.media</groupId>
978 <artifactId>jersey-media-json-binding</artifactId>
979 <exclusions>
980 <exclusion>
981 <groupId>*</groupId>
982 <artifactId>*</artifactId>
983 </exclusion>
984 </exclusions>
985 </dependency>
986 <dependency>
jansupol50ce8f42018-12-08 01:15:30 +0100987 <groupId>jakarta.ws.rs</groupId>
988 <artifactId>jakarta.ws.rs-api</artifactId>
Vinay Vishal57171472018-09-18 20:22:00 +0530989 <exclusions>
990 <exclusion>
991 <groupId>*</groupId>
992 <artifactId>*</artifactId>
993 </exclusion>
994 </exclusions>
995 </dependency>
996 <dependency>
997 <groupId>com.fasterxml.jackson.core</groupId>
998 <artifactId>jackson-core</artifactId>
999 <exclusions>
1000 <exclusion>
1001 <groupId>*</groupId>
1002 <artifactId>*</artifactId>
1003 </exclusion>
1004 </exclusions>
1005 </dependency>
1006 <dependency>
1007 <groupId>com.fasterxml.jackson.core</groupId>
1008 <artifactId>jackson-databind</artifactId>
1009 <exclusions>
1010 <exclusion>
1011 <groupId>*</groupId>
1012 <artifactId>*</artifactId>
1013 </exclusion>
1014 </exclusions>
1015 </dependency>
1016 <dependency>
1017 <groupId>com.fasterxml.jackson.core</groupId>
1018 <artifactId>jackson-annotations</artifactId>
1019 <exclusions>
1020 <exclusion>
1021 <groupId>*</groupId>
1022 <artifactId>*</artifactId>
1023 </exclusion>
1024 </exclusions>
1025 </dependency>
1026 <dependency>
Gaurav Gupta254b31c2020-05-20 17:18:52 +05301027 <groupId>org.glassfish.main.admingui</groupId>
Vinay Vishal57171472018-09-18 20:22:00 +05301028 <artifactId>jackson-module-jaxb-annotations</artifactId>
Gaurav Gupta254b31c2020-05-20 17:18:52 +05301029 <version>${project.version}</version>
Vinay Vishal57171472018-09-18 20:22:00 +05301030 <exclusions>
1031 <exclusion>
1032 <groupId>*</groupId>
1033 <artifactId>*</artifactId>
1034 </exclusion>
1035 </exclusions>
1036 </dependency>
1037 <dependency>
1038 <groupId>org.codehaus.jettison</groupId>
1039 <artifactId>jettison</artifactId>
1040 <exclusions>
1041 <exclusion>
1042 <groupId>*</groupId>
1043 <artifactId>*</artifactId>
1044 </exclusion>
1045 </exclusions>
1046 </dependency>
hs5367a93f0f2020-03-02 13:25:14 +09001047 <dependency>
1048 <groupId>jakarta.xml.bind</groupId>
1049 <artifactId>jakarta.xml.bind-api</artifactId>
hs53621c5f332020-06-03 17:49:41 +09001050 <version>${jakarta.jaxb-api.version}</version>
hs5367a93f0f2020-03-02 13:25:14 +09001051 <exclusions>
1052 <exclusion>
1053 <groupId>*</groupId>
1054 <artifactId>*</artifactId>
1055 </exclusion>
1056 </exclusions>
1057 </dependency>
1058 <dependency>
1059 <groupId>com.sun.xml.bind</groupId>
1060 <artifactId>jaxb-osgi</artifactId>
hs53621c5f332020-06-03 17:49:41 +09001061 <version>${jakarta.jaxb-impl.version}</version>
hs5367a93f0f2020-03-02 13:25:14 +09001062 <exclusions>
1063 <exclusion>
1064 <groupId>*</groupId>
1065 <artifactId>*</artifactId>
1066 </exclusion>
1067 </exclusions>
1068 </dependency>
1069 <dependency>
1070 <groupId>com.sun.activation</groupId>
1071 <artifactId>jakarta.activation</artifactId>
hs53621c5f332020-06-03 17:49:41 +09001072 <version>${activation.version}</version>
hs5367a93f0f2020-03-02 13:25:14 +09001073 <exclusions>
1074 <exclusion>
1075 <groupId>*</groupId>
1076 <artifactId>*</artifactId>
1077 </exclusion>
1078 </exclusions>
1079 </dependency>
Vinay Vishal57171472018-09-18 20:22:00 +05301080 </dependencies>
1081</project>