File tree 2 files changed +16
-1
lines changed
powertools-e2e-tests/src/test/java/software/amazon/lambda/powertools/testutils
2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 102
102
</snapshotRepository >
103
103
</distributionManagement >
104
104
105
+ <repositories >
106
+ <repository >
107
+ <id >ossrh-snapshots</id >
108
+ <url >https://oss.sonatype.org/content/repositories/snapshots</url >
109
+ <releases >
110
+ <enabled >false</enabled >
111
+ </releases >
112
+ <snapshots >
113
+ <enabled >true</enabled >
114
+ <updatePolicy >always</updatePolicy >
115
+ </snapshots >
116
+ </repository >
117
+ </repositories >
118
+
105
119
<dependencyManagement >
106
120
<dependencies >
107
121
<dependency >
Original file line number Diff line number Diff line change @@ -204,6 +204,7 @@ public void destroy() {
204
204
private Stack createStackWithLambda () {
205
205
boolean createTableForAsyncTests = false ;
206
206
Stack stack = new Stack (app , stackName );
207
+
207
208
List <String > packagingInstruction = Arrays .asList (
208
209
"/bin/sh" ,
209
210
"-c" ,
@@ -515,7 +516,7 @@ private JavaRuntime mapRuntimeVersion(String environmentVariableName) {
515
516
String javaVersion = System .getenv (environmentVariableName ); // must be set in GitHub actions
516
517
JavaRuntime ret = null ;
517
518
if (javaVersion == null ) {
518
- throw new IllegalArgumentException ("JAVA_VERSION is not set" );
519
+ throw new IllegalArgumentException (environmentVariableName + " is not set" );
519
520
}
520
521
if (javaVersion .startsWith ("8" )) {
521
522
ret = JavaRuntime .JAVA8AL2 ;
You can’t perform that action at this time.
0 commit comments