File tree 9 files changed +122
-11
lines changed
aws-lambda-java-events-sdk-transformer
aws-lambda-java-runtime-interface-client
aws-lambda-java-serialization
samples/kinesis-firehose-event-handler
9 files changed +122
-11
lines changed Original file line number Diff line number Diff line change 43
43
</repository >
44
44
</distributionManagement >
45
45
46
+ <build >
47
+ <plugins >
48
+ <plugin >
49
+ <groupId >org.apache.maven.plugins</groupId >
50
+ <artifactId >maven-surefire-plugin</artifactId >
51
+ <version >3.5.0</version >
52
+ </plugin >
53
+ <plugin >
54
+ <groupId >org.apache.maven.plugins</groupId >
55
+ <artifactId >maven-jar-plugin</artifactId >
56
+ <version >3.3.0</version >
57
+ <configuration >
58
+ <archive >
59
+ <manifestEntries >
60
+ <Automatic-Module-Name >aws.lambda.core</Automatic-Module-Name >
61
+ </manifestEntries >
62
+ </archive >
63
+ </configuration >
64
+ </plugin >
65
+ </plugins >
66
+ </build >
67
+
46
68
<profiles >
47
69
<profile >
48
70
<id >dev</id >
Original file line number Diff line number Diff line change 70
70
<dependency >
71
71
<groupId >org.junit.jupiter</groupId >
72
72
<artifactId >junit-jupiter-engine</artifactId >
73
- <version >5.7 .0</version >
73
+ <version >5.11 .0</version >
74
74
<scope >test</scope >
75
75
</dependency >
76
76
</dependencies >
77
77
78
78
<build >
79
79
<plugins >
80
80
<plugin >
81
+ <groupId >org.apache.maven.plugins</groupId >
82
+ <artifactId >maven-jar-plugin</artifactId >
83
+ <version >3.3.0</version >
84
+ <configuration >
85
+ <archive >
86
+ <manifestEntries >
87
+ <Automatic-Module-Name >aws.lambda.events.sdk.transformer</Automatic-Module-Name >
88
+ </manifestEntries >
89
+ </archive >
90
+ </configuration >
91
+ </plugin >
92
+ <plugin >
93
+ <groupId >org.apache.maven.plugins</groupId >
81
94
<artifactId >maven-surefire-plugin</artifactId >
82
- <version >2.22.2 </version >
95
+ <version >3.5.0 </version >
83
96
</plugin >
84
97
<plugin >
98
+ <groupId >org.apache.maven.plugins</groupId >
85
99
<artifactId >maven-failsafe-plugin</artifactId >
86
- <version >2.22.2 </version >
100
+ <version >3.5.0 </version >
87
101
</plugin >
88
102
</plugins >
89
103
</build >
Original file line number Diff line number Diff line change 56
56
<dependency >
57
57
<groupId >org.junit.jupiter</groupId >
58
58
<artifactId >junit-jupiter-engine</artifactId >
59
- <version >5.9.2 </version >
59
+ <version >5.11.0 </version >
60
60
<scope >test</scope >
61
61
</dependency >
62
62
<dependency >
80
80
</dependency >
81
81
</dependencies >
82
82
83
+ <build >
84
+ <plugins >
85
+ <plugin >
86
+ <groupId >org.apache.maven.plugins</groupId >
87
+ <artifactId >maven-surefire-plugin</artifactId >
88
+ <version >3.5.0</version >
89
+ </plugin >
90
+ <plugin >
91
+ <groupId >org.apache.maven.plugins</groupId >
92
+ <artifactId >maven-jar-plugin</artifactId >
93
+ <version >3.3.0</version >
94
+ <configuration >
95
+ <archive >
96
+ <manifestEntries >
97
+ <Automatic-Module-Name >aws.lambda.events</Automatic-Module-Name >
98
+ </manifestEntries >
99
+ </archive >
100
+ </configuration >
101
+ </plugin >
102
+ </plugins >
103
+ </build >
104
+
83
105
<profiles >
84
106
<profile >
85
107
<id >dev</id >
Original file line number Diff line number Diff line change 62
62
</dependency >
63
63
</dependencies >
64
64
65
+ <build >
66
+ <plugins >
67
+ <plugin >
68
+ <groupId >org.apache.maven.plugins</groupId >
69
+ <artifactId >maven-surefire-plugin</artifactId >
70
+ <version >3.5.0</version >
71
+ </plugin >
72
+ <plugin >
73
+ <groupId >org.apache.maven.plugins</groupId >
74
+ <artifactId >maven-jar-plugin</artifactId >
75
+ <version >3.3.0</version >
76
+ <configuration >
77
+ <archive >
78
+ <manifestEntries >
79
+ <Automatic-Module-Name >aws.lambda.log4j2</Automatic-Module-Name >
80
+ </manifestEntries >
81
+ </archive >
82
+ </configuration >
83
+ </plugin >
84
+ </plugins >
85
+ </build >
86
+
65
87
<profiles >
66
88
<profile >
67
89
<id >dev</id >
Original file line number Diff line number Diff line change 37
37
<jacoco .maven.plugin.version>0.8.12</jacoco .maven.plugin.version>
38
38
<maven-install-plugin .version>2.4</maven-install-plugin .version>
39
39
<maven-deploy-plugin .version>3.1.1</maven-deploy-plugin .version>
40
- <junit-jupiter .version>5.9.2 </junit-jupiter .version>
40
+ <junit-jupiter .version>5.11.0 </junit-jupiter .version>
41
41
<maven-checkstyle-plugin .version>3.4.0</maven-checkstyle-plugin .version>
42
42
<!--
43
43
The test/integration/codebuild/buildspec.*.yml files will set -DmultiArch=false
115
115
<version >${maven-deploy-plugin.version} </version >
116
116
</plugin >
117
117
<plugin >
118
+ <groupId >org.apache.maven.plugins</groupId >
119
+ <artifactId >maven-jar-plugin</artifactId >
120
+ <version >3.3.0</version >
121
+ <configuration >
122
+ <archive >
123
+ <manifestEntries >
124
+ <Automatic-Module-Name >aws.lambda.runtime.interface.client</Automatic-Module-Name >
125
+ </manifestEntries >
126
+ </archive >
127
+ </configuration >
128
+ </plugin >
129
+ <plugin >
130
+ <groupId >org.apache.maven.plugins</groupId >
118
131
<artifactId >maven-surefire-plugin</artifactId >
119
- <version >3.0.0-M9 </version >
132
+ <version >3.5.0 </version >
120
133
<configuration >
121
134
<argLine >${argLineForReflectionTestOnly} ${argLine} </argLine >
122
135
</configuration >
129
142
</dependencies >
130
143
</plugin >
131
144
<plugin >
145
+ <groupId >org.apache.maven.plugins</groupId >
132
146
<artifactId >maven-failsafe-plugin</artifactId >
133
- <version >2.22.2 </version >
147
+ <version >3.5.0 </version >
134
148
</plugin >
135
149
<plugin >
136
150
<groupId >org.apache.maven.plugins</groupId >
Original file line number Diff line number Diff line change 193
193
</extension >
194
194
</extensions >
195
195
<plugins >
196
+ <plugin >
197
+ <groupId >org.apache.maven.plugins</groupId >
198
+ <artifactId >maven-surefire-plugin</artifactId >
199
+ <version >3.5.0</version >
200
+ </plugin >
201
+ <plugin >
202
+ <groupId >org.apache.maven.plugins</groupId >
203
+ <artifactId >maven-jar-plugin</artifactId >
204
+ <version >3.3.0</version >
205
+ <configuration >
206
+ <archive >
207
+ <manifestEntries >
208
+ <Automatic-Module-Name >aws.lambda.serialization</Automatic-Module-Name >
209
+ </manifestEntries >
210
+ </archive >
211
+ </configuration >
212
+ </plugin >
196
213
<plugin >
197
214
<groupId >org.apache.maven.plugins</groupId >
198
215
<artifactId >maven-shade-plugin</artifactId >
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ Also have surefire in your plugins:
52
52
<plugin >
53
53
<groupId >org.apache.maven.plugins</groupId >
54
54
<artifactId >maven-surefire-plugin</artifactId >
55
- <version >2.22.2 </version >
55
+ <version >3.2.5 </version >
56
56
</plugin >
57
57
</plugins >
58
58
</build >
Original file line number Diff line number Diff line change 32
32
<maven .compiler.source>1.8</maven .compiler.source>
33
33
<maven .compiler.target>1.8</maven .compiler.target>
34
34
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
35
- <junit .version>5.9.2 </junit .version>
35
+ <junit .version>5.11.0 </junit .version>
36
36
<jacoco .maven.plugin.version>0.8.7</jacoco .maven.plugin.version>
37
37
</properties >
38
38
250
250
<plugin >
251
251
<groupId >org.apache.maven.plugins</groupId >
252
252
<artifactId >maven-surefire-plugin</artifactId >
253
- <version >2.22.2 </version >
253
+ <version >3.5.0 </version >
254
254
</plugin >
255
255
</plugins >
256
256
</build >
Original file line number Diff line number Diff line change 68
68
<plugin >
69
69
<groupId >org.apache.maven.plugins</groupId >
70
70
<artifactId >maven-surefire-plugin</artifactId >
71
- <version >2.22.2 </version >
71
+ <version >3.5.0 </version >
72
72
</plugin >
73
73
</plugins >
74
74
</build >
You can’t perform that action at this time.
0 commit comments