Drop parameter annotations since we do not need them.
[SquirrelJME.git] / emulators / build.gradle
blobb3613bef700546a36bdf401b4fe9da9f30ed76bb
1 import org.gradle.plugins.ide.idea.model.IdeaLanguageLevel
3 group = "cc.squirreljme.squirreljme.emulators"
4 description = "This module contains all of the emulators available for " +
5         "running SquirrelJME. These run on top of Java SE itself."
7 subprojects
9         apply plugin: "idea"
10         
11         idea {
12                 module
13                 {
14                         // The emulators run on Java 8 because this is for the host VM
15                         // which can take advantage of this.
16                         jdkName = "1.8"
17                         languageLevel = new IdeaLanguageLevel("1.8")
18                         targetBytecodeVersion = JavaVersion.VERSION_1_8
19                 }
20         }