jira-importer
jira-importer
Resolve #1438
**[Björn Michael](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=mtomcat_daobi)** commented Examples with _skip_ parameter * [spring-boot:repackage](https://docs.spring.io/spring-boot/docs/current/maven-plugin/repackage-mojo.html#skip) * [assembly:single](https://maven.apache.org/plugins/maven-assembly-plugin/single-mojo.html#skipAssembly) * [jar:test-jar](https://maven.apache.org/plugins/maven-jar-plugin/test-jar-mojo.html#skip) * [war:war](https://maven.apache.org/plugins/maven-war-plugin/war-mojo.html#skip)
**[Robert Scholte](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=rfscholte)** commented I am aware that there are a lot of plugins with the skip-parameter and that the code is quite simple to add, but it is in general...
**[Jonathan Haber](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=jhaber)** commented We have over 6,000 modules within our codebase, roughly 2,400 of which are packaged for deployment. Embedding this sort of logic directly in each of these modules...
**[Robert Scholte](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=rfscholte)** commented Can you attach a small multimodule of poms and `.build-executable` to show how this works or should work. Sometimes code says more than text.
**[Björn Michael](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=mtomcat_daobi)** commented The best known example originates from Maven Surefire Plugin providing [skipTests](https://maven.apache.org/surefire/maven-surefire-plugin/test-mojo.html#skipTests) User property. IMO a new skip parameter would increase flexibilty a lot and would outweigh codesmell...
**[Jonathan Haber](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=jhaber)** commented I pushed an example project to GitHub here: https://github.com/jhaber/MSHADE-251 If you want to play with it, you can clone it and run "mvn clean verify" from the...
**[Björn Michael](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=mtomcat_daobi)** commented A _skip_ parameter exists in several plugins, is a common idiom in maven ecosystem and increases flexibility a lot. Furthermore changes to the code are little. Please...
**[Andreas Rauchberger](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=andiy)** commented i do see the \ parameter more or less as a default maven-plugin feature/&strategy. it really makes things easier. we do use the parent-pom-approach a lot to...
**[Delany](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=delany)** commented [Robert Scholte](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=rfscholte) again you raise the issue of code smells, but this is a usability issue. I want to add the plugin, get it into source and test...