Skip to content
This repository has been archived by the owner on May 4, 2020. It is now read-only.

Latest commit

 

History

History
25 lines (20 loc) · 944 Bytes

README.md

File metadata and controls

25 lines (20 loc) · 944 Bytes

gradle-java-modules

A place for experimenting with Java 9's module system.

Gradle doesn't currently support building Java 9 modules in a first-class way. For now, this repository acts as a place for us to develop a shared knowledge of what we need to do to bring that first-class support to a reality in the future.

The Experimental Jigsaw Plugin

Please feel free to use the org.gradle.java.experimental-jigsaw Plugin developed in this repository, but understand that it is not very sophisticated or particularly well-tested at this point in its development.

If you already have a working Java project, applying the plugin is just two steps:

  1. Apply the plugin:
    plugins {
      id 'org.gradle.java.experimental-jigsaw' version '0.1.1'
    }
  2. Set the module name:
    javaModule.name = '<your-module-name>'