File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 2
2
// SPDX-License-Identifier: Apache-2.0
3
3
4
4
// Most typical common config, but not quite global
5
- apply plugin : ' java-library'
6
- apply plugin : ' maven-publish'
5
+ apply( plugin : " java-library" )
6
+ apply( plugin : " maven-publish" )
7
7
8
8
java {
9
9
withSourcesJar()
10
10
withJavadocJar()
11
11
12
- sourceCompatibility( JavaVersion . VERSION_1_8 )
13
- targetCompatibility( JavaVersion . VERSION_1_8 )
12
+ sourceCompatibility = JavaVersion . VERSION_1_8
13
+ targetCompatibility = JavaVersion . VERSION_1_8
14
14
}
15
15
16
16
// Extra details provided for unit tests
28
28
}
29
29
30
30
// Arguments to include while running tests
31
- jvmArgs ' -Xms512m' , ' -Xmx1024m'
31
+ jvmArgs( " -Xms512m" , " -Xmx1024m" )
32
32
}
33
33
34
34
// In theory all Javadoc should be good and fixed, but it might be a bit much to entirely fail a build over. For now at least ...
@@ -45,7 +45,7 @@ publishing {
45
45
46
46
repositories {
47
47
maven {
48
- name = ' TerasologyOrg'
48
+ name = " TerasologyOrg"
49
49
50
50
if (rootProject. hasProperty(" publishRepo" )) {
51
51
// This first option is good for local testing, you can set a full explicit target repo in gradle.properties
You can’t perform that action at this time.
0 commit comments