Skip to content

Commit ec3914e

Browse files
Skip native compilation when testing bundled SDK (#185)
When testing against an `SDK` that already includes `OpenJCEPlus` there is no reason to compile the native libraries as they are already included in the runtime. We should skip the native compilation and make use of the library included in the `SDK`` itself. Signed-off-by: Jason Katonica <katonica@us.ibm.com>
1 parent bcef918 commit ec3914e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

pom.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,8 @@
196196
</activation>
197197
<properties>
198198
<test.compilation.export.target>ALL-UNNAMED</test.compilation.export.target>
199+
<skip.native.compile>true</skip.native.compile>
200+
<build.native.file>None_not_really_used_here</build.native.file>
199201
</properties>
200202
<build>
201203
<plugins>
@@ -309,6 +311,7 @@
309311
<goal>exec</goal>
310312
</goals>
311313
<configuration>
314+
<skip>${skip.native.compile}</skip>
312315
<environmentVariables>
313316
<PLATFORM>${build.platform.value}</PLATFORM>
314317
</environmentVariables>

0 commit comments

Comments
 (0)