diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index 869b091..9ad367c 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -34,12 +34,12 @@ jobs: - name: Run Tests run: mvn clean test - name: Upload Test Results - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: surefire-reports path: target/surefire-reports/ - name: Upload Coverage Report - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: jacoco-report path: target/jacoco/coverage-reports/jacoco.xml @@ -57,7 +57,7 @@ jobs: - name: Build Package run: mvn clean package - name: Upload Package - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v3 with: name: packaged-app path: target/Help-Me-Help-1.0-SNAPSHOT-jar-with-dependencies.jar diff --git a/target/Help-Me-Help-1.0-SNAPSHOT.jar b/target/Help-Me-Help-1.0-SNAPSHOT.jar new file mode 100644 index 0000000..566599b Binary files /dev/null and b/target/Help-Me-Help-1.0-SNAPSHOT.jar differ diff --git a/target/classes/edu/group5/app/App.class b/target/classes/edu/group5/app/App.class new file mode 100644 index 0000000..c24ab27 Binary files /dev/null and b/target/classes/edu/group5/app/App.class differ diff --git a/target/maven-archiver/pom.properties b/target/maven-archiver/pom.properties new file mode 100644 index 0000000..4eb27f1 --- /dev/null +++ b/target/maven-archiver/pom.properties @@ -0,0 +1,3 @@ +artifactId=Help-Me-Help +groupId=edu.group5.app +version=1.0-SNAPSHOT diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst new file mode 100644 index 0000000..28e9804 --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst @@ -0,0 +1 @@ +edu\group5\app\App.class diff --git a/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst new file mode 100644 index 0000000..16a5464 --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/compile/default-compile/inputFiles.lst @@ -0,0 +1 @@ +C:\Users\marjo\Documents\Github\Help-Me-Help\src\main\java\edu\group5\app\App.java diff --git a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst new file mode 100644 index 0000000..044dac8 --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/createdFiles.lst @@ -0,0 +1 @@ +edu\group5\app\AppTest.class diff --git a/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst new file mode 100644 index 0000000..63aa853 --- /dev/null +++ b/target/maven-status/maven-compiler-plugin/testCompile/default-testCompile/inputFiles.lst @@ -0,0 +1 @@ +C:\Users\marjo\Documents\Github\Help-Me-Help\src\test\java\edu\group5\app\AppTest.java diff --git a/target/surefire-reports/TEST-edu.group5.app.AppTest.xml b/target/surefire-reports/TEST-edu.group5.app.AppTest.xml new file mode 100644 index 0000000..05989b0 --- /dev/null +++ b/target/surefire-reports/TEST-edu.group5.app.AppTest.xml @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/target/surefire-reports/edu.group5.app.AppTest.txt b/target/surefire-reports/edu.group5.app.AppTest.txt new file mode 100644 index 0000000..92fe711 --- /dev/null +++ b/target/surefire-reports/edu.group5.app.AppTest.txt @@ -0,0 +1,4 @@ +------------------------------------------------------------------------------- +Test set: edu.group5.app.AppTest +------------------------------------------------------------------------------- +Tests run: 1, Failures: 0, Errors: 0, Skipped: 0, Time elapsed: 0.047 s -- in edu.group5.app.AppTest diff --git a/target/test-classes/edu/group5/app/AppTest.class b/target/test-classes/edu/group5/app/AppTest.class new file mode 100644 index 0000000..7f3006a Binary files /dev/null and b/target/test-classes/edu/group5/app/AppTest.class differ