-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
27 lines (21 loc) · 893 Bytes
/
build.gradle
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
/*
* This build file was auto generated by running the Gradle 'init' task
* by 'patriknygren' at '2016-11-27 14:45' with Gradle 2.13
*
* This generated file contains a sample Java project to get you started.
* For more details take a look at the Java Quickstart chapter in the Gradle
* user guide available at https://docs.gradle.org/2.13/userguide/tutorial_java_projects.html
*/
// Apply the java plugin to add support for Java
apply plugin: 'java'
apply plugin: 'application'
repositories {
mavenCentral()
}
// In this section you declare the dependencies for your production and test code
dependencies {
compile group: 'com.esotericsoftware', name: 'kryonet', version: '2.22.0-RC1'
testCompile group: 'junit', name: 'junit', version: '4.12'
testCompile group: 'org.mockito', name: 'mockito-core', version: '2.2.24'
}
mainClassName = "com.multipong.server.Main"