Search Gradle plugins

Version 1.0 (latest)

Created 17 September 2020.

The plugin generates Eclipse/QtCreator/NetBeans/KDevelop project files for C++ applications and libraries.

Using the plugins DSL:

plugins {
  id("loggersoft.cpp-ide-generator") version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.loggersoft:cpp-ide-generator:1.0")
  }
}

apply(plugin = "loggersoft.cpp-ide-generator")

Using the plugins DSL:

plugins {
  id "loggersoft.cpp-ide-generator" version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.loggersoft:cpp-ide-generator:1.0"
  }
}

apply plugin: "loggersoft.cpp-ide-generator"

Learn how to apply plugins to subprojects