blob: c6c4bc9a9ffd2de7786fe362d982f017b2ffeb1b [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
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 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.glassfish.main.featuresets</groupId>
24 <artifactId>nucleus-featuresets</artifactId>
Jayasheelan Kumar56e520f2019-01-04 15:31:35 +053025 <version>5.1.0-SNAPSHOT</version>
Vinay Vishal57171472018-09-18 20:22:00 +053026 </parent>
27 <artifactId>atomic</artifactId>
28 <name>Glassfish Nucleus Atomic Featureset</name>
29 <packaging>pom</packaging>
30 <description>This pom defines the set of modules for GlassFish Nucleus Atomic distribution</description>
31
32 <dependencies>
33 <!-- nucleus-felix -->
34 <dependency>
35 <groupId>org.apache.felix</groupId>
36 <artifactId>org.apache.felix.main</artifactId>
37 <exclusions>
38 <exclusion>
39 <groupId>*</groupId>
40 <artifactId>*</artifactId>
41 </exclusion>
42 </exclusions>
43 </dependency>
44 <dependency>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>org.apache.felix.bundlerepository</artifactId>
47 <exclusions>
48 <exclusion>
49 <groupId>*</groupId>
50 <artifactId>*</artifactId>
51 </exclusion>
52 </exclusions>
53 </dependency>
54
55 <!-- nucleus-osgi -->
56 <dependency>
57 <groupId>org.apache.felix</groupId>
58 <artifactId>org.apache.felix.gogo.runtime</artifactId>
59 <exclusions>
60 <exclusion>
61 <groupId>*</groupId>
62 <artifactId>*</artifactId>
63 </exclusion>
64 </exclusions>
65 </dependency>
66 <dependency>
67 <groupId>org.apache.felix</groupId>
68 <artifactId>org.apache.felix.gogo.shell</artifactId>
69 <exclusions>
70 <exclusion>
71 <groupId>*</groupId>
72 <artifactId>*</artifactId>
73 </exclusion>
74 </exclusions>
75 </dependency>
76 <dependency>
77 <groupId>org.apache.felix</groupId>
78 <artifactId>org.apache.felix.gogo.command</artifactId>
79 <exclusions>
80 <exclusion>
81 <groupId>*</groupId>
82 <artifactId>*</artifactId>
83 </exclusion>
84 </exclusions>
85 </dependency>
86 <!-- We install fileinstall bundle which monitors modules
87 dir and autodeploy dir for addition/removal/updation of bundles -->
88 <dependency>
89 <groupId>org.apache.felix</groupId>
90 <artifactId>org.apache.felix.fileinstall</artifactId>
91 <exclusions>
92 <exclusion>
93 <groupId>*</groupId>
94 <artifactId>*</artifactId>
95 </exclusion>
96 </exclusions>
97 </dependency>
98 <!-- fileinstall needs configadmin service -->
99 <dependency>
100 <groupId>org.apache.felix</groupId>
101 <artifactId>org.apache.felix.configadmin</artifactId>
102 <exclusions>
103 <exclusion>
104 <groupId>*</groupId>
105 <artifactId>*</artifactId>
106 </exclusion>
107 </exclusions>
108 </dependency>
109 <dependency>
110 <groupId>org.apache.felix</groupId>
111 <artifactId>org.apache.felix.scr</artifactId>
112 <exclusions>
113 <exclusion>
114 <groupId>*</groupId>
115 <artifactId>*</artifactId>
116 </exclusion>
117 </exclusions>
118 </dependency>
119 <dependency>
120 <groupId>org.glassfish.main.osgi-platforms</groupId>
121 <artifactId>osgi-cli-remote</artifactId>
122 <version>${project.version}</version>
123 <exclusions>
124 <exclusion>
125 <groupId>*</groupId>
126 <artifactId>*</artifactId>
127 </exclusion>
128 </exclusions>
129 </dependency>
130 <dependency>
131 <groupId>org.glassfish.main.osgi-platforms</groupId>
132 <artifactId>osgi-cli-interactive</artifactId>
133 <version>${project.version}</version>
134 <exclusions>
135 <exclusion>
136 <groupId>*</groupId>
137 <artifactId>*</artifactId>
138 </exclusion>
139 </exclusions>
140 </dependency>
141 <dependency>
142 <groupId>org.glassfish.main.osgi-platforms</groupId>
143 <artifactId>osgi-container</artifactId>
144 <version>${project.version}</version>
145 <exclusions>
146 <exclusion>
147 <groupId>*</groupId>
148 <artifactId>*</artifactId>
149 </exclusion>
150 </exclusions>
151 </dependency>
152
153 <!-- nucleus-hk2 -->
154 <dependency>
155 <groupId>org.glassfish.hk2</groupId>
156 <artifactId>hk2-core</artifactId>
157 <exclusions>
158 <exclusion>
159 <groupId>*</groupId>
160 <artifactId>*</artifactId>
161 </exclusion>
162 </exclusions>
163 </dependency>
164 <dependency>
165 <groupId>org.glassfish.hk2</groupId>
166 <artifactId>osgi-resource-locator</artifactId>
167 <exclusions>
168 <exclusion>
169 <groupId>*</groupId>
170 <artifactId>*</artifactId>
171 </exclusion>
172 </exclusions>
173 </dependency>
174 <dependency>
175 <groupId>org.glassfish.hk2</groupId>
176 <artifactId>hk2-api</artifactId>
177 <exclusions>
178 <exclusion>
179 <groupId>*</groupId>
180 <artifactId>*</artifactId>
181 </exclusion>
182 </exclusions>
183 </dependency>
184 <dependency>
Ankur Kathuriaaa2482b2018-12-25 17:31:43 +0530185 <groupId>org.glassfish.main.hk2</groupId>
Vinay Vishal57171472018-09-18 20:22:00 +0530186 <artifactId>hk2-config</artifactId>
187 <version>${project.version}</version>
188 <exclusions>
189 <exclusion>
190 <groupId>*</groupId>
191 <artifactId>*</artifactId>
192 </exclusion>
193 </exclusions>
194 </dependency>
195 <dependency>
196 <groupId>org.glassfish.hk2</groupId>
197 <artifactId>hk2-runlevel</artifactId>
198 <exclusions>
199 <exclusion>
200 <groupId>*</groupId>
201 <artifactId>*</artifactId>
202 </exclusion>
203 </exclusions>
204 </dependency>
205 <dependency>
Ankur Kathuriaaa2482b2018-12-25 17:31:43 +0530206 <groupId>org.glassfish.main.hk2</groupId>
Vinay Vishal57171472018-09-18 20:22:00 +0530207 <artifactId>tiger-types</artifactId>
208 <version>${project.version}</version>
209 <exclusions>
210 <exclusion>
211 <groupId>*</groupId>
212 <artifactId>*</artifactId>
213 </exclusion>
214 </exclusions>
215 </dependency>
216 <dependency>
217 <groupId>org.glassfish.hk2</groupId>
218 <artifactId>hk2</artifactId>
219 <exclusions>
220 <exclusion>
221 <groupId>*</groupId>
222 <artifactId>*</artifactId>
223 </exclusion>
224 </exclusions>
225 </dependency>
226 <dependency>
227 <groupId>org.glassfish.hk2</groupId>
228 <artifactId>hk2-locator</artifactId>
229 <exclusions>
230 <exclusion>
231 <groupId>*</groupId>
232 <artifactId>*</artifactId>
233 </exclusion>
234 </exclusions>
235 </dependency>
236 <dependency>
237 <groupId>org.glassfish.hk2</groupId>
238 <artifactId>class-model</artifactId>
239 <exclusions>
240 <exclusion>
241 <groupId>*</groupId>
242 <artifactId>*</artifactId>
243 </exclusion>
244 </exclusions>
245 </dependency>
246 <dependency>
247 <groupId>org.glassfish.hk2</groupId>
248 <artifactId>hk2-utils</artifactId>
249 <exclusions>
250 <exclusion>
251 <groupId>*</groupId>
252 <artifactId>*</artifactId>
253 </exclusion>
254 </exclusions>
255 </dependency>
256 <dependency>
257 <groupId>org.glassfish.external</groupId>
258 <artifactId>asm-all</artifactId>
259 <exclusions>
260 <exclusion>
261 <groupId>*</groupId>
262 <artifactId>*</artifactId>
263 </exclusion>
264 </exclusions>
265 </dependency>
266 <dependency>
267 <groupId>org.glassfish.main.bean-validator</groupId>
268 <artifactId>bean-validator</artifactId>
269 <version>${project.version}</version>
270 <exclusions>
271 <exclusion>
272 <groupId>*</groupId>
273 <artifactId>*</artifactId>
274 </exclusion>
275 </exclusions>
276 </dependency>
277 <dependency>
278 <groupId>org.glassfish.main.bean-validator-cdi</groupId>
279 <artifactId>bean-validator-cdi</artifactId>
280 <version>${project.version}</version>
281 <exclusions>
282 <exclusion>
283 <groupId>*</groupId>
284 <artifactId>*</artifactId>
285 </exclusion>
286 </exclusions>
287 </dependency>
288 <dependency>
289 <groupId>org.jboss.logging</groupId>
290 <artifactId>jboss-logging</artifactId>
291 <version>${jboss.logging.version}</version>
292 <exclusions>
293 <exclusion>
294 <groupId>*</groupId>
295 <artifactId>*</artifactId>
296 </exclusion>
297 </exclusions>
298 </dependency>
299 <dependency>
300 <groupId>com.fasterxml</groupId>
301 <artifactId>classmate</artifactId>
302 <exclusions>
303 <exclusion>
304 <groupId>*</groupId>
305 <artifactId>*</artifactId>
306 </exclusion>
307 </exclusions>
308 </dependency>
309 <dependency>
310 <groupId>org.glassfish.hk2.external</groupId>
Ankur Kathuria4a24cca2018-12-03 00:40:24 +0530311 <artifactId>jakarta.inject</artifactId>
Vinay Vishal57171472018-09-18 20:22:00 +0530312 <exclusions>
313 <exclusion>
314 <groupId>*</groupId>
315 <artifactId>*</artifactId>
316 </exclusion>
317 </exclusions>
318 </dependency>
319 <dependency>
320 <groupId>org.glassfish</groupId>
Vinay Vishal00e18e92018-12-07 10:16:31 +0530321 <artifactId>jakarta.el</artifactId>
Vinay Vishal57171472018-09-18 20:22:00 +0530322 <exclusions>
323 <exclusion>
324 <groupId>*</groupId>
325 <artifactId>*</artifactId>
326 </exclusion>
327 </exclusions>
328 </dependency>
329 <dependency>
330 <groupId>org.javassist</groupId>
331 <artifactId>javassist</artifactId>
332 <exclusions>
333 <exclusion>
334 <groupId>*</groupId>
335 <artifactId>*</artifactId>
336 </exclusion>
337 </exclusions>
338 </dependency>
339 <dependency>
340 <groupId>org.glassfish.hk2.external</groupId>
341 <artifactId>aopalliance-repackaged</artifactId>
342 <exclusions>
343 <exclusion>
344 <groupId>*</groupId>
345 <artifactId>*</artifactId>
346 </exclusion>
347 </exclusions>
348 </dependency>
349 <dependency>
350 <groupId>org.glassfish.hk2.external</groupId>
351 <artifactId>asm-repackaged</artifactId>
352 <exclusions>
353 <exclusion>
354 <groupId>*</groupId>
355 <artifactId>*</artifactId>
356 </exclusion>
357 </exclusions>
358 </dependency>
359
360 <!-- nucleus-grizzly -->
361 <dependency>
362 <groupId>org.glassfish.main.grizzly</groupId>
363 <artifactId>nucleus-grizzly-all</artifactId>
364 <version>${project.version}</version>
365 <exclusions>
366 <exclusion>
367 <groupId>*</groupId>
368 <artifactId>*</artifactId>
369 </exclusion>
370 </exclusions>
371 </dependency>
372 <dependency>
373 <groupId>org.glassfish.grizzly</groupId>
374 <artifactId>grizzly-npn-bootstrap</artifactId>
375 <version>${grizzly.npn.version}</version>
376 <exclusions>
377 <exclusion>
378 <groupId>*</groupId>
379 <artifactId>*</artifactId>
380 </exclusion>
381 </exclusions>
382 </dependency>
383 <dependency>
384 <groupId>org.glassfish.grizzly</groupId>
385 <artifactId>grizzly-npn-osgi</artifactId>
386 <version>${grizzly.npn.version}</version>
387 <exclusions>
388 <exclusion>
389 <groupId>*</groupId>
390 <artifactId>*</artifactId>
391 </exclusion>
392 </exclusions>
393 </dependency>
394
395 <!-- nucleus -->
396 <dependency>
397 <groupId>org.glassfish.hk2</groupId>
398 <artifactId>osgi-adapter</artifactId>
399 <exclusions>
400 <exclusion>
401 <groupId>*</groupId>
402 <artifactId>*</artifactId>
403 </exclusion>
404 </exclusions>
405 </dependency>
406 <dependency>
407 <groupId>org.glassfish.main.core</groupId>
408 <artifactId>glassfish-extra-jre-packages</artifactId>
409 <version>${project.version}</version>
410 <exclusions>
411 <exclusion>
412 <groupId>*</groupId>
413 <artifactId>*</artifactId>
414 </exclusion>
415 </exclusions>
416 </dependency>
417 <dependency>
418 <groupId>org.glassfish.main.core</groupId>
419 <artifactId>api-exporter</artifactId>
420 <version>${project.version}</version>
421 <exclusions>
422 <exclusion>
423 <groupId>*</groupId>
424 <artifactId>*</artifactId>
425 </exclusion>
426 </exclusions>
427 </dependency>
428 <dependency>
429 <groupId>org.glassfish.main.core</groupId>
430 <artifactId>glassfish</artifactId>
431 <version>${project.version}</version>
432 <exclusions>
433 <exclusion>
434 <groupId>*</groupId>
435 <artifactId>*</artifactId>
436 </exclusion>
437 </exclusions>
438 </dependency>
439 <dependency>
440 <groupId>org.glassfish.main.core</groupId>
441 <artifactId>kernel</artifactId>
442 <version>${project.version}</version>
443 <exclusions>
444 <exclusion>
445 <groupId>*</groupId>
446 <artifactId>*</artifactId>
447 </exclusion>
448 </exclusions>
449 </dependency>
450 <dependency>
451 <groupId>org.glassfish.main.admin</groupId>
452 <artifactId>admin-cli</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.admin</groupId>
463 <artifactId>admin-util</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.common</groupId>
474 <artifactId>common-util</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.admin</groupId>
485 <artifactId>config-api</artifactId>
486 <version>${project.version}</version>
487 <exclusions>
488 <exclusion>
489 <groupId>*</groupId>
490 <artifactId>*</artifactId>
491 </exclusion>
492 </exclusions>
493 </dependency>
494 <dependency>
Ankur Kathuriaaa2482b2018-12-25 17:31:43 +0530495 <groupId>org.glassfish.main.hk2</groupId>
Vinay Vishal57171472018-09-18 20:22:00 +0530496 <artifactId>config-types</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.deployment</groupId>
507 <artifactId>deployment-admin</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.deployment</groupId>
518 <artifactId>deployment-autodeploy</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.deployment</groupId>
529 <artifactId>deployment-common</artifactId>
530 <version>${project.version}</version>
531 <exclusions>
532 <exclusion>
533 <groupId>*</groupId>
534 <artifactId>*</artifactId>
535 </exclusion>
536 </exclusions>
537 </dependency>
538 <dependency>
539 <groupId>org.glassfish.gmbal</groupId>
540 <artifactId>gmbal</artifactId>
541 <exclusions>
542 <exclusion>
543 <groupId>*</groupId>
544 <artifactId>*</artifactId>
545 </exclusion>
546 </exclusions>
547 </dependency>
548 <dependency>
549 <groupId>org.glassfish.main.common</groupId>
550 <artifactId>internal-api</artifactId>
551 <version>${project.version}</version>
552 <exclusions>
553 <exclusion>
554 <groupId>*</groupId>
555 <artifactId>*</artifactId>
556 </exclusion>
557 </exclusions>
558 </dependency>
559 <dependency>
560 <groupId>org.glassfish.main.common</groupId>
561 <artifactId>glassfish-api</artifactId>
562 <version>${project.version}</version>
563 <exclusions>
564 <exclusion>
565 <groupId>*</groupId>
566 <artifactId>*</artifactId>
567 </exclusion>
568 </exclusions>
569 </dependency>
570 <dependency>
571 <groupId>org.glassfish.main.admin</groupId>
572 <artifactId>launcher</artifactId>
573 <version>${project.version}</version>
574 <exclusions>
575 <exclusion>
576 <groupId>*</groupId>
577 <artifactId>*</artifactId>
578 </exclusion>
579 </exclusions>
580 </dependency>
581 <dependency>
582 <groupId>org.glassfish.main.core</groupId>
583 <artifactId>logging</artifactId>
584 <version>${project.version}</version>
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>scattered-archive-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>simple-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.external</groupId>
616 <artifactId>management-api</artifactId>
617 <exclusions>
618 <exclusion>
619 <groupId>*</groupId>
620 <artifactId>*</artifactId>
621 </exclusion>
622 </exclusions>
623 </dependency>
624 <dependency>
625 <groupId>org.glassfish.main.flashlight</groupId>
626 <artifactId>flashlight-framework</artifactId>
627 <version>${project.version}</version>
628 <exclusions>
629 <exclusion>
630 <groupId>*</groupId>
631 <artifactId>*</artifactId>
632 </exclusion>
633 </exclusions>
634 </dependency>
635 <dependency>
636 <groupId>org.glassfish.main.flashlight</groupId>
637 <artifactId>flashlight-agent</artifactId>
638 <version>${project.version}</version>
639 <exclusions>
640 <exclusion>
641 <groupId>*</groupId>
642 <artifactId>*</artifactId>
643 </exclusion>
644 </exclusions>
645 </dependency>
646 <dependency>
647 <groupId>org.glassfish.main.flashlight</groupId>
648 <artifactId>flashlight-extra-jdk-packages</artifactId>
649 <version>${project.version}</version>
650 <exclusions>
651 <exclusion>
652 <groupId>*</groupId>
653 <artifactId>*</artifactId>
654 </exclusion>
655 </exclusions>
656 </dependency>
657 <dependency>
658 <groupId>org.glassfish.main.admin</groupId>
659 <artifactId>nucleus-domain</artifactId>
660 <version>${project.version}</version>
661 <exclusions>
662 <exclusion>
663 <groupId>*</groupId>
664 <artifactId>*</artifactId>
665 </exclusion>
666 </exclusions>
667 </dependency>
668 <dependency>
669 <groupId>org.glassfish.main.admin</groupId>
670 <artifactId>server-mgmt</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.security</groupId>
681 <artifactId>security</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.security</groupId>
692 <artifactId>security-services</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.security</groupId>
703 <artifactId>ssl-impl</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.ldapbp</groupId>
714 <artifactId>ldapbp</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.jvnet.mimepull</groupId>
725 <artifactId>mimepull</artifactId>
726 <exclusions>
727 <exclusion>
728 <groupId>*</groupId>
729 <artifactId>*</artifactId>
730 </exclusion>
731 </exclusions>
732 </dependency>
733 <dependency>
Lukas Jungmannd560b8f2018-12-04 04:08:28 +0100734 <groupId>jakarta.annotation</groupId>
735 <artifactId>jakarta.annotation-api</artifactId>
Vinay Vishal57171472018-09-18 20:22:00 +0530736 <exclusions>
737 <exclusion>
738 <groupId>*</groupId>
739 <artifactId>*</artifactId>
740 </exclusion>
741 </exclusions>
742 </dependency>
743
744 <!-- nucleus-jmx -->
745 <dependency>
746 <groupId>org.glassfish.main.common</groupId>
747 <artifactId>glassfish-mbeanserver</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.common</groupId>
758 <artifactId>amx-core</artifactId>
759 <version>${project.version}</version>
760 <exclusions>
761 <exclusion>
762 <groupId>*</groupId>
763 <artifactId>*</artifactId>
764 </exclusion>
765 </exclusions>
766 </dependency>
767
768 <!-- nucleus-jersey -->
769 <dependency>
770 <groupId>org.glassfish.jersey.core</groupId>
771 <artifactId>jersey-server</artifactId>
772 <exclusions>
773 <exclusion>
774 <groupId>*</groupId>
775 <artifactId>*</artifactId>
776 </exclusion>
777 </exclusions>
778 </dependency>
779 <dependency>
780 <groupId>org.glassfish.jersey.core</groupId>
781 <artifactId>jersey-client</artifactId>
782 <exclusions>
783 <exclusion>
784 <groupId>*</groupId>
785 <artifactId>*</artifactId>
786 </exclusion>
787 </exclusions>
788 </dependency>
789 <dependency>
790 <groupId>org.glassfish.jersey.containers</groupId>
791 <artifactId>jersey-container-grizzly2-http</artifactId>
792 <exclusions>
793 <exclusion>
794 <groupId>*</groupId>
795 <artifactId>*</artifactId>
796 </exclusion>
797 </exclusions>
798 </dependency>
799 <dependency>
800 <groupId>org.glassfish.jersey.media</groupId>
801 <artifactId>jersey-media-jaxb</artifactId>
802 <exclusions>
803 <exclusion>
804 <groupId>*</groupId>
805 <artifactId>*</artifactId>
806 </exclusion>
807 </exclusions>
808 </dependency>
809 <dependency>
810 <groupId>org.glassfish.jersey.media</groupId>
811 <artifactId>jersey-media-json-jettison</artifactId>
812 <exclusions>
813 <exclusion>
814 <groupId>*</groupId>
815 <artifactId>*</artifactId>
816 </exclusion>
817 </exclusions>
818 </dependency>
819 <dependency>
820 <groupId>org.glassfish.jersey.media</groupId>
821 <artifactId>jersey-media-json-jackson</artifactId>
822 <exclusions>
823 <exclusion>
824 <groupId>*</groupId>
825 <artifactId>*</artifactId>
826 </exclusion>
827 </exclusions>
828 </dependency>
829 <dependency>
830 <groupId>org.glassfish.jersey.media</groupId>
831 <artifactId>jersey-media-sse</artifactId>
832 <exclusions>
833 <exclusion>
834 <groupId>*</groupId>
835 <artifactId>*</artifactId>
836 </exclusion>
837 </exclusions>
838 </dependency>
839 <dependency>
840 <groupId>org.glassfish.jersey.media</groupId>
841 <artifactId>jersey-media-multipart</artifactId>
842 <exclusions>
843 <exclusion>
844 <groupId>*</groupId>
845 <artifactId>*</artifactId>
846 </exclusion>
847 </exclusions>
848 </dependency>
849 <dependency>
850 <groupId>org.glassfish.jersey.ext</groupId>
851 <artifactId>jersey-bean-validation</artifactId>
852 <exclusions>
853 <exclusion>
854 <groupId>*</groupId>
855 <artifactId>*</artifactId>
856 </exclusion>
857 </exclusions>
858 </dependency>
859 <dependency>
860 <groupId>org.glassfish.jersey.ext</groupId>
861 <artifactId>jersey-entity-filtering</artifactId>
862 <exclusions>
863 <exclusion>
864 <groupId>*</groupId>
865 <artifactId>*</artifactId>
866 </exclusion>
867 </exclusions>
868 </dependency>
869 <dependency>
870 <groupId>org.glassfish.jersey.core</groupId>
871 <artifactId>jersey-common</artifactId>
872 <exclusions>
873 <exclusion>
874 <groupId>*</groupId>
875 <artifactId>*</artifactId>
876 </exclusion>
877 </exclusions>
878 </dependency>
879 <dependency>
880 <groupId>org.glassfish.jersey.inject</groupId>
881 <artifactId>jersey-hk2</artifactId>
882 <exclusions>
883 <exclusion>
884 <groupId>*</groupId>
885 <artifactId>*</artifactId>
886 </exclusion>
887 </exclusions>
888 </dependency>
889 <dependency>
890 <groupId>org.glassfish.jersey.media</groupId>
891 <artifactId>jersey-media-json-processing</artifactId>
892 <exclusions>
893 <exclusion>
894 <groupId>*</groupId>
895 <artifactId>*</artifactId>
896 </exclusion>
897 </exclusions>
898 </dependency>
899 <dependency>
900 <groupId>org.glassfish.jersey.media</groupId>
901 <artifactId>jersey-media-json-binding</artifactId>
902 <exclusions>
903 <exclusion>
904 <groupId>*</groupId>
905 <artifactId>*</artifactId>
906 </exclusion>
907 </exclusions>
908 </dependency>
909 <dependency>
jansupol50ce8f42018-12-08 01:15:30 +0100910 <groupId>jakarta.ws.rs</groupId>
911 <artifactId>jakarta.ws.rs-api</artifactId>
Vinay Vishal57171472018-09-18 20:22:00 +0530912 <exclusions>
913 <exclusion>
914 <groupId>*</groupId>
915 <artifactId>*</artifactId>
916 </exclusion>
917 </exclusions>
918 </dependency>
919 <dependency>
920 <groupId>com.fasterxml.jackson.core</groupId>
921 <artifactId>jackson-core</artifactId>
922 <exclusions>
923 <exclusion>
924 <groupId>*</groupId>
925 <artifactId>*</artifactId>
926 </exclusion>
927 </exclusions>
928 </dependency>
929 <dependency>
930 <groupId>com.fasterxml.jackson.core</groupId>
931 <artifactId>jackson-databind</artifactId>
932 <exclusions>
933 <exclusion>
934 <groupId>*</groupId>
935 <artifactId>*</artifactId>
936 </exclusion>
937 </exclusions>
938 </dependency>
939 <dependency>
940 <groupId>com.fasterxml.jackson.core</groupId>
941 <artifactId>jackson-annotations</artifactId>
942 <exclusions>
943 <exclusion>
944 <groupId>*</groupId>
945 <artifactId>*</artifactId>
946 </exclusion>
947 </exclusions>
948 </dependency>
949 <dependency>
950 <groupId>com.fasterxml.jackson.module</groupId>
951 <artifactId>jackson-module-jaxb-annotations</artifactId>
952 <exclusions>
953 <exclusion>
954 <groupId>*</groupId>
955 <artifactId>*</artifactId>
956 </exclusion>
957 </exclusions>
958 </dependency>
959 <dependency>
960 <groupId>org.codehaus.jettison</groupId>
961 <artifactId>jettison</artifactId>
962 <exclusions>
963 <exclusion>
964 <groupId>*</groupId>
965 <artifactId>*</artifactId>
966 </exclusion>
967 </exclusions>
968 </dependency>
969 </dependencies>
970</project>