Skip to content

Commit 29ab8d9

Browse files
committed
fixed checkbuild issues
1 parent 832b52c commit 29ab8d9

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

scripts/validate-brazil-config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import re
1212
# Usage: validate-brazil-config [module-paths-file] [dependencies-file]
1313

1414
# Generating module-paths-file:
15-
# mvn exec:exec -Dexec.executable=pwd -pl \!:aws-sdk-java-pom,\!:sdk-benchmarks,\!:module-path-tests -q 2>&1 > modules.txt
15+
# mvn exec:exec -Dexec.executable=pwd -pl \!:aws-sdk-java-pom,\!:sdk-benchmarks,\!:http-client-benchmarks,\!:module-path-tests -q 2>&1 > modules.txt
1616
#
1717
# Generates contents similar to:
1818
# /workspace/aws-sdk-java-v2/build-tools

test/http-client-benchmarks/pom.xml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<properties>
3333
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3434
<jmh.version>1.37</jmh.version>
35-
<javac.target>8</javac.target>
35+
<javac.target>1.8</javac.target>
3636
<uberjar.name>http-client-benchmarks</uberjar.name>
3737
<exec-maven-plugin.version>1.6.0</exec-maven-plugin.version>
3838
</properties>
@@ -114,14 +114,19 @@
114114
<plugin>
115115
<groupId>org.apache.maven.plugins</groupId>
116116
<artifactId>maven-compiler-plugin</artifactId>
117-
<version>3.11.0</version>
117+
<version>3.1</version>
118118
<!-- Override the configuration in the parent-->
119119
<configuration combine.self="override">
120120
<compilerVersion>${javac.target}</compilerVersion>
121121
<source>${javac.target}</source>
122-
<release>${javac.target}</release>
123122
<target>${javac.target}</target>
124123
</configuration>
124+
<executions>
125+
<execution>
126+
<id>compile</id>
127+
<phase>none</phase>
128+
</execution>
129+
</executions>
125130
<inherited>false</inherited>
126131
</plugin>
127132
<plugin>

0 commit comments

Comments
 (0)