jira-importer
jira-importer
**[Tamas Cservenak](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=cstamas)** commented Isn't something like this (just throwing ideas, not test) what you really want? And no need for plugin or anythig: ``` $REVISION=`git rev-parse HEAD` && mvn install...
**[Jimisola Laursen](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=JIRAUSER281352)** commented This was quite a downer sadly as dynamic versioning would simplify a lot of things for us in our CI/CD. No, there is quite some logic behind...
**[Tamas Cservenak](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=cstamas)** commented Try this: https://github.com/maveniverse/nisse Note: jgit-source is trivial, not (yet) what you want, but PRs are welcome!
**[Jimisola Laursen](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=jimisola)** commented Wow. Thanks. I'll do. Currently, on a deadline with test tool at work but I'll look at it next week for sure and see I can migrate...
**[Jimisola Laursen](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=jimisola)** commented We always want to be able use Maven in the same manner locally as in our CI/CD. Sometimes we use profiles (e.g. time consuming goals) that aren't...
**[Tamas Cservenak](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=cstamas)** commented [Jimisola Laursen](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=jimisola) Well, I do hope you talk about your own projects ("in shop" projects), as then the `.mvn/extensions.xml` solution could be very easily implemented, no? That...
**[Jimisola Laursen](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=JIRAUSER281352)** commented I think I found a solution for us using MAVEN_ARGS, but I'll have to test it so that MAVEN_ARGS can be used to point out a core...
**[Jimisola Laursen](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=JIRAUSER281352)** commented I tried ```java mvn dependency:copy -Dartifact=eu.maveniverse.maven.nisse:extension3:0.1.1 -DoutputDirectory=/tmp/maven-core-extensions-test/extension3-0.1.1.jar $MAVEN_ARGS="-Dmaven.ext.class.path=/tmp/maven-core-extensions-test/extension3-0.1.1.jar" mvn eu.maveniverse.maven.plugins:toolbox:dump -Dverbose -N ``` I don't get any nisse user properties (my maven.ext.class.path is set to extension3 per...
**[Tamas Cservenak](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=cstamas)** commented It does not work like it, ext classpath does not resolve, it needs full transitive hull. Example https://gist.github.com/cstamas/d4850aa724c46940a41295e9f124863b (if not obvious: copy-paste gav-classpath output to -Dmaven.ext.class.path)
**[Jimisola Laursen](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=JIRAUSER281352)** commented Ok. Thanks for the info. So, being able to specify extensions using GAV in settings.xml would be really use full then. Might be able to use maven-shade...