Skip to content

Commit

Permalink
target micronaut 4 (#30)
Browse files Browse the repository at this point in the history
* ci: githubCoreBranch 4.0.x

* ci: projectVersion=2.0.0-SNAPSHOT

[ci skip]

* build: Micronaut Framework 4.0.0-SNAPSHOT

* Add snapshot repo

Co-authored-by: Tim Yates <[email protected]>
  • Loading branch information
sdelamo and timyates authored Oct 6, 2022
1 parent 13e7103 commit 60954aa
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 3 deletions.
8 changes: 8 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,11 @@ plugins {
id "io.micronaut.build.internal.docs"
id "io.micronaut.build.internal.quality-reporting"
}

// Required for 4.0.0-SNAPSHOT, can be removed after
allprojects {
repositories {
maven { url = "https://s01.oss.sonatype.org/content/repositories/snapshots" }
mavenCentral()
}
}
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
projectVersion=1.0.2-SNAPSHOT
projectVersion=2.0.0-SNAPSHOT
projectGroup=io.micronaut.crac

title=Micronaut CRaC
Expand All @@ -8,7 +8,7 @@ githubSlug=micronaut-projects/micronaut-crac
developers=Tim Yates,Sergio del Amo

# Micronaut core branch for BOM pull requests
githubCoreBranch=3.7.x
githubCoreBranch=4.0.x

# bomProperty=micronautXXXVersion
# If needed, set additional properties
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
micronaut = "3.7.0"
micronaut = "4.0.0-SNAPSHOT"
micronaut-docs = "2.0.0"
micronaut-test = "3.6.2"
groovy = "3.0.13"
Expand Down
8 changes: 8 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,14 @@ plugins {
id 'io.micronaut.build.shared.settings' version '5.3.14'
}

// Required for 4.0.0-SNAPSHOT, can be removed after
dependencyResolutionManagement {
repositories {
maven { url = "https://s01.oss.sonatype.org/content/repositories/snapshots" }
mavenLocal()
}
}

rootProject.name = 'crac-parent'

include 'crac'
Expand Down

0 comments on commit 60954aa

Please sign in to comment.