-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
50 lines (42 loc) · 1.04 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
plugins {
id 'com.gradle.plugin-publish' version '0.21.0'
id 'maven-publish'
id 'groovy'
id 'java-library'
}
group 'com.github.mrsarm'
version '1.2.1'
sourceCompatibility = 9
targetCompatibility = 9
repositories {
mavenCentral()
}
dependencies {
implementation gradleApi()
implementation localGroovy()
}
tasks.withType(GroovyCompile) {
options.fork = false
groovyOptions.fork = false
}
pluginBundle {
website = 'https://github.com/mrsarm/jshell-plugin'
vcsUrl = 'https://github.com/mrsarm/jshell-plugin'
description = "JShell supports to explore your code and dependencies in your gradle project with in jshell, " +
"the official Java REPL tool (Java 9+)"
tags = ['java9', 'jshell', 'repl']
plugins {
jshellPlugin {
id = 'com.github.mrsarm.jshell.plugin'
displayName = 'JShell Plugin'
}
}
}
publishing {
publications {
maven(MavenPublication) {
artifactId = 'jshell-plugin'
artifact jar
}
}
}