Skip to content

Commit

Permalink
Consolidate security configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
jultty committed Mar 31, 2024
1 parent 0166e62 commit 14394af
Show file tree
Hide file tree
Showing 188 changed files with 3,721 additions and 689 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Once you have downloaded or built a `.jar` file, you can start the server using:
java -jar build/libs/mirante-<version>.jar
```

Replace `<version>` with the current version, for example: `java -jar build/libs/mirante-0.2.0-SNAPSHOT.jar`.
Replace `<version>` with the current version, for example: `java -jar build/libs/mirante-0.3.0-SNAPSHOT.jar`.

If you are unsure about the current version number, look into the `build/libs` directory for what files were generated, or check the `build.gradle` file for the `version` property.

Expand Down
12 changes: 7 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
plugins {
id 'java'
id 'org.springframework.boot' version '3.2.3'
id 'org.springframework.boot' version '3.2.4'
id 'io.spring.dependency-management' version '1.1.4'
id 'com.github.andygoossens.modernizer' version '1.9.0'
id 'com.github.spotbugs' version '6.0.8'
id 'jacoco'
}

group = 'mirante.api'
version = '0.2.0-SNAPSHOT'
version = '0.3.0-SNAPSHOT'
def spring_version = '6.1.5'
def spring_security_version = '6.2.3'

configurations {
umlDoclet
Expand Down Expand Up @@ -37,9 +39,9 @@ dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-data-rest'
implementation 'org.springframework.boot:spring-boot-starter-security'
implementation 'org.springframework.boot:spring-boot-starter-webflux:3.2.3'
implementation 'org.springframework.boot:spring-boot-starter-webflux'
implementation 'jakarta.inject:jakarta.inject-api:2.0.1'
implementation 'org.springframework.security:spring-security-crypto:6.2.1'
implementation "org.springframework.security:spring-security-crypto:${spring_security_version}"
implementation 'org.bouncycastle:bcprov-jdk15on:1.69'
implementation 'commons-io:commons-io:2.15.1'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
Expand Down Expand Up @@ -81,7 +83,7 @@ jacocoTestCoverageVerification {
violationRules {
rule {
limit {
minimum = 0.20
minimum = 0.18
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion devbox.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"scripts": {
"test": [ "gradle test" ],
"build": [ "gradle build" ],
"run": [ "java -Dserver.port=8888 -jar build/libs/mirante-0.2.0-SNAPSHOT.jar" ]
"run": [ "java -Dserver.port=8888 -jar build/libs/mirante-0.3.0-SNAPSHOT.jar" ]
}
}
}
2 changes: 1 addition & 1 deletion docs/generated/jacoco/test/html/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/generated/jacoco/test/html/jacoco-sessions.html

Large diffs are not rendered by default.

Large diffs are not rendered by default.

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.

Loading

0 comments on commit 14394af

Please sign in to comment.