Re: Logging api in plugins

2019-12-02 Thread Slawomir Jaranowski
pon., 2 gru 2019 o 09:52 Jochen Wiedmann napisał(a): > On Thu, Nov 28, 2019 at 9:46 PM Slawomir Jaranowski > wrote: > > > I'm writing some maven plugins - some for fun and with public code but > more > > maven plugins I'm writing for job in my company. > > > >

Logging api in plugins

2019-11-28 Thread Slawomir Jaranowski
Hi, I'm writing some maven plugins - some for fun and with public code but more maven plugins I'm writing for job in my company. Maven from version 3.1.x use slf4j for logging. But plugin api still use simple logging api org.apache.maven.plugin.logging.Log. It will be useful to have access to

Accessing a pgp signature file from plugin

2019-12-18 Thread Slawomir Jaranowski
Hi, I'm author of pgpverify-maven-plugin, this plugin check pgp signatures of project dependencies. I have problem how to access/download "asc" signature file from mojo. Currently I use repositorySystem.resolve(...), for artifact with changed file name, but in logs I see, eg: Could not

Re: Maven Repository Security issues: any war stories?

2020-02-28 Thread Slawomir Jaranowski
Hi, In maven world all artifacts have pgp signature which is created by current maintainer (from some time pgp signature is required on Maven Central). You can verify signatures of all your dependencies, you can also track which pgp key is used for specific artifact. So if maintainer of some

Re: Maven Repository Security issues: any war stories?

2020-02-29 Thread Slawomir Jaranowski
ion ... but I think is topic for another discussion. Here I only want to show some possibility to protect for situation when owner is changed. sob., 29 lut 2020 o 12:21 Elliotte Rusty Harold napisał(a): > On Sat, Feb 29, 2020 at 2:55 AM Slawomir Jaranowski > wrote: > > > > Hi, &

Re: archiving obsolete Git repository

2020-01-19 Thread Slawomir Jaranowski
Hi, I'm outside apache team and I can't know all apache projects. It will be good idea add simple README with short explain why repository is archived and if possible where developers should go for current project. pon., 20 sty 2020 o 00:09 Sylwester Lachiewicz napisał(a): > Few of them have

MavenProject - replacement for deprecated method

2020-03-07 Thread Slawomir Jaranowski
Hi, In my plugin I need list of report plugins, I use method: org.apache.maven.project.MavenProject#getReportArtifacts but this method (and many other) is deprecated in class MavenProject - maven-core version 3.5.0 What method / class / library I should use instead of this. In source code

fluido-1.9 skin - release plan

2020-04-07 Thread Slawomir Jaranowski
Hi, I want kindly ask - when do you want release next version of fluido skin? I think that many valuable issue was resolved https://issues.apache.org/jira/projects/MSKINS/versions/12346750 Is there some rules when new version of maven component will be released? -- Sławomir Jaranowski

Re: Maven Invoker Plugin - streamLogsOnFailures

2020-04-01 Thread Slawomir Jaranowski
hat the configuration for this looks like? > B. What the output looks like when this is turned on? > > Thanks. > > On Wed, Apr 1, 2020 at 10:56 AM Slawomir Jaranowski > wrote: > > > > Hi, > > > > According to the issue > https://issues.apache.org/jira/

Maven Invoker Plugin - streamLogsOnFailures

2020-04-01 Thread Slawomir Jaranowski
Hi, According to the issue https://issues.apache.org/jira/browse/MINVOKER-250 I will take your opinion about new feature. My proposition is to add possibility to show build.log of failed job at the end of all tests. I chose this way because printing log during execute tests can cause mixed

Re: Maven Filtering Plugin should avoid overwriting even when filtering

2020-04-25 Thread Slawomir Jaranowski
Hi, Can you describe your case and what you want to achieve. By default all files created during maven running are write to target directory. And in most case target directory is cleaned before new build starting. Usual maven is running by: mvn clean install. sob., 25 kwi 2020 o 00:59 Robert

Re: Maven Invoker Plugin - streamLogsOnFailures

2020-04-25 Thread Slawomir Jaranowski
Hi Did you found some time to look at my proposition? I'm waiting for your opinion. Maybe you need some more explanations. śr., 1 kwi 2020 o 17:58 Slawomir Jaranowski napisał(a): > A. > new parameters *streamLogsOnFailures* with boolean value - default false > - don't change current

Re: Maven Runtime Metrics System - MNG-6899

2020-05-04 Thread Slawomir Jaranowski
Hi, In my humble opinion it is not the best way to implement own api when similar api is already ready and maintained. There is another project used for metrics: micrometer, as we can see it is a quite popular 2.3K stars, 500 forks on github https://github.com/micrometer-metrics/micrometer

Re: Maven Invoker Plugin - streamLogsOnFailures

2020-05-19 Thread Slawomir Jaranowski
Hi, Thanks for last review, I hope that all remarks are resolved in PR. Now is one new - how new parameters should be named. I'm waiting for final decision. https://github.com/apache/maven-invoker-plugin/pull/20#pullrequestreview-403456129 sob., 25 kwi 2020 o 15:40 Slawomir Jaranowski napisał

Re: (anonymous) github user commits

2020-03-21 Thread Slawomir Jaranowski
- without using github ui* https://github.com/apache/maven-invoker-plugin/pull/13 * commit 808d2d20f16771aa18ee87a53b52e70b031d53a0 | Author: Slawomir Jaranowski | Commit: Sylwester Lachiewicz | | [MINVOKER-257] Test code should meet checkstyle requirements | | Closes #13

Re: Maven Sign Plugin

2020-10-02 Thread Slawomir Jaranowski
4.0.0 compatible version, but we might > > also transform the local pom to a more efficient file preferred by Maven > 5. > > > > thanks, > > Robert > > > > > > > > On 27-9-2020 13:06:45, Slawomir Jaranowski wrote: > > Ok. > > I did some rese

Re: Custom packaging

2020-10-07 Thread Slawomir Jaranowski
Hi, It should be worked out of the box. configuration for plugin wich add new packaging, in parent / super pom should be defined in section: build -> *pluginManagement* and only in module when you can use custom packaging you add plugin in build -> plugin śr., 7 paź 2020 o 11:30

Re: Maven Sign Plugin

2020-10-02 Thread Slawomir Jaranowski
.0-SNAPSHOT in the pom. > > On 2-10-2020 14:21:02, Slawomir Jaranowski wrote: > But on the other side, plugins must sign other artifacts associated with a > given project. > > So in this way we have two different processes - one for pom with > transformation and ather for rest

Re: Maven Sign Plugin

2020-10-04 Thread Slawomir Jaranowski
First working version is ready: https://github.com/apache/maven-studies/pull/2 I'm waiting for your opinion pt., 2 paź 2020 o 17:05 Slawomir Jaranowski napisał(a): > Targeting to maven 3.7.0-SNAPSHOT makes easier access to Transformer api. > So one issue is need to resolve: &

Re: Filetrasformer design

2020-10-12 Thread Slawomir Jaranowski
it > is probably an unfair comparison, because signing is now done by a third > party program). > To reduce memory consumption the transfomer is using PipedStreams, which > should imply that size doesn't matter anymore. > > thanks, > Robert > > > [1] https://issues.a

Re: [VOTE] Release Apache Maven Script Interpreter version 1.3

2020-10-17 Thread Slawomir Jaranowski
sob., 17 paź 2020 o 21:19 Sylwester Lachiewicz napisał(a): > Hi, > > Apache Maven Script Interpreter - this component provides some utilities to > interpret/execute some scripts for various implementations: Groovy or > BeanShell. > The project is used, among others in maven-invoker-plugin. > >

Filetrasformer design

2020-10-11 Thread Slawomir Jaranowski
Hi, During a spike on maven-sign-plugin we discovered the chain feature in the Transformation process will be useful. Current transformation solution is dedicated to pom transformation, it will be also useful to prepare more flexible solutions for another type of transformation like preparing

Re: Maven Sign Plugin

2020-10-19 Thread Slawomir Jaranowski
for maven 3.7. If you wish I will take care about this plugin. niedz., 4 paź 2020 o 15:32 Slawomir Jaranowski napisał(a): > First working version is ready: > > https://github.com/apache/maven-studies/pull/2 > > I'm waiting for your opinion > > pt., 2 paź 2020 o 17:0

Re: maven-script-interpreter next version - please help

2020-08-18 Thread Slawomir Jaranowski
Hi, I would kindly remind There are anybody who can and want help me in release maven-script-interpreter sob., 25 lip 2020 o 10:35 Slawomir Jaranowski napisał(a): > Hi, > > I made changes to maven-script-interpreter which will resolve some issues > in invoker plugin. > > Las

Re: Maven Sign Plugin

2020-09-27 Thread Slawomir Jaranowski
les based on the same pom. > We should always upload a model 4.0.0 compatible version, but we might > also transform the local pom to a more efficient file preferred by Maven 5. > > thanks, > Robert > > > > On 27-9-2020 13:06:45, Slawomir Jaranowski wrote: > Ok.

Re: Maven Sign Plugin

2020-09-25 Thread Slawomir Jaranowski
- is there git repo for it czw., 24 wrz 2020 o 18:57 Robert Scholte napisał(a): > Thanks for the offer. > Signing is very delicate process, so I appreciate the extra help. > > thanks, > Robert > On 21-9-2020 09:14:54, Slawomir Jaranowski wrote: > Hi > > I have some experien

Re: Maven Sign Plugin

2020-09-26 Thread Slawomir Jaranowski
users be able to assure their security team that signatures have been > made in the version without a security issue? > > thanks, > Robert > On 25-9-2020 15:35:01, Slawomir Jaranowski wrote: > Hi > > On the weekend I will have some spare time, so I can do something about it >

Re: Maven Sign Plugin

2020-09-27 Thread Slawomir Jaranowski
#L246 result file is overwrited by last transformer from list. You can look at what I did at my fork: https://github.com/slawekjaranowski/maven-studies/tree/maven-sign-plugin I'm waiting for a decision on what should be done next ... sob., 26 wrz 2020 o 11:46 Slawomir Jaranowski napisał(a): >

Re: Hooking custom plugin into deploy phase

2020-05-20 Thread Slawomir Jaranowski
Hi Peter Your plugin name doesn't meet maven plugin name requirements. Maybe some maven plugin name patterns are hardcoded in maven code. Please try rename your plugin to something as askpass-maven-plugin. https://maven.apache.org/guides/plugin/guide-java-plugin-development.html śr., 20 maj

Re: Maven Sign Plugin

2020-09-21 Thread Slawomir Jaranowski
Hi I have some experience in case of verifying pgp signatures using Bouncy Castle during work on my pgpverify-maven-plugin. So If you would, I can try to help with the sign plugin. Let me know if you are interested. niedz., 20 wrz 2020 o 20:38 Robert Scholte napisał(a): > With the next

Re: maven-invoker-plugin release plan

2020-06-24 Thread Slawomir Jaranowski
-917 First we should release maven-script-interpreter and use new version in maven-invoker-plugin. So i'm waiting for your opinion / suggestion how can I help in this process. niedz., 7 cze 2020 o 13:01 Slawomir Jaranowski napisał(a): > > Hi, > I see that many my PR to maven-invok

maven-invoker-plugin release plan

2020-06-07 Thread Slawomir Jaranowski
Hi, I see that many my PR to maven-invoker-plugin, maven-script-interpreter was merged - thanks especially for Sylwester. One of issue is easy to fix: https://issues.apache.org/jira/browse/MINVOKER-265 by https://issues.apache.org/jira/browse/MSHARED-914 Next step will be release of

List of public pgp key servers

2020-06-13 Thread Slawomir Jaranowski
Hi, Are there any informations / documentations / recommendations which key servers should be used to publish public key. On site https://maven.apache.org/repository/guide-central-repository-upload.html#pgp-signature we have "like" http://pgp.mit.edu/ and on site

Proposition of improvement in maven-script-interpreter

2020-06-02 Thread Slawomir Jaranowski
Hi, I've created issues with some of proposition: https://issues.apache.org/jira/browse/MSHARED-910 https://issues.apache.org/jira/browse/MSHARED-911 https://issues.apache.org/jira/browse/MSHARED-914 I can do this change after your approval, and after release new version of

maven-script-interpreter next version - please help

2020-07-25 Thread Slawomir Jaranowski
Hi, I made changes to maven-script-interpreter which will resolve some issues in invoker plugin. Last my changes brake compatibility, so next version should be: *2.0* according to semVer Here is a list of change: https://issues.apache.org/jira/projects/MSHARED/versions/12341132 And the last PR

Re: maven-source-plugin broken on Windows + JDK8

2020-07-27 Thread Slawomir Jaranowski
jdk can be good point, pass build use: Java version: 1.8.0_241, vendor: Oracle Corporation, runtime: /usr/local/asfpackages/java/jdk1.8.0_241/jre failed has: Java version: 1.8.0_252, vendor: Oracle Corporation, runtime: /usr/local/asfpackages/java/openjdk-8u252-b09/jre on mac os with:

Re: Maven Sign Plugin

2020-12-14 Thread Slawomir Jaranowski
thanks, > Robert > > On 19-10-2020 22:47:06, Slawomir Jaranowski > wrote: > Hi > > What next step do you plan with this plugin? > > I believe that can be usable even now for users. > > It is not too much work to prepare a plugin to work with maven 3.6 so we > c

Re: Maven Sign Plugin

2020-12-28 Thread Slawomir Jaranowski
Hi, First version of Sign Maven Plugin was released - https://github.com/s4u/sign-maven-plugin It works with Maven 3.6.x and future version 4.x If somebody is interested I invite them to test and collaborate. pon., 14 gru 2020 o 21:42 Slawomir Jaranowski napisał(a): > Hi, > >

Re: Maven Sign Plugin

2020-12-28 Thread Slawomir Jaranowski
ial Maven plugin, as there are many people out > there reluctant when it comes to third party due to sustained support etc.! > :-) > -Markus > > > -Ursprüngliche Nachricht- > Von: Slawomir Jaranowski [mailto:s.jaranow...@gmail.com] > Gesendet: Montag, 28. Deze

Re: Maven 4 / @Inject

2020-12-28 Thread Slawomir Jaranowski
If you think about such a change - Maven 4 should support both namespaces with warning about deprecating javax.inject. In this way developers will have more time and possibility to switch their plugins/extensions to new namespaces. Finally Maven 5 can support only new namespaces. pon., 28 gru

Re: releasing maven-artifact-plugin

2021-01-15 Thread Slawomir Jaranowski
Hi, I use org.apache.maven.repository.RepositorySystem#createArtifactWithClassifier - it is not Maybe the java version can also be upgraded to 1.8 New plugin and start with 1.7 is a special requirement for it? pt., 15 sty 2021 o 12:50 Elliotte Rusty Harold napisał(a): > I noticed this code

Re: releasing maven-artifact-plugin

2021-01-16 Thread Slawomir Jaranowski
I don't remember the discussion. What do you think about JSR-330 in plugin code? sob., 16 sty 2021 o 09:37 Hervé BOUTEMY napisał(a): > my strategy in this plugin was to use maven-shared-utils, of course when > no > API exists in JDK > If I did it wrong in some cases, don't hesitate to provide

Logging api in plugins

2021-01-17 Thread Slawomir Jaranowski
Hi, For developers logging api in plugin will can be misunderstood, we don't have information that https://maven.apache.org/maven-logging.html is only for maven core. I think we should put information that plugins should only use org.apache.maven.plugin.logging.Log and why, maybe at page:

Loging api in JSR-330 component

2021-01-17 Thread Slawomir Jaranowski
Hi, We can use the JSR-330 component for developing maven plugins - https://maven.apache.org/maven-jsr330.html There is not clear how to access logging api from JSR-330 component. As I found out last time, maven plugins should not directly use slf4j-api, so what is recommended in this case. --

Re: Loging api in JSR-330 component

2021-01-22 Thread Slawomir Jaranowski
ng api as injectable at injection > > points if needed, avoids all the mess you can get in mojo with loggers to > > respect that rule of dumb IMHO. > > > > Le dim. 17 janv. 2021 à 22:48, Slawomir Jaranowski > > a écrit : > > > > > Hi, > > > &

Re: ICLA already signed?

2021-01-26 Thread Slawomir Jaranowski
Not commiters: https://people.apache.org/unlistedclas.html Commiters https://people.apache.org/committer-index.html wt., 26 sty 2021 o 12:18 Matthieu Brouillard napisał(a): > Hi list, > > how can I check if I already have signed an ICLA for Apache. > I do not remember, back in 2008/9, when we

Re: [VOTE] Release Maven Project Info Reports Plugin version 3.1.2

2021-04-26 Thread Slawomir Jaranowski
Hi, GitHub Actions is recognized as an integration system. +1 ( not binding ) niedz., 25 kwi 2021 o 21:46 Michael Osipov napisał(a): > Hi, > > We solved 3 issues: > > https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317821=12349521 > > There are still a couple of issues left

Re: [VOTE] Release Apache Maven Shared Invoker version 3.1.0

2021-02-07 Thread Slawomir Jaranowski
Tested with maven-invoker-plugin from branch maven-311, with my project looks ok. +1 niedz., 7 lut 2021 o 21:43 Sylwester Lachiewicz napisał(a): > +1 > > need more votes.. > > sob., 6 lut 2021 o 13:56 Robert Scholte napisał(a): > > > > +1 > > On 4-2-2021 16:40:08, Sylwester Lachiewicz >

Re: maven-site-plugin and sisu-inject-plexus

2021-02-09 Thread Slawomir Jaranowski
Project used class like org.codehaus.plexus.PlexusContainer We can remove direct dependency because we have transitive dependency from other artifacts - of course we needn't remove it. [INFO] --- maven-dependency-plugin:2.10:tree (default-cli) @ maven-site-plugin --- [WARNING] Using Maven 2

Re: Backporting 3.8.1 security fix in 3.6.x

2021-04-02 Thread Slawomir Jaranowski
>From a maven user, plugin developer perspective it is not important for me if I upgrade maven to 3.6.x or 3.8.x if I have changelog for it. More important is to know some of the release and support policies. In other words, to know which version can contain new features, which only bug fix,

Re: testing pgpverify-maven-plugin

2021-03-10 Thread Slawomir Jaranowski
Hi Hervé Thanks for good words about my project. 1. There is already a request for the feature of automatically generating keys map file [2] The keys map file format is described with examples at project page [3] The keys map is similar to java properties with exception about ':' (colon), in

Re: Doxia 1.10 and maven-site-plugin 3.10

2021-03-01 Thread Slawomir Jaranowski
Hi, I have run test locally: Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f) OS name: "mac os x", version: "10.15.7", arch: "x86_64", family: "mac" and - Java version: 1.8.0_282, vendor: AdoptOpenJDK - PASS - Java version: 11.0.9, vendor: Oracle Corporation [ERROR] The following

codehaus-plexus - developers ...

2021-04-16 Thread Slawomir Jaranowski
Hi, I'm looking into code of plexus-resource, I use this component in my application and I want to discuss some of the propositions before coding ... The problem is that much information in codehaus-plexus [1] projects is outdated like links and mailing lists addresses. I ask here about how to

Re: codehaus-plexus - developers ...

2021-04-17 Thread Slawomir Jaranowski
): > most of plexus-* are maven dev folks. > You can ask in the discussions tab maybe? I just setup it > https://github.com/codehaus-plexus/plexus-resources/discussions > > but I saw you PR regarding gh actions feel free to start a thread in the > discussions tab? > > On S

Re: maven-site-plugin and sisu-inject-plexus

2021-04-17 Thread Slawomir Jaranowski
90%+) pulls it in, that has not > been > > touched for quite a long time. > > > > Plexus et al is one of the reasons why "maven pulls down the internet", > > especially as we resolve/download it only to toss it away (drop it). > > > > HTH > >

Re: [VOTE] Release Apache Maven Invoker Plugin version 3.2.2

2021-02-15 Thread Slawomir Jaranowski
+1 Tested with java 1.8, 11, 15 on MacOS, maven 3.6.3 New options *streamLogsOnFailures* and *parallelThreads* set to *1C* work as expected. niedz., 14 lut 2021 o 01:40 Sylwester Lachiewicz napisał(a): > Hi, > > We solved 17 issues: > >

Re: [VOTE] Release Apache Maven version 3.8.2

2021-08-23 Thread Slawomir Jaranowski
Hi, I think that https://issues.apache.org/jira/browse/MNG-7215 is also important, it breaks the build maven site for projects ... Please don't extend the manual process ... nowadays we have everything to do automatically, every (or most of) plugin has IT tests ... so we need just to run its

Maven 3.8.2 - site parent descriptor without locale

2021-08-16 Thread Slawomir Jaranowski
Hi, Maven site parent descriptor is not resolved by maven 3.8.2. Without changing in project, build on maven 3.8.1, I have in logs: [INFO] Rendering site with default locale English (en) [DEBUG] Computing decoration model of org.simplify4u.plugins:sign-maven-plugin:maven-plugin:0.3.2-SNAPSHOT

Re: Maven 3.8.2 - site parent descriptor without locale

2021-08-16 Thread Slawomir Jaranowski
/HighestBasedirGoal.java#L80 I don't know where the problem is ... maybe plugins detect parent pom in the wrong way ... It also can have impact on another plugins pon., 16 sie 2021 o 18:14 Michael Osipov napisał(a): > Am 2021-08-16 um 16:51 schrieb Michael Osipov: > > Am 2021-08-16 um 13:26 schrieb

Re: Maven 3.8.2 - site parent descriptor without locale

2021-08-16 Thread Slawomir Jaranowski
and issue https://issues.apache.org/jira/browse/MNG-7215 pon., 16 sie 2021 o 20:41 Slawomir Jaranowski napisał(a): > I confirm that maven from branch maven-3.8.x-revert-MNG-7170 resolves a > problem with site descriptor. > > As I see > https://github.com/apache/maven-doxia

Testing staged release

2021-09-04 Thread Slawomir Jaranowski
Hi, It looks like "Guide to Testing Staged Releases" [1] is something outdated and not consistent with "Performing a Maven Project Release" [2] In [1] we have example with repository location like http://people.apache.org/~dfabulich/stage-repo but in [2] we heve staging repo as

Re: Testing staged release

2021-09-06 Thread Slawomir Jaranowski
answer, these should > probably be asked to infra who is managing the repository manager > configuration > > Regards, > > Hervé > > Le samedi 4 septembre 2021, 16:40:44 CEST Slawomir Jaranowski a écrit : > > Hi, > > > > It looks like "Guide to Testing

Re: GitHub Actions on Maven projects

2021-09-18 Thread Slawomir Jaranowski
have > that AFAIK. > > Martin > > > > > Op za 11 sep. 2021 om 20:43 schreef Slawomir Jaranowski < > s.jaranow...@gmail.com>: > > > Hi, > > > > Many of maven, maven plugins projects have GutHub Action build > configured. > > It is very us

Maven Code Style and imports layouts

2021-09-17 Thread Slawomir Jaranowski
Hi, We have described many rules about code style on Maven Code Style And Code Conventions [1]. One item missing for me is how java imports should be ordered and groped. I can setup it in IDE and it is very useful to use code formatting with tools. I think that all propositions in this case will

GitHub Actions on Maven projects

2021-09-11 Thread Slawomir Jaranowski
Hi, Many of maven, maven plugins projects have GutHub Action build configured. It is very useful for contributors - we can verify PR early, especially on many different operating systems - which can't be done locally, or is more complicated. Most of workflows have define build matrix like:

Re: Feature proposal: Dependency deprecation indicators

2021-07-29 Thread Slawomir Jaranowski
Hi, Changing status / metadata of artifacts will break "Release Stability" of Central Repository Once artifacts was release should never change ... https://central.sonatype.org/faq/can-i-change-a-component/ Another case when we don't have source code of an artifact we can do a new pom with

Re: Maven Code Style and imports layouts

2021-10-17 Thread Slawomir Jaranowski
Hi, In order to help make decisions, I prepared PR [1] with the most used order layout in Maven Core. Please look and vote / approve / choose another proposition. [1] https://github.com/apache/maven-site/pull/269 czw., 23 wrz 2021 o 23:47 Slawomir Jaranowski napisał(a): > Hi > >

Re: [VOTE] Release Apache Maven version 3.8.3

2021-09-28 Thread Slawomir Jaranowski
Hi I confirm that issue MNG-7215 was fixed I also see speed up of building project - I was tested on project with about 300 modules and build is faster about 30 - 60s - great job +1 non binding wt., 28 wrz 2021 o 07:56 Romain Manni-Bucau napisał(a): > -0 because MNG-7251 still leads to new

Re: GitHub Actions on Maven projects

2021-10-07 Thread Slawomir Jaranowski
-github-actions-configuration-by-reusing-workflows/ [2] https://docs.github.com/en/actions/learn-github-actions/reusing-workflows niedz., 19 wrz 2021 o 21:49 Slawomir Jaranowski napisał(a): > Fo jlink on maven jenkins (a last log [1]) I don't see toolchains ... and > on java 8 simple it

Mojo Descriptor ... outdated documentation?

2021-09-22 Thread Slawomir Jaranowski
Hi, We have documentation about the Mojo descriptor and plugin api... [1] Its look like params: - executionStrategy - requiresDirectInvocation - inheritByDefault (PluginDescriptorBuilder - use only inheritedByDefault) - requiresReports are not used currently, I was looking in 3.8.x and

Re: Mojo Descriptor ... outdated documentation?

2021-10-04 Thread Slawomir Jaranowski
and documentation can help other plugin developers. śr., 22 wrz 2021 o 21:33 Tamás Cservenák napisał(a): > Howdy, > > requiresReports is unsupported since Maven 3, unsure if I would add it > doco at all (rather would remove it). > > Thanks > T > > On Wed, Sep 2

Re: Maven Code Style and imports layouts

2021-09-23 Thread Slawomir Jaranowski
ter what's already there. That is, avoid needless churn. > > My preferred style is: > > static imports > blank line > all other imports alphabetically > > > On Fri, Sep 17, 2021 at 9:19 PM Slawomir Jaranowski > wrote: > > > > Hi, > > > > We h

Re: Upcoming Maven 3.8.4

2021-10-24 Thread Slawomir Jaranowski
Hi, Very strange release process for common components ... some of the artifacts are published to the Central Repository and some of them are published by svn repository ... I don't see benefit for customizing maven core for one of case of usage but it is discussion for another place, here I

Empty jars in local .m2/repository

2021-12-01 Thread Slawomir Jaranowski
Hi, >From time to time I have jars in .m2/repository of size 0. Probably some network issues are the reason for this situation. I can't reproduce this today. I need some hints which component is responsible for storing artifacts in .m2 Or some other hints which can help to reproduce, debug such

Using of Travis

2021-12-16 Thread Slawomir Jaranowski
Hi, As the primary CI environment we use Jenkins. Now also using GH Actions ... I think that those both are enough. Some projects contain scripts for Travis, like surefire. Do we want to still use Travis? -- Sławomir Jaranowski

Supported versions policy - Maven Plugins

2021-12-17 Thread Slawomir Jaranowski
Hi, On example of the Surefire project I would build some policy / documentation / information about which versions are supported and what for. It can be generally for all maintenanced Maven Plugins by AFS. = First topic what version of plugin should be supported, in the Surefire I see

Re: Surefire next release

2021-12-19 Thread Slawomir Jaranowski
good. > > > I'd really like to review/include this PR as well > > > https://github.com/apache/maven-surefire/pull/400 > > > I hope to finish the review for this one during the week. > > > > > > On Sun, 19 Dec 2021 at 18:22, Slawomir Jaranowski < > > s.jar

Re: Surefire next release

2021-12-19 Thread Slawomir Jaranowski
b < > https://github.com/rmannibucau> | > LinkedIn <https://www.linkedin.com/in/rmannibucau> | Book > < > https://www.packtpub.com/application-development/java-ee-8-high-performance > > > > > Le dim. 19 déc. 2021 à 19:10, Slawomir Jaranowski > a écrit : &

Re: Surefire next release

2021-12-19 Thread Slawomir Jaranowski
And what with the road map ... https://maven.apache.org/surefire/maven-surefire-plugin/index.html niedz., 19 gru 2021 o 19:32 Slawomir Jaranowski napisał(a): > For Maven Api at the moment I think only change requirements and > dependency ... without using new features - We are no

Re: Supported versions policy - Maven Plugins

2021-12-18 Thread Slawomir Jaranowski
Blog > <http://rmannibucau.wordpress.com> | Github < > https://github.com/rmannibucau> | > LinkedIn <https://www.linkedin.com/in/rmannibucau> | Book > < > https://www.packtpub.com/application-development/java-ee-8-high-performance > > > > > Le ve

Re: Surefire next release

2021-12-21 Thread Slawomir Jaranowski
< > https://github.com/rmannibucau> | > LinkedIn <https://www.linkedin.com/in/rmannibucau> | Book > < > https://www.packtpub.com/application-development/java-ee-8-high-performance > > > > > Le dim. 19 déc. 2021 à 20:17, Slawomir Jaranowski > a écrit :

Re: Supported versions policy - Maven Plugins

2021-12-22 Thread Slawomir Jaranowski
sob., 18 gru 2021 o 18:42 Hervé BOUTEMY napisał(a): > Le vendredi 17 décembre 2021, 12:54:49 CET Slawomir Jaranowski a écrit : > ... > > After decision taken I think that such information should be on page: > > "Maven Plugins" [3] > > what information do you

Re: GitHub notification: dev@ or issues@?

2021-12-23 Thread Slawomir Jaranowski
+1 On the dev list should be no messages sent by robots. czw., 23 gru 2021 o 08:19 Hervé BOUTEMY napisał(a): > Hi, > > It seems that many Git repositories are configured to send issues > notifications to dev@maven [1] instead of issues@maven [2] = the > classical target of some Git

Re: Modernizing maven-dependency-analyzer

2021-12-28 Thread Slawomir Jaranowski
pon., 21 cze 2021 o 15:33 Elliotte Rusty Harold napisał(a): > Fixing https://issues.apache.org/jira/browse/MDEP-753 proved more > difficult than it should have been, primarily due to the age and > non-standard approach of a lot of its code. I was barely able to make > the tests run in

Re: [VOTE] Release Maven Deploy Plugin version 3.0.0-M2

2021-12-29 Thread Slawomir Jaranowski
Issues - MDEPLOY-263 - https://github.com/apache/maven-deploy-plugin/commit/08834920d4f80cb34886dbb2c7e11fa8b13dc6f9 - MDEPLOY-250 - https://github.com/apache/maven-deploy-plugin/commit/c34d0b5ede097734f9433f29a94466b3b8f7cd1c are missing in release notes, but commits with issue label exist

Re: [VOTE] Release Maven Plugin Tools version 3.6.2

2021-11-23 Thread Slawomir Jaranowski
+1 (not binding) niedz., 21 lis 2021 o 16:42 Michael Osipov napisał(a): > Hi, > > We solved 11 issues: > > https://issues.apache.org/jira/secure/ReleaseNote.jspa?projectId=12317820=12350123 > > There are still a couple of issues left in JIRA: > >

Re: Maven Assembly / Common Artifact Filters issues and defect

2021-11-16 Thread Slawomir Jaranowski
Hi, Thanks for reporting. Does your issue is similar to [1] - If yes please comment, vote or if it is something else you can create a new issue. [1] https://issues.apache.org/jira/browse/MASSEMBLY-607 wt., 16 lis 2021 o 14:51 Václav Haisman napisał(a): > Hi. > > I think I found a defect in

Re: Different parent/child configuration without child located customization?

2021-11-26 Thread Slawomir Jaranowski
Hi, Try something like in parent pom maven-failsafe-plugin 3.0.0-M5 test-id

Re: Different parent/child configuration without child located customization?

2021-11-26 Thread Slawomir Jaranowski
;http://rmannibucau.wordpress.com> | Github < > https://github.com/rmannibucau> | > LinkedIn <https://www.linkedin.com/in/rmannibucau> | Book > < > https://www.packtpub.com/application-development/java-ee-8-high-performance > > > > > Le ven. 26 nov.

Surefire - multiple tests framework on classpath

2021-11-02 Thread Slawomir Jaranowski
Hi, When multiple test frameworks are present on project classpath surefire chooses one framework for running the tests. In such situations, some tests are silently skipped. I've created issue [1] for it with a simple proposition. After discussion on slack another proposition was in place to

Re: Prepare maven-plugin-tools release 3.6.2

2021-11-02 Thread Slawomir Jaranowski
now which is your plugin, > but you may need some similar change like this: > https://github.com/schrepfler/jira-maven-plugin/pull/178 > > HTH > T > > On Sun, Oct 31, 2021 at 10:33 AM Slawomir Jaranowski < > s.jaranow...@gmail.com> > wrote: > > > Hi > &g

Re: Maven Code Style and imports layouts

2021-10-26 Thread Slawomir Jaranowski
hile back. > This will help new contributors a lot. > > Thanks for your efforts! > > On Mon, 18 Oct 2021, 07:10 Slawomir Jaranowski, > wrote: > > > Hi, > > > > In order to help make decisions, I prepared PR [1] with the most used > order > > layout in Maven Core

Re: Eat our own dogfood

2021-11-09 Thread Slawomir Jaranowski
Hi, Good idea. One of the resolutions can be to use maven wrapper to configure the Maven version to use, and use wrapper to build a project. Such a solution can be easily used in any CI system. Using a wrapper we simply download the latest build and deployed Maven version from the repository,

Re: Surefire - multiple tests framework on classpath

2021-11-03 Thread Slawomir Jaranowski
me logic and JUnit5 deps may activate one provider > for both the junit4 and 5. > > T > > On Tue, Nov 2, 2021 at 7:46 PM Slawomir Jaranowski > > wrote: > > > Hi, > > > > When multiple test frameworks are present on project classpath surefire > > choos

Re: GitHub Actions on Maven projects

2021-11-07 Thread Slawomir Jaranowski
for supporting me. [1] https://github.com/apache/maven-gh-actions-shared [2] https://github.com/search?l=YAML=%22apache%2Fmaven-gh-actions-shared%2F%22=Code czw., 7 paź 2021 o 19:41 Slawomir Jaranowski napisał(a): > Ok, > > if we want have to implement shared Github Action (I hope we

Dependabot and jira issues

2021-11-07 Thread Slawomir Jaranowski
Hi, Dependabot is a very useful tool as we know. Most of (probably all) Maven / ASF projects have dedicated jira projects to track changes. When we create PR with jira issue reference in the PR title then "ASF GitHub Bot" links PR with jira issue. Maybe it will be useful (posible) when

Re: Prepare maven-plugin-tools release 3.6.2

2021-10-31 Thread Slawomir Jaranowski
Hi I tried in my plugin recommendation from https://issues.apache.org/jira/browse/MPLUGIN-370 I put in the provided scope all org.apache.maven:maven-* artifacts I use in plugin org.sonatype.plexus.components.sec.dispatcher.SecDispatcher which is in org.sonatype.plexus:plexus-sec-dispatcher

Re: Empty jars in local .m2/repository

2021-12-01 Thread Slawomir Jaranowski
AV affected corporation, but still, do > you use any MRM (and if yes, which one?) > > Thanks > T > > > On Wed, Dec 1, 2021 at 12:23 PM Slawomir Jaranowski < > s.jaranow...@gmail.com> > wrote: > > > Hi, > > > > From time to time I have jars i

Re: Empty jars in local .m2/repository

2021-12-01 Thread Slawomir Jaranowski
ication-development/java-ee-8-high-performance > > > > > Le mer. 1 déc. 2021 à 12:23, Slawomir Jaranowski > a > écrit : > > > Hi, > > > > From time to time I have jars in .m2/repository of size 0. > > > > Probably some network issues are the r

Re: reviewing Maven Wrapper before releasing

2021-12-08 Thread Slawomir Jaranowski
Next question: - why use java 5 in maven-wrapper module .. it is not possible build with java > 8 [1] [1] https://ci-maven.apache.org/job/Maven/job/maven-box/job/maven-wrapper/job/master/ śr., 8 gru 2021 o 19:05 Hervé BOUTEMY napisał(a): > Le mercredi 8 décembre 2021, 15:52:46 CET Robert

  1   2   3   4   5   6   7   8   9   >