File tree Expand file tree Collapse file tree 12 files changed +62
-31
lines changed Expand file tree Collapse file tree 12 files changed +62
-31
lines changed Original file line number Diff line number Diff line change @@ -62,10 +62,11 @@ field access and method calls
62
62
<groupId >org.ow2.asm</groupId >
63
63
<artifactId >asm</artifactId >
64
64
</dependency >
65
- <dependency > <!-- tests use Jackson annotations -->
66
- <groupId >com.fasterxml.jackson.core</groupId >
67
- <artifactId >jackson-annotations</artifactId >
68
- <scope >provided</scope >
65
+
66
+ <dependency >
67
+ <groupId >junit</groupId >
68
+ <artifactId >junit</artifactId >
69
+ <scope >test</scope >
69
70
</dependency >
70
71
</dependencies >
71
72
@@ -167,7 +168,6 @@ field access and method calls
167
168
<plugin >
168
169
<groupId >org.apache.maven.plugins</groupId >
169
170
<artifactId >maven-surefire-plugin</artifactId >
170
- <version >3.0.0-M8</version >
171
171
<configuration >
172
172
<argLine >--add-opens java.base/java.lang=ALL-UNNAMED</argLine >
173
173
</configuration >
Original file line number Diff line number Diff line change 39
39
</dependency >
40
40
<dependency >
41
41
<groupId >com.fasterxml.jackson.core</groupId >
42
- <artifactId >jackson-annotations </artifactId >
42
+ <artifactId >jackson-databind </artifactId >
43
43
</dependency >
44
+
44
45
<dependency >
45
- <groupId >com.fasterxml.jackson.core</groupId >
46
- <artifactId >jackson-databind</artifactId >
46
+ <groupId >junit</groupId >
47
+ <artifactId >junit</artifactId >
48
+ <scope >test</scope >
47
49
</dependency >
48
50
</dependencies >
49
51
Original file line number Diff line number Diff line change @@ -43,10 +43,11 @@ that uses LambdaMetafactory based code generation to replace reflection calls.
43
43
<groupId >com.fasterxml.jackson.core</groupId >
44
44
<artifactId >jackson-databind</artifactId >
45
45
</dependency >
46
- <dependency > <!-- tests use Jackson annotations -->
47
- <groupId >com.fasterxml.jackson.core</groupId >
48
- <artifactId >jackson-annotations</artifactId >
49
- <scope >provided</scope >
46
+
47
+ <dependency >
48
+ <groupId >junit</groupId >
49
+ <artifactId >junit</artifactId >
50
+ <scope >test</scope >
50
51
</dependency >
51
52
</dependencies >
52
53
@@ -84,7 +85,6 @@ that uses LambdaMetafactory based code generation to replace reflection calls.
84
85
<plugin >
85
86
<groupId >org.apache.maven.plugins</groupId >
86
87
<artifactId >maven-surefire-plugin</artifactId >
87
- <version >3.0.0-M8</version >
88
88
<configuration >
89
89
<argLine >--add-opens java.base/javax.security.auth=ALL-UNNAMED</argLine >
90
90
</configuration >
Original file line number Diff line number Diff line change 37
37
38
38
<dependencies >
39
39
<!-- Extends Jackson mapper, but also uses types from core, hence direct dep as well -->
40
- <dependency >
41
- <groupId >com.fasterxml.jackson.core</groupId >
42
- <artifactId >jackson-annotations</artifactId >
43
- </dependency >
44
40
<dependency >
45
41
<groupId >com.fasterxml.jackson.core</groupId >
46
42
<artifactId >jackson-core</artifactId >
54
50
<artifactId >guice</artifactId >
55
51
<version >${version.guice} </version >
56
52
</dependency >
53
+
54
+ <dependency >
55
+ <groupId >junit</groupId >
56
+ <artifactId >junit</artifactId >
57
+ <scope >test</scope >
58
+ </dependency >
57
59
</dependencies >
58
60
59
61
<build >
Original file line number Diff line number Diff line change 37
37
38
38
<dependencies >
39
39
<!-- Extends Jackson mapper, but also uses types from core, hence direct dep as well -->
40
- <dependency >
41
- <groupId >com.fasterxml.jackson.core</groupId >
42
- <artifactId >jackson-annotations</artifactId >
43
- </dependency >
44
40
<dependency >
45
41
<groupId >com.fasterxml.jackson.core</groupId >
46
42
<artifactId >jackson-core</artifactId >
54
50
<artifactId >guice</artifactId >
55
51
<version >${version.guice} </version >
56
52
</dependency >
53
+
54
+ <dependency >
55
+ <groupId >junit</groupId >
56
+ <artifactId >junit</artifactId >
57
+ <scope >test</scope >
58
+ </dependency >
57
59
</dependencies >
58
60
59
61
<build >
Original file line number Diff line number Diff line change 75
75
<version >2.1.0</version >
76
76
</dependency >
77
77
78
+ <dependency >
79
+ <groupId >junit</groupId >
80
+ <artifactId >junit</artifactId >
81
+ <scope >test</scope >
82
+ </dependency >
83
+
78
84
<!-- may also need JAXB impl for tests -->
79
85
<dependency >
80
86
<groupId >org.glassfish.jaxb</groupId >
Original file line number Diff line number Diff line change @@ -74,6 +74,12 @@ for configuring data-binding.
74
74
<version >1.2.2</version >
75
75
</dependency >
76
76
77
+ <dependency >
78
+ <groupId >junit</groupId >
79
+ <artifactId >junit</artifactId >
80
+ <scope >test</scope >
81
+ </dependency >
82
+
77
83
<!-- may also need JAXB impl for tests -->
78
84
<!-- 20-May-2024, tatu: no longer needed it seems:
79
85
<dependency>
Original file line number Diff line number Diff line change @@ -61,6 +61,12 @@ ${project.groupId}.mrbean.*;version=${project.version}
61
61
<groupId >org.ow2.asm</groupId >
62
62
<artifactId >asm</artifactId >
63
63
</dependency >
64
+
65
+ <dependency >
66
+ <groupId >junit</groupId >
67
+ <artifactId >junit</artifactId >
68
+ <scope >test</scope >
69
+ </dependency >
64
70
</dependencies >
65
71
66
72
<build >
Original file line number Diff line number Diff line change 41
41
<groupId >com.fasterxml.jackson.core</groupId >
42
42
<artifactId >jackson-databind</artifactId >
43
43
</dependency >
44
+
45
+ <dependency >
46
+ <groupId >junit</groupId >
47
+ <artifactId >junit</artifactId >
48
+ <scope >test</scope >
49
+ </dependency >
44
50
</dependencies >
45
51
46
52
<build >
Original file line number Diff line number Diff line change 46
46
<artifactId >org.osgi.core</artifactId >
47
47
<version >${version.osgi.core} </version >
48
48
</dependency >
49
+ <dependency >
50
+ <groupId >junit</groupId >
51
+ <artifactId >junit</artifactId >
52
+ <scope >test</scope >
53
+ </dependency >
49
54
<dependency >
50
55
<groupId >org.mockito</groupId >
51
56
<artifactId >mockito-all</artifactId >
82
87
<plugin >
83
88
<groupId >org.apache.maven.plugins</groupId >
84
89
<artifactId >maven-surefire-plugin</artifactId >
85
- <version >3.0.0-M8</version >
86
90
<configuration >
87
91
<argLine >--add-opens java.base/java.lang=ALL-UNNAMED</argLine >
88
92
</configuration >
You can’t perform that action at this time.
0 commit comments