I managed to find a solution to my problem, but I'd like to understand why I had to do what I did, any other relevant background.
I'm working on a Maven multi-project build that produces OSGi bundles, with about 48 projects in the entire build.
Some…
I want to configure a manual file deployment to a remote repository using either the snapshot repository (using configured property project.distributionManagement.snapshotRepository.url) if the current version of the project is a snapshot version or…
I am currently trying to deploy a javafx native bundle. While this basically works fine it won´t deploy to any location given to by a contructed property using build-helper-maven-plugin and its regex-property goal.
Here´s my…
I want to replace a property in Maven based on a regex. For that I am using the regex-property plugin. Property will contain space-separated entries and I need to create a xml "node" from each of them.
"C:\some\entry D:\another\entry"
…
I have added the mojo's plugin build-helper to my project pom to generate a new test source folder for my integration tests. When I run the phase, generate-test-sources
mvn generate-test-sources
I could see the below console output showing the…
I'm looking to follow the advice in the book Spring in Practice chapter 10 on creating separate directories for unit tests and integration tests using the Build Helper plugin in Maven. I'm working in Spring Tool Suite trying to add integration tests…
I have my environment specific property files in main/src/env/dev, qa, prod, etc. and I want to include them in my myProject-sources.jar. What I cannot figure out is how to get the "env" folder to be included. Right now I get dev, qa, and prod…