diff options
| author | 2022-09-14 13:12:55 +0100 | |
|---|---|---|
| committer | 2022-09-14 13:12:55 +0100 | |
| commit | 9c736848fb7aa82d295b3aa2946e6cd132ee998f (patch) | |
| tree | b982613cfa7201b2db25cb64a5950f9a2c34a5b3 /enigma-swing/build.gradle | |
| parent | Nested packages in Swing UI (#458) (diff) | |
| download | enigma-9c736848fb7aa82d295b3aa2946e6cd132ee998f.tar.gz enigma-9c736848fb7aa82d295b3aa2946e6cd132ee998f.tar.xz enigma-9c736848fb7aa82d295b3aa2946e6cd132ee998f.zip | |
Add checkstyle (#460)
Diffstat (limited to 'enigma-swing/build.gradle')
| -rw-r--r-- | enigma-swing/build.gradle | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/enigma-swing/build.gradle b/enigma-swing/build.gradle index d783e950..a4a13d88 100644 --- a/enigma-swing/build.gradle +++ b/enigma-swing/build.gradle | |||
| @@ -1,18 +1,18 @@ | |||
| 1 | plugins { | 1 | plugins { |
| 2 | id 'application' | 2 | id 'application' |
| 3 | id 'com.github.johnrengelman.shadow' version '7.0.0' | 3 | id 'com.github.johnrengelman.shadow' version '7.0.0' |
| 4 | } | 4 | } |
| 5 | 5 | ||
| 6 | dependencies { | 6 | dependencies { |
| 7 | implementation project(':enigma') | 7 | implementation project(':enigma') |
| 8 | implementation project(':enigma-server') | 8 | implementation project(':enigma-server') |
| 9 | 9 | ||
| 10 | implementation 'net.sf.jopt-simple:jopt-simple:6.0-alpha-3' | 10 | implementation 'net.sf.jopt-simple:jopt-simple:6.0-alpha-3' |
| 11 | implementation 'com.formdev:flatlaf:1.6.1' | 11 | implementation 'com.formdev:flatlaf:1.6.1' |
| 12 | implementation 'com.formdev:flatlaf-extras:1.6.1' // for SVG icons | 12 | implementation 'com.formdev:flatlaf-extras:1.6.1' // for SVG icons |
| 13 | implementation 'de.sciss:syntaxpane:1.2.0' | 13 | implementation 'de.sciss:syntaxpane:1.2.0' |
| 14 | implementation 'com.github.lukeu:swing-dpi:0.9' | 14 | implementation 'com.github.lukeu:swing-dpi:0.9' |
| 15 | implementation 'org.drjekyll:fontchooser:2.5.2' | 15 | implementation 'org.drjekyll:fontchooser:2.5.2' |
| 16 | } | 16 | } |
| 17 | 17 | ||
| 18 | mainClassName = 'cuchaz.enigma.gui.Main' | 18 | mainClassName = 'cuchaz.enigma.gui.Main' |
| @@ -20,9 +20,9 @@ mainClassName = 'cuchaz.enigma.gui.Main' | |||
| 20 | jar.manifest.attributes 'Main-Class': mainClassName | 20 | jar.manifest.attributes 'Main-Class': mainClassName |
| 21 | 21 | ||
| 22 | publishing { | 22 | publishing { |
| 23 | publications { | 23 | publications { |
| 24 | shadow(MavenPublication) { publication -> | 24 | shadow(MavenPublication) { publication -> |
| 25 | publication.from components.java | 25 | publication.from components.java |
| 26 | } | 26 | } |
| 27 | } | 27 | } |
| 28 | } | 28 | } |