-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy pathbuild.gradle
52 lines (45 loc) · 1.18 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
51
52
buildscript {
repositories {
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath "com.kotcrab.vis:vis-usl:0.2.1"
classpath "com.badlogicgames.gdx:gdx-tools:1.9.2"
}
}
plugins {
id("io.github.gradle-nexus.publish-plugin") version "2.0.0"
id("com.github.ben-manes.versions") version "0.52.0"
}
allprojects {
apply plugin: "eclipse"
apply plugin: "idea"
apply plugin: "java"
ext {
appName = 'vis'
gdxVersion = '1.13.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/" }
}
}
nexusPublishing {
packageGroup = "com.kotcrab"
repositories {
sonatype {
username = ossrhUsername
password = ossrhPassword
}
}
}
tasks.eclipse.doLast {
delete ".project"
}