Skip to content

Is it possible to provide an pom with spring boot version on maven central repository officially just like this ? #25396

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

Closed
vdiskg opened this issue Feb 23, 2021 · 1 comment
Labels
status: declined A suggestion or change that we don't feel we should currently apply

Comments

@vdiskg
Copy link

vdiskg commented Feb 23, 2021

Is it possible to provide an pom with spring boot version on maven central repository officially just like this ?
the new pom spring-boot-starter-parent-with-version makes it easier and more accurate to access spring boot version while working with maven, and for gradle just use the origin pom spring-boot-starter-parent.

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns="http://maven.apache.org/POM/4.0.0"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>xxx</version>
        <relativePath/>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent-with-version</artifactId>
    <packaging>pom</packaging>
    <version>xxx</version>

    <properties>
        <!-- since spring-boot-dependencies:2.3.4.RELEASE -->
        <spring-boot.version>xxx</spring-boot.version>
    </properties>

</project>

@spring-projects-issues spring-projects-issues added the status: waiting-for-triage An issue we've not yet triaged label Feb 23, 2021
@bclozel
Copy link
Member

bclozel commented Feb 23, 2021

I'm sorry @vdisk-group but we'll have to decline this enhancement request.
This information was there at some point but we removed it for good reasons (see #23174) so we're not likely to re-introduce it for the reasons stated in the linked issue.

Thanks!

@bclozel bclozel closed this as completed Feb 23, 2021
@bclozel bclozel added status: declined A suggestion or change that we don't feel we should currently apply and removed status: waiting-for-triage An issue we've not yet triaged labels Feb 23, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status: declined A suggestion or change that we don't feel we should currently apply
Projects
None yet
Development

No branches or pull requests

3 participants