Skip to content

Commit 9751a8e

Browse files
committed
Merge branch 'develop' into kotlin
2 parents 45648c6 + 81bdd0d commit 9751a8e

File tree

13 files changed

+97
-98
lines changed

13 files changed

+97
-98
lines changed

.gitignore

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# gestalt specific files to be excluded
2+
/gestalt-di/test-modules/
3+
# used to test if a module.jar is loaded correctly, so part of repo
4+
# despite it is recreated.
5+
/gestalt-es-perf/test-modules/moduleF.jar
6+
/gestalt-module/test-modules/*
7+
18
# Ignore general
29
/.*
310
!.gitignore
@@ -12,7 +19,6 @@
1219
#*.jar
1320
*.war
1421
*.ear
15-
/gestalt-module/test-modules/*
1622

1723
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
1824
hs_err_pid*
@@ -45,4 +51,3 @@ Icon
4551
ehthumbs.db
4652
Thumbs.db
4753

48-
gestalt-di/test-modules/

gestalt-asset-core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2021 The Terasology Foundation
22
// SPDX-License-Identifier: Apache-2.0
3-
apply from: "$rootDir/gradle/common.gradle"
3+
apply(from: "$rootDir/gradle/common.gradle.kts")
44

55
// Primary dependencies definition
66
dependencies {

gestalt-di/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2021 The Terasology Foundation
22
// SPDX-License-Identifier: Apache-2.0
3-
apply from: "$rootDir/gradle/common.gradle"
3+
apply(from: "$rootDir/gradle/common.gradle.kts")
44

55
task gatherJarModules(dependsOn: [':testpack:moduleA:jar', ':testpack:moduleB:jar', ':testpack:moduleC:jar', ':testpack:moduleD:jar'], type: Copy)
66

gestalt-entity-system/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2021 The Terasology Foundation
22
// SPDX-License-Identifier: Apache-2.0
3-
apply from: "$rootDir/gradle/common.gradle"
3+
apply(from: "$rootDir/gradle/common.gradle.kts")
44

55
// Primary dependencies definition
66
dependencies {

gestalt-es-perf/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2021 The Terasology Foundation
22
// SPDX-License-Identifier: Apache-2.0
3-
apply from: "$rootDir/gradle/common.gradle"
3+
apply(from: "$rootDir/gradle/common.gradle.kts")
44

55
// Primary dependencies definition
66
dependencies {
-1.69 KB
Binary file not shown.

gestalt-inject-java/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2021 The Terasology Foundation
22
// SPDX-License-Identifier: Apache-2.0
3-
apply from: "$rootDir/gradle/common.gradle"
3+
apply(from: "$rootDir/gradle/common.gradle.kts")
44

55
// Primary dependencies definition
66
dependencies {

gestalt-inject/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2021 The Terasology Foundation
22
// SPDX-License-Identifier: Apache-2.0
3-
apply from: "$rootDir/gradle/common.gradle"
3+
apply(from: "$rootDir/gradle/common.gradle.kts")
44

55
// Primary dependencies definition
66
dependencies {

gestalt-module/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2021 The Terasology Foundation
22
// SPDX-License-Identifier: Apache-2.0
3-
apply from: "$rootDir/gradle/common.gradle"
3+
apply(from: "$rootDir/gradle/common.gradle.kts")
44

55
// Primary dependencies definition
66
dependencies {

gestalt-util/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2021 The Terasology Foundation
22
// SPDX-License-Identifier: Apache-2.0
3-
apply from: "$rootDir/gradle/common.gradle"
3+
apply(from: "$rootDir/gradle/common.gradle.kts")
44

55
// Primary dependencies definition
66
dependencies {

0 commit comments

Comments
 (0)