Re: Maven Sign Plugin

2020-09-27 Thread Slawomir Jaranowski
In order to remove reflection and possibility to call: FileTransformerManager fileTransformerManager = repositorySystemSession.getFileTransformerManager(); I must add: org.eclipse.aether.transform in:

Re: Maven Sign Plugin

2020-09-27 Thread Robert Scholte
For now I would focus on making it work for Maven 3.7.0 and above. That would remove the need for reflection right? If there are multiple transfomers, in the end their result should all be signed. The reason behind this is that in the future we could upload multiple files based on the same pom.

[CANCELED] [VOTE] Release Maven Resolver version 1.6.0

2020-09-27 Thread Michael Osipov
The vote has been canceled! Luckily, Dan was able to find the offending commit. At the end, this does not look very good for the community because SHA-2, in some cases, is unusable to due to tremendous calculation overhead. I wil rework and reoll after Dan has verified another patch. Michael

Re: Maven Sign Plugin

2020-09-27 Thread Michael Osipov
Am 2020-09-27 um 13:06 schrieb Slawomir Jaranowski: Ok. I did some research and spike. We need access to *FileTransformerManager*, it look like this is method, which we want: * org.eclipse.aether.RepositorySystemSession#getFileTransformerManager* We can use it from maven 3.6 (without

Re: Maven Sign Plugin

2020-09-27 Thread Slawomir Jaranowski
Ok. I did some research and spike. We need access to *FileTransformerManager*, it look like this is method, which we want: * org.eclipse.aether.RepositorySystemSession#getFileTransformerManager* We can use it from maven 3.6 (without overwriting the version of maven-resolver-api) ... so the