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

Chore: add signing configuration to all artifacts #1147

Closed
1 task done
paullatzelsperger opened this issue Apr 13, 2022 · 0 comments · Fixed by #1149
Closed
1 task done

Chore: add signing configuration to all artifacts #1147

paullatzelsperger opened this issue Apr 13, 2022 · 0 comments · Fixed by #1149
Assignees
Milestone

Comments

@paullatzelsperger
Copy link
Member

paullatzelsperger commented Apr 13, 2022

Feature Request

The following information must be added to the build file(s):

  • POM information:
    • project name
    • project description
    • scm connection
    • scm url
    • developer id, name, email
    • license name+url
  • general signing configuration
  • Maven repo for OSSRH
  • withJavadocJar()
  • withSourcesJar()

in addition, every artifact has to declare what should be signed, for example:

publishing {
    publications {
        create<MavenPublication>("core-base") {
            artifactId = "core-base"
            from(components["java"])
        }
    }
    // add this:
    signing {
        sign("core-base")
    }
}

this will touch EVERY build file that produces an artifact!

Which Areas Would Be Affected?

build files

Why Is the Feature Desired?

required for MavenCentral builds

Type of Issue

chore

Checklist

  • assigned appropriate label?
  • [\ ] Do NOT select a milestone or an assignee!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant