coders-kitchen / CompileOnlyPlugin

Adds a compileOnly configuration to a Java based gradle build.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CompileOnlyPlugin

Adds a compileOnly configuration to a Java based Gradle build.

The plugin will also take care of registering the compilyOnly dependencies to the matching scopes of IntelliJ Idea and Eclipse

Usage

Add the following lines to your Gradle build script:

buildscript {
  repositories {
    mavenCentral()
  }
  dependencies {
    classpath 'com.coders-kitchen:compileonlyplugin:1.0.0'
  }
}

apply plugin: 'compileOnly'

dependencies {
  compileOnly <dependencies>
}

or if using Gradle 2.1 or higher:

plugins {
  id 'com.coders-kitchen.compileonlyplugin' version '1.0.0'
}

dependencies {
  compileOnly <dependencies>
}

About

Adds a compileOnly configuration to a Java based gradle build.

License:MIT License


Languages

Language:Groovy 100.0%