-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathgroovy.json
More file actions
53 lines (53 loc) · 1.39 KB
/
groovy.json
File metadata and controls
53 lines (53 loc) · 1.39 KB
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
51
52
53
{
"Gradle (Groovy): Java library skeleton": {
"prefix": "gjava",
"body": [
"plugins {",
" id 'java-library'",
"}",
"",
"group = '${1:com.example}'",
"version = '${2:0.1.0}'",
"",
"repositories {",
" mavenCentral()",
"}",
"",
"dependencies {",
" testImplementation 'org.junit.jupiter:junit-jupiter:${3:5.10.2}'",
" testImplementation 'org.mockito:mockito-core:${4:5.12.0}'",
" testImplementation 'org.assertj:assertj-core:${5:3.26.3}'",
"}",
"",
"test {",
" useJUnitPlatform()",
"}",
""
],
"description": "Gradle Groovy Java project template with JUnit/Mockito/AssertJ."
},
"Gradle (Groovy): Spring Boot skeleton": {
"prefix": "gspring",
"body": [
"plugins {",
" id 'java'",
" id 'org.springframework.boot' version '${1:3.3.5}'",
" id 'io.spring.dependency-management' version '${2:1.1.6}'",
"}",
"",
"group = '${3:com.example}'",
"version = '${4:0.1.0}'",
"",
"repositories {",
" mavenCentral()",
"}",
"",
"dependencies {",
" implementation 'org.springframework.boot:spring-boot-starter-web'",
" testImplementation 'org.springframework.boot:spring-boot-starter-test'",
"}",
""
],
"description": "Gradle Groovy Spring Boot template."
}
}