Skip to content
This repository was archived by the owner on May 22, 2024. It is now read-only.

Commit a2af760

Browse files
authored
Merge pull request #9 from graalvm/jdk-exec
Removed the JDK8 "nograal" execution.
2 parents f76dd98 + 5396e5c commit a2af760

File tree

2 files changed

+1
-15
lines changed

2 files changed

+1
-15
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ script:
2424
- mvn clean
2525
- mvn package
2626
- mvn exec:exec
27-
- mvn exec:exec@nograal
27+
- if [[ "$TRAVIS_JDK_VERSION" == "openjdk11" ]]; then mvn exec:exec@nograal; fi
2828
- export JAVA_HOME="$(pwd)/graalvm-ce-$GRAALVM_VERSION" && if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then export JAVA_HOME="$JAVA_HOME/Contents/Home"; fi
2929
- mvn clean
3030
- mvn package

pom.xml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -209,20 +209,6 @@
209209
</arguments>
210210
</configuration>
211211
</execution>
212-
<execution>
213-
<id>nograal</id>
214-
<goals>
215-
<goal>exec</goal>
216-
</goals>
217-
<configuration>
218-
<arguments>
219-
<argument>-classpath</argument>
220-
<!-- automatically creates the classpath using all project dependencies, also adding the project build directory -->
221-
<classpath/>
222-
<argument>com.mycompany.app.App</argument>
223-
</arguments>
224-
</configuration>
225-
</execution>
226212
</executions>
227213
<configuration>
228214
<executable>${JAVA_HOME}/bin/java</executable>

0 commit comments

Comments
 (0)