Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mn4 #30

Merged
merged 4 commits into from
Oct 6, 2022
Merged

Mn4 #30

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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