Format .kts files

master
Graham 4 years ago
parent 3f2335859d
commit 54aec42f90
  1. 6
      all/build.gradle.kts
  2. 6
      asm/build.gradle.kts
  3. 6
      bundler/build.gradle.kts
  4. 6
      common/build.gradle.kts
  5. 6
      decompiler/build.gradle.kts
  6. 6
      deob-annotations/build.gradle.kts
  7. 6
      deob-ast/build.gradle.kts
  8. 6
      deob/build.gradle.kts
  9. 6
      game/build.gradle.kts
  10. 6
      jsobject/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()
)
}
}
}

@ -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()
)
}
}
}

@ -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()
)
}
}
}

@ -18,9 +18,11 @@ publishing {
pom {
packaging = "jar"
name.set("OpenRS2 Common")
description.set("""
description.set(
"""
Common code used by all modules.
""".trimIndent())
""".trimIndent()
)
}
}
}

@ -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()
)
}
}
}

@ -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()
)
}
}
}

@ -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()
)
}
}
}

@ -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()
)
}
}
}

@ -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()
)
}
}
}

@ -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()
)
}
}
}

Loading…
Cancel
Save