v0.9.0
Bugs
- #22: Passpharse bug fixed on using API Gateway 7.6.2
Changes
- #24: Logging used for Python scripts instead of 'print'.
Features
#23: Multiple Property Files
Additionally to the axway.config.props property, property files can be configured via the element of the element or via the axway.config.props.files property.
pom.xml
<plugin>
<groupId>com.axway.maven.plugins</groupId>
<artifactId>apigw-maven-plugin</artifactId>
<version>${axway.maven.plugin.ver}</version>
<extensions>true</extensions>
<configuration>
<configPropertyFiles>
<configPropertyFile>${basedir}/a.json</configPropertyFile>
<configPropertyFile>${basedir}/b.json</configPropertyFile>
</configPropertyFiles>
</configuration>
</plugin>Command Line
$ mvn package -Daxway.config.props.files=c.json,d.json
The files are used in the following order:
- File specified by
axway.config.propsproperty. - Files specified in the element.
- Files specified by
axway.config.props.filesproperty.
If a property exists in multiple property files the value of from the last property file is used.