diff --git a/examples/local_minecraft_fabric_loom_gradle/build.gradle b/examples/local_minecraft_fabric_loom_gradle/build.gradle index 0f7247b..464f88a 100644 --- a/examples/local_minecraft_fabric_loom_gradle/build.gradle +++ b/examples/local_minecraft_fabric_loom_gradle/build.gradle @@ -2,7 +2,7 @@ buildscript { dependencies { - classpath files { file('../../build/libs').listFiles()} + classpath files { file('../../build/libs').listFiles()} classpath group: 'org.apache.httpcomponents', name: 'httpmime', version: '4.5.2' classpath group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.2' classpath group: 'com.google.code.gson', name: 'gson', version: '2.6.2' diff --git a/examples/local_minecraft_forge_gradle/build.gradle b/examples/local_minecraft_forge_gradle/build.gradle index 98519dc..693c21c 100644 --- a/examples/local_minecraft_forge_gradle/build.gradle +++ b/examples/local_minecraft_forge_gradle/build.gradle @@ -11,7 +11,7 @@ buildscript { dependencies { classpath group: 'net.minecraftforge.gradle', name: 'ForgeGradle', version: '3.+', changing: true - classpath files { file('../../build/libs').listFiles()} + classpath files { file('../../build/libs').listFiles()} classpath group: 'org.apache.httpcomponents', name: 'httpmime', version: '4.5.2' classpath group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.2' classpath group: 'com.google.code.gson', name: 'gson', version: '2.6.2' @@ -110,7 +110,7 @@ task publishDiluv (type: TaskDiluvUpload) { projectId = findProperty('diluv_project'); // Tells DiluvGradle what file to upload. This can be a Java file, a path to a file, or - // certain tasks which produce files such as any AbstractArchiveTask. + // certain tasks which produce files such as any AbstractArchiveTask. uploadFile = jar; // ====================== @@ -140,8 +140,8 @@ task publishDiluv (type: TaskDiluvUpload) { // Defines the type of release this file is. This is 'alpha' by default. // Accepts 'alpha', 'beta', and 'release'. // setReleaseType('beta'); - - // Changes the API URL that DiluvGradle uses to authenticate and upload the file to. This - // is primarily intended for debugging. + + // Changes the API URL that DiluvGradle uses to authenticate and upload the file to. This + // is primarily intended for debugging. apiURL = findProperty('diluv_api'); } \ No newline at end of file diff --git a/examples/local_upload_test/build.gradle b/examples/local_upload_test/build.gradle index 4446a97..f96b445 100644 --- a/examples/local_upload_test/build.gradle +++ b/examples/local_upload_test/build.gradle @@ -25,14 +25,14 @@ task testPlugin (type: TaskDiluvUpload){ apiURL = project.findProperty('diluv_api'); token = project.findProperty('diluv_token'); projectId = project.findProperty('diluv_project'); - + uploadFile = jar - - setChangelog('Hello, this is the changelog for the file.'); - - addGameVersion('1.12.2'); - addDependency(2); - addOptionalDependency(3); - addIncompatibility(4); - addLoader('forge'); + + setChangelog('Hello, this is the changelog for the file.'); + + addGameVersion('1.12.2'); + addDependency(2); + addOptionalDependency(3); + addIncompatibility(4); + addLoader('forge'); } \ No newline at end of file diff --git a/examples/minecraft_forge_gradle/build.gradle b/examples/minecraft_forge_gradle/build.gradle index da4a4a6..68a2e03 100644 --- a/examples/minecraft_forge_gradle/build.gradle +++ b/examples/minecraft_forge_gradle/build.gradle @@ -105,7 +105,7 @@ task publishDiluv (type: TaskDiluvUpload) { projectId = findProperty('diluv_project'); // Tells DiluvGradle what file to upload. This can be a Java file, a path to a file, or - // certain tasks which produce files such as any AbstractArchiveTask. + // certain tasks which produce files such as any AbstractArchiveTask. uploadFile = jar; // ====================== @@ -135,8 +135,8 @@ task publishDiluv (type: TaskDiluvUpload) { // Defines the type of release this file is. This is 'alpha' by default. // Accepts 'alpha', 'beta', and 'release'. // setReleaseType('beta'); - - // Changes the API URL that DiluvGradle uses to authenticate and upload the file to. This - // is primarily intended for debugging. + + // Changes the API URL that DiluvGradle uses to authenticate and upload the file to. This + // is primarily intended for debugging. // apiURL = findProperty('diluv_api'); } \ No newline at end of file