-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
axoniq: | ||
axonserver: | ||
hostname: axonserver | ||
hostname: axonserver | ||
standalone: true |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM gcr.io/distroless/java17-debian12 | ||
ARG JAR_FILE=build/libs/*.jar | ||
COPY ${JAR_FILE} graphql.jar | ||
#User nonroot (ID 65532) is a user created by distroless images | ||
#See https://github.com/GoogleContainerTools/distroless/issues/235 | ||
USER 65532 | ||
CMD ["/graphql.jar"] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,13 @@ | ||
plugins { | ||
id("yatt.kotlin-conventions") | ||
id("io.spring.dependency-management") | ||
kotlin("plugin.spring") | ||
id("yatt.api-conventions") | ||
} | ||
|
||
group = "${group}.apis" | ||
|
||
dependencies { | ||
api(project(":apis:common")) | ||
|
||
implementation("io.opentracing.contrib:opentracing-spring-jaeger-cloud-starter") | ||
implementation("io.projectreactor.kotlin:reactor-kotlin-extensions:1.1.5") | ||
implementation("org.axonframework:axon-spring-boot-starter") | ||
implementation("org.axonframework.extensions.kotlin:axon-kotlin") | ||
implementation("org.axonframework.extensions.tracing:axon-tracing-spring-boot-starter") | ||
|
||
implementation("org.springframework.boot:spring-boot-starter-graphql") | ||
implementation("org.springframework.boot:spring-boot-starter-security") | ||
implementation("org.springframework.boot:spring-boot-starter-web") | ||
implementation("org.springframework.boot:spring-boot-starter-websocket") | ||
implementation("org.springframework.boot:spring-boot-starter-oauth2-resource-server") | ||
|
||
testImplementation("org.springframework.boot:spring-boot-starter-test") | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,14 @@ | ||
plugins { | ||
id("com.google.protobuf") version "0.8.18" | ||
id("yatt.kotlin-conventions") | ||
id("io.spring.dependency-management") | ||
kotlin("plugin.spring") | ||
id("yatt.api-conventions") | ||
} | ||
|
||
group = "${group}.apis" | ||
|
||
dependencies { | ||
api(project(":apis:common")) | ||
api(project(":apis:grpc-lib")) | ||
|
||
implementation("io.projectreactor:reactor-core") | ||
implementation("jakarta.annotation:jakarta.annotation-api:2.0.0") | ||
|
||
implementation("net.devh:grpc-spring-boot-starter:2.13.1.RELEASE") | ||
implementation("org.axonframework:axon-spring-boot-starter") | ||
implementation("org.axonframework.extensions.kotlin:axon-kotlin") | ||
implementation("org.springframework.boot:spring-boot-starter-oauth2-resource-server") | ||
implementation("org.springframework.boot:spring-boot-starter-security") | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
axon: | ||
extension: | ||
tracing: | ||
enabled: false | ||
|
||
spring: | ||
application: | ||
name: grpc-api | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
FROM gcr.io/distroless/java17-debian12 | ||
ARG JAR_FILE=build/libs/*.jar | ||
COPY ${JAR_FILE} rest.jar | ||
#User nonroot (ID 65532) is a user created by distroless images | ||
#See https://github.com/GoogleContainerTools/distroless/issues/235 | ||
USER 65532 | ||
CMD ["/rest.jar"] |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,10 @@ | ||
plugins { | ||
id("yatt.kotlin-conventions") | ||
id("io.spring.dependency-management") | ||
kotlin("plugin.spring") | ||
id("yatt.api-conventions") | ||
} | ||
|
||
group = "${group}.apis" | ||
|
||
dependencies { | ||
api(project(":apis:common")) | ||
|
||
implementation("com.fasterxml.jackson.module:jackson-module-kotlin") | ||
implementation("io.opentracing.contrib:opentracing-spring-jaeger-web-starter") | ||
implementation("io.projectreactor:reactor-core") | ||
implementation("org.axonframework:axon-spring-boot-starter") | ||
implementation("org.axonframework.extensions.kotlin:axon-kotlin") | ||
implementation("org.axonframework.extensions.tracing:axon-tracing-spring-boot-starter") | ||
implementation("org.springframework.boot:spring-boot-starter-security") | ||
implementation("org.springframework.boot:spring-boot-starter-web") | ||
implementation("org.springframework.boot:spring-boot-starter-oauth2-resource-server") | ||
|
||
testImplementation("org.axonframework:axon-test") | ||
testImplementation("org.springframework.boot:spring-boot-starter-test") | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,21 @@ | ||
plugins { | ||
id("yatt.kotlin-conventions") | ||
id("io.spring.dependency-management") | ||
id("yatt.api-conventions") | ||
id("com.google.osdetector") version "1.7.0" | ||
kotlin("plugin.spring") | ||
} | ||
|
||
group = "${group}.apis" | ||
|
||
dependencies { | ||
api(project(":apis:common")) | ||
|
||
if (osdetector.arch.equals("aarch_64")) { | ||
implementation("io.netty:netty-all") | ||
} | ||
|
||
implementation("com.fasterxml.jackson.module:jackson-module-kotlin") | ||
implementation("io.projectreactor:reactor-core") | ||
implementation("io.projectreactor.kotlin:reactor-kotlin-extensions") | ||
implementation("org.axonframework:axon-spring-boot-starter") | ||
implementation("org.axonframework.extensions.kotlin:axon-kotlin") | ||
implementation("org.axonframework.extensions.reactor:axon-reactor-spring-boot-starter") | ||
implementation("org.axonframework.extensions.tracing:axon-tracing-spring-boot-starter") | ||
implementation("org.springframework.boot:spring-boot-starter-oauth2-resource-server") | ||
implementation("org.springframework.boot:spring-boot-starter-rsocket") | ||
implementation("org.springframework.boot:spring-boot-starter-security") | ||
implementation("org.springframework.boot:spring-boot-starter-webflux") | ||
implementation("org.springframework.security:spring-security-messaging") | ||
implementation("org.springframework.security:spring-security-rsocket") | ||
|
||
testImplementation("org.axonframework:axon-test") | ||
testImplementation("org.springframework.boot:spring-boot-starter-test") | ||
} |