Re: Maven deploy logic .. that does upload of pom, jar, sha1, md5 ?

2021-01-10 Thread Paul Hammant
I'm still clicking around trying to find the piece of code I'm interested in. I've found MessageDigest(string).getInstance(“SHA-1”).update(various), but not succinctly how it links to the upload/publish process. I've already made the change I want for GraknLab's "bazel-distribution" (Python)

[ANN] Apache Maven Shared Resources, version 3 Released

2021-01-10 Thread Sylwester Lachiewicz
The Maven team is pleased to announce the release of the Apache Maven Shared Resources, version 3 This is a collection of templates that are specific to the Maven project. https://maven.apache.org/shared/maven-shared-resources/ You should specify the version in your project's plugin dependency:

[GitHub] [maven-site] rfscholte commented on a change in pull request #225: [MNG-7051] Add examples of ? prefix in profile activation

2021-01-10 Thread GitBox
rfscholte commented on a change in pull request #225: URL: https://github.com/apache/maven-site/pull/225#discussion_r554558015 ## File path: content/apt/guides/introduction/introduction-to-profiles.apt ## @@ -307,7 +309,7 @@ mvn groupId:artifactId:goal -Denvironment=test

Re: Maven deploy logic .. that does upload of pom, jar, sha1, md5 ?

2021-01-10 Thread Tamás Cservenák
Simplest is to clone (in gh) these reposes to your user https://github.com/apache/maven https://github.com/apache/maven-resolver https://github.com/apache/maven-wagon Then clone them from there to your machine (git clone). I usually add "upstream" remote (git remote add upstream ...) that points

Re: Maven deploy logic .. that does upload of pom, jar, sha1, md5 ?

2021-01-10 Thread Paul Hammant
Thanks Tamás After building that all, Is there a trick to instantiating mvnDebug using those snapshots ? - Paul