Search Gradle plugins

ir.mahozad.vlc-setup

Prepares and builds VLC for Compose Multiplatform desktop applications (.dll/.so/.dylib plugin files for Windows, Linux, macOS respectively) to be able to implement a self-contained media player with vlcj library without requiring VLC to have been installed on the system.

https://github.com/mahozad/vlc-setup

Sources: https://github.com/mahozad/vlc-setup

Version 0.1.0 (latest)

Created 03 June 2025.

Prepares and builds VLC for Compose Multiplatform desktop applications (.dll/.so/.dylib plugin files for Windows, Linux, macOS respectively) to be able to implement a self-contained media player with vlcj library without requiring VLC to have been installed on the system.

Add this plugin to your build using the plugins DSL:

plugins {
  id("ir.mahozad.vlc-setup") version "0.1.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("ir.mahozad.vlc-setup:ir.mahozad.vlc-setup.gradle.plugin:0.1.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("ir.mahozad.vlc-setup")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ir.mahozad.vlc-setup:ir.mahozad.vlc-setup.gradle.plugin:0.1.0")
      }
    }
    
    apply(plugin = "ir.mahozad.vlc-setup")
  • Applying plugins to all subprojects .