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

Rename bom -> platform #29

Merged
merged 1 commit into from
Nov 24, 2022
Merged
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
4 changes: 0 additions & 4 deletions bom/README.md

This file was deleted.

6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
projectVersion=4.0.0-SNAPSHOT
projectGroup=io.micronaut.bom
projectGroup=io.micronaut.platform

title=Micronaut BOM
title=Micronaut Platform
projectDesc=Bill-Of-Materials (BOM) and Gradle version catalogs for Micronaut
projectUrl=https://micronaut.io
githubSlug=micronaut-projects/micronaut-bom
githubSlug=micronaut-projects/micronaut-platform
developers=Cedric Champeau

# Micronaut core branch for BOM pull requests
Expand Down
4 changes: 2 additions & 2 deletions parent/src/pom-template.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
<version>%%version%%</version>
<packaging>pom</packaging>
<parent>
<groupId>io.micronaut.bom</groupId>
<artifactId>micronaut-bom</artifactId>
<groupId>io.micronaut.platform</groupId>
<artifactId>micronaut-platform</artifactId>
<version>%%version%%</version>
</parent>
<name>Micronaut</name>
Expand Down
5 changes: 5 additions & 0 deletions platform/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Micronaut Platform BOM

This module produces the Micronaut Bill of Materials (Platform BOM), which aggregates other Micronaut BOMs as well as recommended third-party dependencies.

New Entries can be added in the `gradle/libs.versions.toml` file.
2 changes: 1 addition & 1 deletion bom/build.gradle.kts → platform/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {
}

micronautBom {
propertyName.set("bom")
propertyName.set("platform")
extraExcludedProjects.add("parent")
suppressions {

Expand Down
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ plugins {
id 'io.micronaut.build.shared.settings' version '6.1.0'
}

rootProject.name = 'project-bom-parent'
rootProject.name = 'project-platform-parent'

include 'bom'
include 'platform'
include 'parent'

micronautBuild {
Expand Down