You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
589 B
37 lines
589 B
/* |
|
* This file was generated by the Gradle 'init' task. |
|
*/ |
|
|
|
plugins { |
|
id 'java' |
|
id 'application' |
|
} |
|
|
|
repositories { |
|
mavenLocal() |
|
maven { |
|
url = uri('https://repo.maven.apache.org/maven2/') |
|
} |
|
} |
|
|
|
dependencies { |
|
implementation 'org.jetbrains:annotations:16.0.1' |
|
} |
|
|
|
group = 'st.kalli.ircd' |
|
version = '1.0-SNAPSHOT' |
|
description = 'ircd' |
|
java.sourceCompatibility = JavaVersion.VERSION_1_8 |
|
|
|
jar { |
|
manifest { |
|
attributes( |
|
'Main-Class': 'st.kalli.ircd.Server' |
|
) |
|
} |
|
} |
|
|
|
application { |
|
mainClassName = 'st.kalli.ircd.Server' |
|
} |
|
|
|
|