Search Gradle plugins

com.jaqxues.pack-compiler

Compiles .jar Files to load it dynamically from another program/app.

https://github.com/jaqxues/PackCompiler

Sources: https://github.com/jaqxues/PackCompiler

Version 0.0.7.0 (latest)

Created 23 March 2022.

Compiles .jar Files to load it dynamically from another program/app.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.jaqxues.pack-compiler") version "0.0.7.0"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.jaqxues.pack-compiler:com.jaqxues.pack-compiler.gradle.plugin:0.0.7.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.jaqxues.pack-compiler")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.jaqxues.pack-compiler:com.jaqxues.pack-compiler.gradle.plugin:0.0.7.0")
      }
    }
    
    apply(plugin = "com.jaqxues.pack-compiler")
  • Applying plugins to all subprojects .