Skip to content

Commit

Permalink
Restore changes
Browse files Browse the repository at this point in the history
  • Loading branch information
EmanueleValentini1 committed Jul 23, 2024
1 parent fa0e92d commit 9dd051d
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 132 deletions.
47 changes: 13 additions & 34 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -60,24 +60,25 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-awt</artifactId>
</dependency>

<!-- AWS SDK for Cognito -->
<dependency>
<groupId>io.quarkiverse.amazonservices</groupId>
<artifactId>quarkus-amazon-cognito-user-pools</artifactId>
<version>2.12.2</version>
<artifactId>quarkus-amazon-s3</artifactId>
</dependency>
<dependency>
<groupId>io.quarkiverse.amazonservices</groupId>
<artifactId>quarkus-amazon-common</artifactId>
<version>2.12.2</version>
<groupId>software.amazon.awssdk</groupId>
<artifactId>url-connection-client</artifactId>
</dependency>


<!-- Quarkus dependencies -->
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy-reactive</artifactId>
<groupId>software.amazon.awssdk.crt</groupId>
<artifactId>aws-crt</artifactId>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>netty-nio-client</artifactId>
</dependency>
<dependency>
<groupId>io.quarkiverse.amazonservices</groupId>
<artifactId>quarkus-amazon-sts</artifactId>
</dependency>

<dependency>
Expand Down Expand Up @@ -124,33 +125,11 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-smallrye-context-propagation</artifactId>
</dependency>
<dependency>
<groupId>io.quarkiverse.amazonservices</groupId>
<artifactId>quarkus-amazon-s3</artifactId>
<version>2.12.2</version>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>url-connection-client</artifactId>
</dependency>
<dependency>
<groupId>software.amazon.awssdk.crt</groupId>
<artifactId>aws-crt</artifactId>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>netty-nio-client</artifactId>
</dependency>
<dependency>
<groupId>io.quarkiverse.amazonservices</groupId>
<artifactId>quarkus-amazon-sts</artifactId>
<version>2.12.2</version>
</dependency>
<dependency>
<groupId>io.quarkiverse.logging.logback</groupId>
<artifactId>quarkus-logging-logback</artifactId>
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

6 changes: 1 addition & 5 deletions src/main/resources/application-local.properties
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,4 @@ cdn.offset-path=${CDN_OFFSET_PATH:RESOURCE/}
###################
quarkus.otel.traces.enabled=${TRACING_ENABLED:true}
quarkus.otel.exporter.otlp.traces.endpoint=${TRACING_ENDPOINT_BASE_PATH:http://localhost:4317}
quarkus.datasource.jdbc.telemetry=${TRACING_ENABLE_JDBC_MONITORING:true}
###################
# COGNITO
###################
aws-cognito.region=${COGNITO_REGION:eu-south-1}
quarkus.datasource.jdbc.telemetry=${TRACING_ENABLE_JDBC_MONITORING:true}
4 changes: 0 additions & 4 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,6 @@ cdn.offset-path=${CDN_OFFSET_PATH:RESOURCE/}
quarkus.otel.traces.enabled=${TRACING_ENABLED:true}
quarkus.otel.exporter.otlp.traces.endpoint=${TRACING_ENDPOINT_BASE_PATH:http://jaeger-collector.default.svc.cluster.local:4317}
quarkus.datasource.jdbc.telemetry=${TRACING_ENABLE_JDBC_MONITORING:true}
###################
# COGNITO
###################
aws-cognito.region=${COGNITO_REGION:eu-south-1}



0 comments on commit 9dd051d

Please sign in to comment.