Details
-
Type:
Bug
-
Status:
Open
-
Priority:
Critical
-
Resolution: Unresolved
-
Affects Version/s: 2.1.0
-
Fix Version/s: Issues to be reviewed for 3.x
-
Component/s: Profiles
-
Labels:None
-
Environment:Windows Vista
-
Complexity:Intermediate
Description
When running a submodule in its own directory properties form a parent profiles.xml are honored.
Trying to build in the parent, this properties are not honored. The properties are not replaced.
I get this result with help:effective-pom. See the ${appletkeyalias} instead of the proper replacment.
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<keystore>../${keystore}</keystore>
<alias>${appletkeyalias}</alias>
<storepass>${keystorepass}</storepass>
<jarPath>C:\Users\widerstand_2\Documents\mobifetch\apps\coupon\j2se
coupon-install-applet\target/coupon-install-applet-1.0.2-SNAPSHOT-jar-with-depe
dencies.jar</jarPath>
<signedjar>C:\Users\widerstand_2\Documents\mobifetch\apps\coupon\j2
e\coupon-install-applet\target/signed/coupon-install-applet-1.0.2-SNAPSHOT-jar-
ith-dependencies.jar</signedjar>
<verify>true</verify>
</configuration>
</plugin>
Karsten, could you provide a minimal test project that demonstrates the issue?