Francesco Chicchiriccò created SYNCOPE-220:
----------------------------------------------
Summary: When running in embedded mode, CSVDir configuration shows
unresolved ${urlencoded.csvdir.path} property
Key: SYNCOPE-220
URL: https://issues.apache.org/jira/browse/SYNCOPE-220
Project: Syncope
Issue Type: Bug
Components: archetype
Affects Versions: 1.0.2-incubating
Reporter: Francesco Chicchiriccò
Priority: Minor
Fix For: 1.0.3-incubating, 1.1.0-incubating
When generating a new Syncope project and launching with 'mvn -P embedded', an
unresolved property is shown in CSVDir connector configuration:
{urlencoded.csvdir.path}
This happens because generated overlay's core/pom.xml does not contain the
following plugin (as done instead by source core/pom.xml):
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<inherited>true</inherited>
<executions>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>execute</goal>
</goals>
<configuration>
<source>
project.properties['urlencoded.csvdir.path'] =
java.net.URLEncoder.encode(project.properties['test.csvdir.path'])
</source>
</configuration>
</execution>
</executions>
</plugin>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira