Skip to content

Commit 93c61b6

Browse files
authored
Revert "Revert main Branch #218"
1 parent 79e7e84 commit 93c61b6

24 files changed

Lines changed: 768 additions & 0 deletions

.gitignore

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
HELP.md
2+
.gradle
3+
build/**
4+
!build/libs/
5+
!gradle/wrapper/gradle-wrapper.jar
6+
!**/src/main/**/build/
7+
!**/src/test/**/build/
8+
9+
# Log Files
10+
/logs
11+
12+
### STS ###
13+
.apt_generated
14+
.classpath
15+
.factorypath
16+
.project
17+
.settings
18+
.springBeans
19+
.sts4-cache
20+
bin/
21+
!**/src/main/**/bin/
22+
!**/src/test/**/bin/
23+
24+
### IntelliJ IDEA ###
25+
.idea
26+
*.iws
27+
*.iml
28+
*.ipr
29+
out/
30+
!**/src/main/**/out/
31+
!**/src/test/**/out/
32+
33+
### NetBeans ###
34+
/nbproject/private/
35+
/nbbuild/
36+
/dist/
37+
/nbdist/
38+
/.nb-gradle/
39+
40+
### VS Code ###
41+
.vscode/

build.gradle

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
plugins {
2+
id 'org.springframework.boot' version '2.6.6'
3+
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
4+
id 'java'
5+
}
6+
7+
group = 'org.prgrms'
8+
version = '0.0.1-SNAPSHOT'
9+
sourceCompatibility = '11'
10+
11+
jar {
12+
manifest {
13+
attributes 'Main-Class': 'org.prgrms.springbootbasic.CommandLineApplication'
14+
}
15+
from {
16+
configurations.runtimeClasspath.collect {
17+
it.isDirectory() ? it : zipTree(it)
18+
}
19+
}
20+
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
21+
}
22+
23+
repositories {
24+
mavenCentral()
25+
}
26+
27+
dependencies {
28+
implementation 'org.springframework.boot:spring-boot-starter'
29+
implementation 'org.beryx:text-io:3.4.1'
30+
testImplementation 'org.springframework.boot:spring-boot-starter-test'
31+
}
32+
33+
tasks.named('test') {
34+
useJUnitPlatform()
35+
}
8.51 MB
Binary file not shown.

gradle/wrapper/gradle-wrapper.jar

58.4 KB
Binary file not shown.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
distributionBase=GRADLE_USER_HOME
2+
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.1-bin.zip
4+
zipStoreBase=GRADLE_USER_HOME
5+
zipStorePath=wrapper/dists

gradlew

Lines changed: 234 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)