Skip to content

Commit 3208d60

Browse files
committed
Init project
0 parents  commit 3208d60

File tree

3 files changed

+31
-0
lines changed

3 files changed

+31
-0
lines changed

.gitignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.idea/
2+
**/build/**
3+
.gradle/
4+
**/gradle/**
5+
gradlew
6+
gradlew.bat
7+
!gradle/wrapper/gradle-wrapper.properties
8+
!**/src/main/**/build/
9+
!**/src/test/**/build/

build.gradle

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
plugins {
2+
id 'java-library'
3+
}
4+
5+
group = 'dev.alexengrig.sample'
6+
version = '0-SAMPLE'
7+
8+
java {
9+
sourceCompatibility = '17'
10+
}
11+
12+
compileJava.options.encoding = 'UTF-8'
13+
compileTestJava.options.encoding = 'UTF-8'
14+
15+
repositories {
16+
mavenCentral()
17+
}
18+
19+
test {
20+
useJUnitPlatform()
21+
}

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rootProject.name = 'mapstruct-spring'

0 commit comments

Comments
 (0)