Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
r0r-5chach committed Jan 10, 2022
1 parent 67766e8 commit 17c0938
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .idea/artifacts/efronsDice_jar.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions META-INF/MANIFEST.MF
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Manifest-Version: 1.0
Main-Class: com.mawkish.efronsDice.Program

9 changes: 9 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,13 @@ dependencies {

test {
useJUnitPlatform()
}

jar {
manifest {
attributes "Main-Class": "com.mawkish.efronsDice.Program"
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
package com.mawkish.efronsDice;

import matches.Umpire;

import java.util.InputMismatchException;
Expand Down

0 comments on commit 17c0938

Please sign in to comment.