Skip to content

Commit

Permalink
Next minor (#210)
Browse files Browse the repository at this point in the history
* ci: set project version to 3.1.0-SNAPSHOT

* build: Micronaut to 3.3.4

* build: micronaut test to 3.1.1

* build: groovy to 3.0.10

* build: project url to https

* ci: githubCoreBranch to 3.4.x

* micronaut 3 compat

Co-authored-by: yawkat <jonas.konrad@oracle.com>
  • Loading branch information
sdelamo and yawkat authored Mar 17, 2022
1 parent 80c92c2 commit 27aa20f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions acme/src/test/groovy/io/micronaut/acme/AcmeBaseSpec.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ abstract class AcmeBaseSpec extends Specification {
"micronaut.server.ssl.enabled": true,
"micronaut.server.ssl.port" : expectedSecurePort,
"micronaut.server.host" : EXPECTED_DOMAIN,
"micronaut.http.client.ssl.insecure-trust-all-certificates": true,
"acme.tosAgree" : true,
"acme.cert-location" : certFolder.toString(),
"acme.domain-key" : domainKey,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class WellKnownTokenControllerSpec extends AcmeBaseSpec {
then:
def ex = thrown(HttpClientResponseException)
ex.response.status() == HttpStatus.NOT_FOUND
new JsonSlurper().parseText(ex.response.body()).message == "Not found"
new JsonSlurper().parseText(ex.response.body()).message == "Not Found"
}

void "pass valid token"(){
Expand Down
12 changes: 6 additions & 6 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
projectVersion=3.0.2-SNAPSHOT
projectVersion=3.1.0-SNAPSHOT
projectGroup=io.micronaut.acme

micronautDocsVersion=2.0.0
micronautVersion=2.5.12
micronautTestVersion=2.3.6
micronautVersion=3.3.4
micronautTestVersion=3.1.1

groovyVersion=3.0.9
groovyVersion=3.0.10
spockVersion=2.0-groovy-3.0

acmeVersion=2.12
Expand All @@ -16,11 +16,11 @@ cglibVersion=3.3.0

title=Micronaut Acme
projectDesc=Extensions to integrate Micronaut and Acme
projectUrl=http://micronaut.io
projectUrl=https://micronaut.io
githubSlug=micronaut-projects/micronaut-acme
developers=Nathan Zender

githubCoreBranch=3.1.x
githubCoreBranch=3.4.x
bomProperty=micronautAcmeVersion

org.gradle.caching=true
Expand Down

0 comments on commit 27aa20f

Please sign in to comment.