blob: 215c4be0f0e04e3d6cd26fddaf8dbbc7c4ac443a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Kotlin application project to get you started.
* For more details take a look at the 'Building Java & JVM projects' chapter in the Gradle
* User Manual available at https://docs.gradle.org/8.0.2/userguide/building_java_projects.html
*/
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'io.github.fvarrui:javapackager:1.7.2'
}
}
plugins {
// Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin.
id 'org.jetbrains.kotlin.jvm' version '1.8.0'
// Apply the application plugin to add support for building a CLI application in Java.
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.13'
id 'distribution'
}
apply plugin: 'io.github.fvarrui.javapackager.plugin'
repositories {
// Use Maven Central for resolving dependencies.
mavenCentral()
}
dependencies {
// Use the Kotlin JUnit 5 integration.
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit5'
// Use the JUnit 5 integration.
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.9.1'
// This dependency is used by the application.
implementation 'com.google.guava:guava:31.1-jre'
// Coroutines core
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.0"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-javafx:1.7.0"
// Archiver
implementation "org.rauschig:jarchivelib:1.2.0"
}
application {
// Define the main class for the application.
mainClass = 'xyz.brysonsteck.servercraft.MainKt'
applicationName = "ServerCraft"
}
distTar {
compression = Compression.GZIP
}
jar {
archiveFileName = 'ServerCraft.jar'
manifest {
attributes 'Main-Class': application.mainClass
}
duplicatesStrategy = DuplicatesStrategy.INCLUDE
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
}
task pack(type: io.github.fvarrui.javapackager.gradle.PackageTask, dependsOn: build) {
mainClass = 'xyz.brysonsteck.servercraft.MainKt'
bundleJre = true
generateInstaller = true
administratorRequired = false
linuxConfig {
pngFile = file('app/src/main/resources/icon.png')
}
macConfig {
icnsFile = file('app/src/main/resources/icon.icns')
volumeIcon = file('app/src/main/resources/icon.icns')
backgroundImage = file('app/src/main/resources/dmg.png')
developerId = 'Bryson Steck'
appId = 'xyz.brysonsteck.ServerCraft'
}
winConfig {
icoFile = file('app/src/main/resources/icon.ico')
setupMode = 'askTheUser'
disableDirPage = false
disableFinishedPage = false
disableWelcomePage = false
}
}
tasks.named('test') {
// Use JUnit Platform for unit tests.
useJUnitPlatform()
}
javafx {
version = "20"
modules = ['javafx.controls', 'javafx.fxml', 'javafx.graphics']
}
|