Skip to content
This repository has been archived by the owner on May 3, 2023. It is now read-only.

Commit

Permalink
Build(deps): bump checkstyle from 10.4 to 10.5.0 (#50)
Browse files Browse the repository at this point in the history
* Build(deps): bump checkstyle from 10.4 to 10.5.0

Bumps [checkstyle](https://github.com/checkstyle/checkstyle) from 10.4 to 10.5.0.
- [Release notes](https://github.com/checkstyle/checkstyle/releases)
- [Commits](checkstyle/checkstyle@checkstyle-10.4...checkstyle-10.5.0)

---
updated-dependencies:
- dependency-name: com.puppycrawl.tools:checkstyle
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix(ci): fixing tests during ci

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Paulo Gomes da Cruz Junior <paulo.cruz@encora.com>
  • Loading branch information
dependabot[bot] and Paulo Gomes da Cruz Junior authored Dec 5, 2022
1 parent 631407c commit ac1af49
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<skip.unit.tests>false</skip.unit.tests>
<jacoco.skip>true</jacoco.skip>
<checkstyle.skip>true</checkstyle.skip>
<checkstyle.failsOnError>true</checkstyle.failsOnError>
<checkstyle.failsOnError>true</checkstyle.failsOnError>
<checkstyle.includeTestSourceDirectory>true</checkstyle.includeTestSourceDirectory>
<jacoco.output.data>${project.build.directory}/coverage-reports</jacoco.output.data>
<timestamp>${maven.build.timestamp}</timestamp>
Expand Down Expand Up @@ -103,7 +103,7 @@
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.oracle.database.jdbc</groupId>
Expand Down Expand Up @@ -338,7 +338,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>10.4</version>
<version>10.5.0</version>
</dependency>
</dependencies>
<configuration>
Expand Down
24 changes: 24 additions & 0 deletions src/test/resources/application.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Server and application
spring.application.name = nr-fsa-service-api-4139
server.port = 8090

# Key Cloak, authentication and security
spring.security.oauth2.resourceserver.jwt.issuer-uri = https://empty.com/auth
spring.security.oauth2.resourceserver.jwt.jwk-set-uri = https://empty.com/auth/protocol/openid-connect/certs

# Database, datasource and JPA
spring.datasource.driver-class-name=org.h2.Driver
spring.datasource.url = jdbc:h2:~/testdb;DB_CLOSE_ON_EXIT=FALSE
spring.datasource.username = sa
spring.datasource.password =
spring.jpa.database-platform=org.hibernate.dialect.H2Dialect




# Actuator and ops
management.endpoint.health.show-details = always

# Others
nrbestapi.version = ${NRBESTAPI_VERSION:#{'dev'}}
server.allowed.cors.origins = ${ALLOWED_ORIGINS:#{'http://localhost:300*'}}

0 comments on commit ac1af49

Please sign in to comment.