We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b42b3d4 commit f6c694dCopy full SHA for f6c694d
.github/workflows/exercise_1.yml
@@ -31,6 +31,9 @@ jobs:
31
distribution: 'temurin'
32
cache: maven
33
34
- - name: Run and build
+ - name: Compile Project
35
+ run: mvn compile
36
+
37
+ - name: Run Project
38
run: sh scripts/build_n_run.sh exercise1
39
shell: bash
scripts/build_n_run.sh
@@ -1,4 +1,4 @@
1
#! /usr/bin/bash
2
rm -r target | echo "No target directory found"
3
-mvn compile
+# mvn compile
4
mvn exec:java -Dexec.mainClass=Main -Dexec.args="$1"
0 commit comments