Skip to content

Commit

Permalink
Merge pull request #5759 from rjhancock/entity-verifier
Browse files Browse the repository at this point in the history
Added Entity Verifier to gradle build
  • Loading branch information
HammerGS authored Jul 21, 2024
2 parents 8bd3a45 + aa26b46 commit 90bb98b
Show file tree
Hide file tree
Showing 2 changed files with 176 additions and 96 deletions.
7 changes: 7 additions & 0 deletions megamek/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,13 @@ task filteredUnitListTool(type: JavaExec, dependsOn: jar) {
mainClass = 'megamek.utilities.FilteredUnitListTool'
}

task entityVerifier(type: JavaExec, dependsOn: jar) {
description = 'Entity Verifier'
group = 'utility'
classpath = sourceSets.main.runtimeClasspath
mainClass = 'megamek.common.verifier.EntityVerifier'
}

task iconTest(type: JavaExec, dependsOn: jar) {
description = 'Icon Tool'
group = 'utility'
Expand Down
Loading

0 comments on commit 90bb98b

Please sign in to comment.