properties-maven-plugin icon indicating copy to clipboard operation
properties-maven-plugin copied to clipboard

The Properties Maven Plugin

Results 24 properties-maven-plugin issues
Sort by recently updated
recently updated
newest added

Not sure if I'm doing something obviously wrong, but noticing odd behavior where nested placeholders aren't being properly parsed. Setting up the simple example: `local.properties` ``` defined.value=myValue some.value=${defined.value:${user.home}} ``` `pom.xml`...

Added a test case that exposes a bug when resolving a known value and using a placeholder in the default value. The following value: ```${knownValue:${fallback}}``` Where `knownValue=known value`, currently resolves...

Hi, We're using this plug in successfully to set system properties using execution configuration such as ``` set-system-properties javax.xml.accessExternalSchema all ``` Whilst this works fine building through maven on the...

It would be nice to be able to use something like: ``` core core 0.1.0 system ${variable}/core/target/core.jar ``` However this fails with: ``` 'dependencies.dependency.systemPath' for core:core:jar must specify an absolute...

Perhaps my expectations are incorrect but I would expect that if a property file is read in by the parent then those properties should be available to its children as...

I am trying to use this plugin to read version value from the properties file. I took a sample from official site: ``` org.codehaus.mojo properties-maven-plugin 1.1.0 initialize read-project-properties src/main/resources/version.properties ```...

I'm trying to read few exclusion rules from a external .properties file , so that I can keep my pom.xml clean. I tried using properties-maven-plugin but it fails to see...

I have the following pom file: ``` 4.0.0 test.properties properties 0.0.1-SNAPSHOT pom scm:svn:http://mysvnserver/repo org.codehaus.mojo properties-maven-plugin 1.0.0 initialize read-project-properties maven.build.properties org.apache.maven.plugins maven-scm-plugin 1.9.4 ConfigScripts generate-sources ${workspaces}/${workspace}/${project.build.plugins[1].executions[0].id} ${ConfigScripts.branch}/${project.build.plugins[1].executions[0].id} branch ${SCM.goals} profile generate-sources...

Hey, I cannot figure it out and just wanted to know how precedence works here. Say I have multiple files: ``` src/main/resources/application.properties src/main/resources/${env}.properties ``` and I want to use application.properties...

#### Summary properties-maven-plugin in version 1.2.0 with the goal read-project-properties does not override existing properties even if override is explicitly set to true #### Environment - Plugin version 1.2.0 -...