forked from Enaium/LaunchWrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
40 lines (34 loc) · 734 Bytes
/
build.gradle
File metadata and controls
40 lines (34 loc) · 734 Bytes
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
/*
* This file was generated by the Gradle 'init' task.
*/
plugins {
id 'java'
id 'java-library'
id 'maven-publish'
}
repositories {
mavenLocal()
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
}
dependencies {
implementation "com.formdev:flatlaf:3.4.1"
api libs.net.sf.jopt.simple.jopt.simple
api libs.org.apache.logging.log4j.log4j.core
api libs.org.apache.logging.log4j.log4j.api
}
group = 'sh.talonfloof'
version = '1.0.0-SNAPSHOT'
description = 'launchwrapper'
java.sourceCompatibility = JavaVersion.VERSION_1_8
java {
withSourcesJar()
}
publishing {
publications {
maven(MavenPublication) {
from(components.java)
}
}
}