-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #113 from truthencode/feature/antlr
TODO -> Issue Scala library inclusion
- Loading branch information
Showing
26 changed files
with
249 additions
and
187 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
name: Run Gradle on PRs | ||
permissions: read-all | ||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
branches: [master] | ||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
branches: [master] | ||
|
||
jobs: | ||
gradle: | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
- name: Run test and Coverage | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
gradle-version: wrapper | ||
arguments: reportScoverage aggregateAllTestReports -no-daemon | ||
gradle: | ||
strategy: | ||
matrix: | ||
os: [ubuntu-latest, macos-latest, windows-latest] | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: "temurin" | ||
java-version: "17" | ||
- name: Run test and Coverage | ||
uses: gradle/gradle-build-action@v2 | ||
with: | ||
gradle-version: wrapper | ||
arguments: reportScoverage aggregateAllTestReports -no-daemon |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
name: Create issues from todos | ||
permissions: read-all | ||
|
||
on: | ||
push: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
id: 2sgmr3sq | ||
title: Monster Manuals | ||
file_version: 1.1.3 | ||
app_version: 1.17.0 | ||
--- | ||
|
||
Basic Monster Type information will be located in the io.truthencode.ddo.model.compendium package. | ||
|
||
Ultimately, Entry, Type, Race and Sub-races should be applied. Although Monster Manual may not directly affect combat stats. | ||
|
||
<br/> | ||
|
||
| Monster Manual Entry | Type | Race | Sub-races | | ||
| -------------------- | ------------- | ----------- | --------- | | ||
| Elf | Elf | Elf | Drow Elf | | ||
| Purple Worm | Magical Beast | Purple Worm | <br/> | | ||
| <br/> | <br/> | <br/> | <br/> | | ||
|
||
<br/> | ||
|
||
This file was generated by Swimm. [Click here to view it in the app](https://app.swimm.io/repos/Z2l0aHViJTNBJTNBZGRvLWNhbGMlM0ElM0F0cnV0aGVuY29kZQ==/docs/2sgmr3sq). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
build-logic/src/main/kotlin/djaxonomy.java-coverage-conventions.gradle.kts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
plugins { | ||
jacoco | ||
} | ||
/* | ||
Java's (jacoco) and Kotlin at this time. | ||
Scala will utilize scoverage instead. | ||
(Scala's coverage is available in scala-conventions. | ||
NOTICE: You must still include a kotlin app / library etc. profile as we do not auto-include kotlin / java library conventions here. | ||
*/ | ||
|
||
jacoco { | ||
toolVersion = "0.8.10" | ||
// reportsDirectory.set(layout.buildDirectory.dir("customJacocoReportDir")) | ||
} | ||
|
||
tasks.withType(JacocoReport::class) { | ||
reports { | ||
xml.required.set(false) | ||
csv.required.set(false) | ||
// html.outputLocation.set(layout.buildDirectory.dir("jacocoHtml")) | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
build-logic/src/main/kotlin/djaxonomy.kotlin-coverage-conventions.gradle.kts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
plugins { | ||
id("djaxonomy.java-coverage-conventions") | ||
} | ||
|
||
/* | ||
There is no kotlin specific coverage tool at this time. | ||
We're just using Java's (jacoco) | ||
Scala will utilize scoverage instead. | ||
NOTICE: You must still include a kotlin app / library etc. profile as we do not auto-include kotlin / java library conventions here. | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.