Skip to content

Commit 9027b8f

Browse files
Initial commit
0 parents  commit 9027b8f

21 files changed

+264
-0
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.gitignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.gradle
2+
/build/
3+
4+
# Ignore Gradle GUI config
5+
gradle-app.setting
6+
7+
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
8+
!gradle-wrapper.jar
9+
10+
# Cache of project
11+
.gradletasknamecache
12+
13+
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
14+
# gradle/wrapper/gradle-wrapper.properties

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# code-sharing-platform
2+

build.gradle

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
plugins {
2+
id 'org.springframework.boot' version '2.3.3.RELEASE'
3+
id 'java'
4+
}
5+
6+
apply plugin: 'io.spring.dependency-management'
7+
8+
sourceCompatibility = 11
9+
10+
repositories {
11+
mavenCentral()
12+
}
13+
14+
sourceSets.main.resources.srcDirs = ["src/resources"]
15+
16+
dependencies {
17+
implementation 'org.springframework.boot:spring-boot-starter'
18+
implementation 'org.springframework.boot:spring-boot-starter-actuator'
19+
implementation("org.springframework.boot:spring-boot-starter-web")
20+
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
21+
developmentOnly("org.springframework.boot:spring-boot-devtools")
22+
compileOnly 'org.projectlombok:lombok:1.18.16'
23+
annotationProcessor 'org.projectlombok:lombok:1.18.16'
24+
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)