Search Gradle plugins

com.diffplug.swt.nativedeps

Adds the platform-specific SWT jars to the runtime classpath so that SWT code can run.

https://github.com/diffplug/goomph

Sources: https://github.com/diffplug/goomph.git

Version 4.0.1 (latest)

4.0.1

Created 04 July 2024.

Adds the platform-specific SWT jars to the runtime classpath so that SWT code can run.

Using the plugins DSL:

plugins {
  id("com.diffplug.swt.nativedeps") version "4.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.diffplug.gradle:goomph:4.0.1")
  }
}

apply(plugin = "com.diffplug.swt.nativedeps")

Using the plugins DSL:

plugins {
  id "com.diffplug.swt.nativedeps" version "4.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.diffplug.gradle:goomph:4.0.1"
  }
}

apply plugin: "com.diffplug.swt.nativedeps"

Learn how to apply plugins to subprojects