File tree Expand file tree Collapse file tree 10 files changed +68
-21
lines changed
src/main/java/io/helidon/microprofile/arquillian Expand file tree Collapse file tree 10 files changed +68
-21
lines changed Original file line number Diff line number Diff line change 53
53
</dependency >
54
54
<dependency >
55
55
<groupId >io.helidon.microprofile.bundles</groupId >
56
- <artifactId >helidon-microprofile</artifactId >
57
- <exclusions >
58
- <exclusion >
59
- <groupId >io.helidon.health</groupId >
60
- <artifactId >helidon-health-checks</artifactId >
61
- </exclusion >
62
- </exclusions >
56
+ <artifactId >helidon-microprofile-core</artifactId >
57
+ </dependency >
58
+ <dependency >
59
+ <groupId >io.helidon.microprofile.metrics</groupId >
60
+ <artifactId >helidon-microprofile-metrics</artifactId >
63
61
</dependency >
64
62
<dependency >
65
63
<groupId >junit</groupId >
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2018, 2022 Oracle and/or its affiliates.
2
+ * Copyright (c) 2018, 2023 Oracle and/or its affiliates.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
48
48
49
49
import io .helidon .config .mp .MpConfigSources ;
50
50
51
+ import jakarta .enterprise .inject .ResolutionException ;
51
52
import jakarta .enterprise .inject .se .SeContainer ;
52
53
import jakarta .enterprise .inject .spi .CDI ;
53
54
import jakarta .enterprise .inject .spi .DefinitionException ;
@@ -474,7 +475,7 @@ private void cleanupBaseMetrics() {
474
475
new BaseRegistryTypeLiteral ()).get ();
475
476
Objects .requireNonNull (metricRegistry );
476
477
metricRegistry .removeMatching ((m , v ) -> true );
477
- } catch (IllegalStateException e ) {
478
+ } catch (IllegalStateException | ResolutionException e ) {
478
479
LOGGER .log (Level .WARNING , "Unable to cleanup base metrics" , e );
479
480
}
480
481
}
Original file line number Diff line number Diff line change 42
42
<scope >test</scope >
43
43
</dependency >
44
44
<dependency >
45
- <groupId >io.helidon.microprofile.bundles</groupId >
46
- <artifactId >helidon-microprofile</artifactId >
45
+ <groupId >io.helidon.microprofile.metrics</groupId >
46
+ <artifactId >helidon-microprofile-metrics</artifactId >
47
+ <scope >test</scope >
48
+ </dependency >
49
+ <dependency >
50
+ <groupId >io.helidon.microprofile</groupId >
51
+ <artifactId >helidon-microprofile-fault-tolerance</artifactId >
47
52
<scope >test</scope >
48
53
</dependency >
49
54
<dependency >
Original file line number Diff line number Diff line change 47
47
<artifactId >parsson</artifactId >
48
48
<scope >test</scope >
49
49
</dependency >
50
+ <dependency >
51
+ <groupId >io.helidon.microprofile.health</groupId >
52
+ <artifactId >helidon-microprofile-health</artifactId >
53
+ </dependency >
50
54
<dependency >
51
55
<groupId >org.eclipse.microprofile.health</groupId >
52
56
<artifactId >microprofile-health-tck</artifactId >
Original file line number Diff line number Diff line change 38
38
<type >test-jar</type >
39
39
<scope >test</scope >
40
40
</dependency >
41
- <dependency >
42
- <groupId >io.helidon.microprofile.bundles</groupId >
43
- <artifactId >helidon-microprofile-core</artifactId >
44
- </dependency >
45
41
<dependency >
46
42
<groupId >io.helidon.microprofile.jwt</groupId >
47
43
<artifactId >helidon-microprofile-jwt-auth</artifactId >
Original file line number Diff line number Diff line change 45
45
<groupId >io.helidon.microprofile.lra</groupId >
46
46
<artifactId >helidon-microprofile-lra</artifactId >
47
47
</dependency >
48
+ <dependency >
49
+ <groupId >org.glassfish.jersey.media</groupId >
50
+ <artifactId >jersey-media-json-binding</artifactId >
51
+ <scope >test</scope >
52
+ </dependency >
48
53
<dependency >
49
54
<groupId >io.helidon.lra</groupId >
50
55
<artifactId >helidon-lra-coordinator-narayana-client</artifactId >
54
59
<artifactId >helidon-lra-coordinator-server</artifactId >
55
60
<version >${project.version} </version >
56
61
</dependency >
62
+ <dependency >
63
+ <groupId >io.helidon.microprofile.health</groupId >
64
+ <artifactId >helidon-microprofile-health</artifactId >
65
+ </dependency >
57
66
</dependencies >
58
67
59
68
<profiles >
Original file line number Diff line number Diff line change 63
63
<artifactId >arquillian-testng-container</artifactId >
64
64
<scope >test</scope >
65
65
</dependency >
66
+ <dependency >
67
+ <groupId >io.helidon.microprofile.openapi</groupId >
68
+ <artifactId >helidon-microprofile-openapi</artifactId >
69
+ <scope >test</scope >
70
+ </dependency >
66
71
<dependency >
67
72
<groupId >org.eclipse.microprofile.openapi</groupId >
68
73
<artifactId >microprofile-openapi-api</artifactId >
Original file line number Diff line number Diff line change 41
41
</exclusion >
42
42
</exclusions >
43
43
</dependency >
44
+ <dependency >
45
+ <groupId >org.glassfish.jersey.media</groupId >
46
+ <artifactId >jersey-media-json-binding</artifactId >
47
+ <scope >test</scope >
48
+ </dependency >
49
+ <dependency >
50
+ <groupId >io.helidon.microprofile.tracing</groupId >
51
+ <artifactId >helidon-microprofile-tracing</artifactId >
52
+ <scope >test</scope >
53
+ </dependency >
54
+ <dependency >
55
+ <groupId >io.helidon.microprofile.rest-client</groupId >
56
+ <artifactId >helidon-microprofile-rest-client</artifactId >
57
+ <scope >test</scope >
58
+ </dependency >
59
+ <dependency >
60
+ <groupId >io.helidon.microprofile.server</groupId >
61
+ <artifactId >helidon-microprofile-server</artifactId >
62
+ <scope >test</scope >
63
+ </dependency >
44
64
<dependency >
45
65
<groupId >org.eclipse.microprofile.opentracing</groupId >
46
66
<artifactId >microprofile-opentracing-tck</artifactId >
Original file line number Diff line number Diff line change 34
34
<artifactId >helidon-arquillian</artifactId >
35
35
<version >${project.version} </version >
36
36
<scope >test</scope >
37
- <exclusions >
38
- <exclusion >
39
- <groupId >io.helidon.microprofile.bundles</groupId >
40
- <artifactId >helidon-microprofile-3.1</artifactId >
41
- </exclusion >
42
- </exclusions >
43
37
</dependency >
44
38
<dependency >
45
39
<groupId >io.helidon.microprofile.reactive-streams</groupId >
Original file line number Diff line number Diff line change 37
37
<version >${project.version} </version >
38
38
<scope >test</scope >
39
39
</dependency >
40
+ <dependency >
41
+ <groupId >org.glassfish.jersey.media</groupId >
42
+ <artifactId >jersey-media-json-binding</artifactId >
43
+ <scope >test</scope >
44
+ </dependency >
45
+ <dependency >
46
+ <groupId >io.helidon.microprofile.rest-client</groupId >
47
+ <artifactId >helidon-microprofile-rest-client</artifactId >
48
+ <scope >test</scope >
49
+ </dependency >
50
+ <dependency >
51
+ <groupId >io.helidon.microprofile.server</groupId >
52
+ <artifactId >helidon-microprofile-server</artifactId >
53
+ <scope >test</scope >
54
+ </dependency >
40
55
<dependency >
41
56
<groupId >org.eclipse.microprofile.rest.client</groupId >
42
57
<artifactId >microprofile-rest-client-tck</artifactId >
You can’t perform that action at this time.
0 commit comments