initial
1 parent d8e0f89 commit a75214143f39057e5683c4e29995896c53c479df
t-kisimoto authored on 28 Apr 2019
Showing 13 changed files
View
31
.gitignore 0 → 100644
HELP.md
.gradle
/build/
!gradle/wrapper/gradle-wrapper.jar
 
### STS ###
.apt_generated
.classpath
.factorypath
.project
.settings
.springBeans
.sts4-cache
 
### IntelliJ IDEA ###
.idea
*.iws
*.iml
*.ipr
/out/
 
### NetBeans ###
/nbproject/private/
/nbbuild/
/dist/
/nbdist/
/.nb-gradle/
 
### VS Code ###
.vscode/
View
28
build.gradle 0 → 100644
plugins {
id 'org.springframework.boot' version '2.1.4.RELEASE'
id 'java'
id 'war'
}
 
apply plugin: 'io.spring.dependency-management'
 
group = 'com.example'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
 
repositories {
mavenCentral()
}
 
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-jersey'
implementation 'org.springframework.boot:spring-boot-starter-thymeleaf'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'org.springframework.boot:spring-boot-starter-web'
runtimeOnly 'com.h2database:h2'
runtimeOnly 'mysql:mysql-connector-java'
providedRuntime 'org.springframework.boot:spring-boot-starter-tomcat'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
View
gradle/wrapper/gradle-wrapper.jar 0 → 100644
Not supported
View
gradle/wrapper/gradle-wrapper.properties 0 → 100644
View
gradlew 0 → 100644
View
gradlew.bat 0 → 100644
View
settings.gradle 0 → 100644
View
src/main/java/com/example/cosmos_serversb/CosmosServerSbApplication.java 0 → 100644
View
src/main/java/com/example/cosmos_serversb/JerseyConfig.java 0 → 100644
View
src/main/java/com/example/cosmos_serversb/ServletInitializer.java 0 → 100644
View
src/main/java/com/example/cosmos_serversb/resource/HelloResource.java 0 → 100644
View
src/main/resources/application.properties 0 → 100644
View
src/test/java/com/example/cosmos_serversb/CosmosServerSbApplicationTests.java 0 → 100644