commit
994c915c4a
1291 changed files with 2573 additions and 0 deletions
@ -0,0 +1,40 @@
|
||||
HELP.md |
||||
.gradle |
||||
build/ |
||||
!gradle/wrapper/gradle-wrapper.jar |
||||
!**/src/main/**/build/ |
||||
!**/src/test/**/build/ |
||||
|
||||
### STS ### |
||||
.apt_generated |
||||
.classpath |
||||
.factorypath |
||||
.project |
||||
.settings |
||||
.springBeans |
||||
.sts4-cache |
||||
bin/ |
||||
!**/src/main/**/bin/ |
||||
!**/src/test/**/bin/ |
||||
|
||||
### IntelliJ IDEA ### |
||||
.idea |
||||
*.iws |
||||
*.iml |
||||
*.ipr |
||||
out/ |
||||
!**/src/main/**/out/ |
||||
!**/src/test/**/out/ |
||||
|
||||
### NetBeans ### |
||||
/nbproject/private/ |
||||
/nbbuild/ |
||||
/dist/ |
||||
/nbdist/ |
||||
/.nb-gradle/ |
||||
|
||||
### VS Code ### |
||||
.vscode/ |
||||
|
||||
### Kotlin ### |
||||
.kotlin |
||||
@ -0,0 +1,51 @@
|
||||
plugins { |
||||
id("org.springframework.boot") version "3.3.1" |
||||
id("io.spring.dependency-management") version "1.1.5" |
||||
kotlin("jvm") version "1.9.24" |
||||
kotlin("plugin.spring") version "1.9.24" |
||||
} |
||||
|
||||
group = "tv.anypoint" |
||||
version = "0.0.1-SNAPSHOT" |
||||
extra["springCloudVersion"] = "2021.0.4" |
||||
|
||||
java { |
||||
toolchain { |
||||
languageVersion = JavaLanguageVersion.of(19) |
||||
} |
||||
} |
||||
|
||||
repositories { |
||||
mavenCentral() |
||||
} |
||||
|
||||
dependencies { |
||||
implementation("org.springframework.boot:spring-boot-starter-web") |
||||
implementation("com.fasterxml.jackson.module:jackson-module-kotlin") |
||||
implementation("org.jetbrains.kotlin:kotlin-reflect") |
||||
testImplementation("org.springframework.boot:spring-boot-starter-test") |
||||
testImplementation("org.jetbrains.kotlin:kotlin-test-junit5") |
||||
testRuntimeOnly("org.junit.platform:junit-platform-launcher") |
||||
compileOnly(platform("org.springframework.cloud:spring-cloud-dependencies:${property("springCloudVersion")}")) |
||||
|
||||
// kinesis library |
||||
implementation("software.amazon.kinesis:amazon-kinesis-client:2.6.0") |
||||
implementation("software.amazon.awssdk:kinesis:2.26.18") |
||||
implementation("software.amazon.awssdk:dynamodb:2.26.18") |
||||
implementation("software.amazon.awssdk:cloudwatch:2.26.18") |
||||
|
||||
// db library |
||||
implementation("org.postgresql:postgresql:42.2.23") |
||||
implementation("org.bgee.log4jdbc-log4j2:log4jdbc-log4j2-jdbc4:1.16") |
||||
implementation("org.springframework.boot:spring-boot-starter-data-jpa") |
||||
} |
||||
|
||||
kotlin { |
||||
compilerOptions { |
||||
freeCompilerArgs.addAll("-Xjsr305=strict") |
||||
} |
||||
} |
||||
|
||||
tasks.withType<Test> { |
||||
useJUnitPlatform() |
||||
} |
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue