-
Notifications
You must be signed in to change notification settings - Fork 128
/
build.gradle
50 lines (43 loc) · 1.31 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
buildscript {
repositories {
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath "com.netflix.nebula:gradle-extra-configurations-plugin:3.0.3"
classpath "io.codearte.gradle.nexus:gradle-nexus-staging-plugin:0.22.0"
classpath "com.kotcrab.vis:vis-usl:0.2.1"
classpath "com.badlogicgames.gdx:gdx-tools:1.9.2"
classpath "com.github.ben-manes:gradle-versions-plugin:0.36.0"
}
}
apply plugin: "distribution"
apply plugin: "io.codearte.nexus-staging"
apply plugin: "com.github.ben-manes.versions"
allprojects {
apply plugin: "eclipse"
apply plugin: "idea"
apply plugin: "java"
ext {
appName = 'vis'
gdxVersion = '1.12.1'
jnaVersion = '4.1.0'
jnaPlatformVersion = '3.5.2'
junitVersion = '4.13.2'
imgscalrVersion = '4.2'
}
repositories {
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://oss.sonatype.org/content/repositories/releases/" }
}
}
nexusStaging {
packageGroup = "com.kotcrab"
username = ossrhUsername
password = ossrhPassword
}
tasks.eclipse.doLast {
delete ".project"
}