From 54aec42f90b1c216b51fe24d1e90ca02f840f6a4 Mon Sep 17 00:00:00 2001 From: Graham Date: Sat, 15 Feb 2020 19:58:12 +0000 Subject: [PATCH] Format .kts files --- all/build.gradle.kts | 6 ++++-- asm/build.gradle.kts | 6 ++++-- bundler/build.gradle.kts | 6 ++++-- common/build.gradle.kts | 6 ++++-- decompiler/build.gradle.kts | 6 ++++-- deob-annotations/build.gradle.kts | 6 ++++-- deob-ast/build.gradle.kts | 6 ++++-- deob/build.gradle.kts | 6 ++++-- game/build.gradle.kts | 6 ++++-- jsobject/build.gradle.kts | 6 ++++-- 10 files changed, 40 insertions(+), 20 deletions(-) diff --git a/all/build.gradle.kts b/all/build.gradle.kts index 8dd6120870..0a0f214e2d 100644 --- a/all/build.gradle.kts +++ b/all/build.gradle.kts @@ -71,11 +71,13 @@ publishing { pom { packaging = "zip" name.set("OpenRS2") - description.set(""" + description.set( + """ OpenRS2 is an open-source multiplayer game server and suite of associated tools. It is compatible with build 550 of the RuneScape client, which was released in mid-2009. - """.trimIndent()) + """.trimIndent() + ) } } } diff --git a/asm/build.gradle.kts b/asm/build.gradle.kts index 1420a4940e..941182a0b8 100644 --- a/asm/build.gradle.kts +++ b/asm/build.gradle.kts @@ -18,10 +18,12 @@ publishing { pom { packaging = "jar" name.set("OpenRS2 ASM Utilities") - description.set(""" + description.set( + """ Common utility code used for manipulating Java bytecode with the ASM library. - """.trimIndent()) + """.trimIndent() + ) } } } diff --git a/bundler/build.gradle.kts b/bundler/build.gradle.kts index a3b09ffbaf..2c1fa08c67 100644 --- a/bundler/build.gradle.kts +++ b/bundler/build.gradle.kts @@ -21,10 +21,12 @@ publishing { pom { packaging = "jar" name.set("OpenRS2 Bundler") - description.set(""" + description.set( + """ A tool for patching the RuneScape client to allow it to connect to an OpenRS2 server and improve compatibility with modern JVMs. - """.trimIndent()) + """.trimIndent() + ) } } } diff --git a/common/build.gradle.kts b/common/build.gradle.kts index 67be0e7b2d..00df418c59 100644 --- a/common/build.gradle.kts +++ b/common/build.gradle.kts @@ -18,9 +18,11 @@ publishing { pom { packaging = "jar" name.set("OpenRS2 Common") - description.set(""" + description.set( + """ Common code used by all modules. - """.trimIndent()) + """.trimIndent() + ) } } } diff --git a/decompiler/build.gradle.kts b/decompiler/build.gradle.kts index 01477b808c..e06839985e 100644 --- a/decompiler/build.gradle.kts +++ b/decompiler/build.gradle.kts @@ -20,11 +20,13 @@ publishing { pom { packaging = "jar" name.set("OpenRS2 Decompiler") - description.set(""" + description.set( + """ A thin wrapper around OpenRS2's fork of Fernflower that sets the standard options required to decompile the RuneScape client and its dependencies. - """.trimIndent()) + """.trimIndent() + ) } } } diff --git a/deob-annotations/build.gradle.kts b/deob-annotations/build.gradle.kts index 2e5b400859..5a4a35969e 100644 --- a/deob-annotations/build.gradle.kts +++ b/deob-annotations/build.gradle.kts @@ -12,10 +12,12 @@ publishing { pom { packaging = "jar" name.set("OpenRS2 Deobfuscator Annotations") - description.set(""" + description.set( + """ Annotations inserted by the deobfuscator to track the original names and descriptors of classes, methods and fields. - """.trimIndent()) + """.trimIndent() + ) } } } diff --git a/deob-ast/build.gradle.kts b/deob-ast/build.gradle.kts index 9ead2df864..94bec20a2a 100644 --- a/deob-ast/build.gradle.kts +++ b/deob-ast/build.gradle.kts @@ -20,10 +20,12 @@ publishing { pom { packaging = "jar" name.set("OpenRS2 AST Deobfuscator") - description.set(""" + description.set( + """ A tool for performing AST-level deobfuscation of the RuneScape client. It may be run after decompiling the client. - """.trimIndent()) + """.trimIndent() + ) } } } diff --git a/deob/build.gradle.kts b/deob/build.gradle.kts index fd6df4b941..4e61440328 100644 --- a/deob/build.gradle.kts +++ b/deob/build.gradle.kts @@ -21,12 +21,14 @@ publishing { pom { packaging = "jar" name.set("OpenRS2 Bytecode Deobfuscator") - description.set(""" + description.set( + """ A tool for performing bytecode-level deobfuscation of the RuneScape client. It must be run before decompiling the client - some of the transformations it performs are required for the decompiler to produce valid output. - """.trimIndent()) + """.trimIndent() + ) } } } diff --git a/game/build.gradle.kts b/game/build.gradle.kts index a149facc2c..720637341d 100644 --- a/game/build.gradle.kts +++ b/game/build.gradle.kts @@ -19,9 +19,11 @@ publishing { pom { packaging = "jar" name.set("OpenRS2 Game Server") - description.set(""" + description.set( + """ Reimplementation of the RuneScape game server software. - """.trimIndent()) + """.trimIndent() + ) } } } diff --git a/jsobject/build.gradle.kts b/jsobject/build.gradle.kts index c5d654ffe9..c32b783b42 100644 --- a/jsobject/build.gradle.kts +++ b/jsobject/build.gradle.kts @@ -12,9 +12,11 @@ publishing { pom { packaging = "jar" name.set("OpenRS2 JavaScript Object") - description.set(""" + description.set( + """ Stubs for the netscape.javascript package. - """.trimIndent()) + """.trimIndent() + ) } } }