-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
49 lines (41 loc) · 1.16 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
/*
* Copyright (c) 2020-2021. CodeHead Systems. All rights reserved
* Ned Wolpert <[email protected]>
*/
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
maven { url 'https://s01.oss.sonatype.org' }
gradlePluginPortal()
mavenLocal()
google()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
maven { url 'https://s01.oss.sonatype.org/content/repositories/snapshots/' }
}
dependencies {
}
}
allprojects {
group 'com.codeheadsystems'
version '1.0.0-SNAPSHOT'
apply plugin: "java-library"
apply plugin: "idea"
apply plugin: 'jacoco'
apply plugin: 'signing'
apply plugin: 'maven-publish'
java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
withJavadocJar()
withSourcesJar()
}
test {
useJUnitPlatform() // needed for junit5
}
ext {
codeheadTestVersion = '1.0.10'
gamelibVersion = '1.0.6'
gdxVersion = '1.12.1'
}
}