Skip to content

v0.9.0

Choose a tag to compare

@mlookaxw mlookaxw released this 31 Oct 02:16
· 52 commits to master since this release

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:

  1. File specified by axway.config.props property.
  2. Files specified in the element.
  3. Files specified by axway.config.props.files property.

If a property exists in multiple property files the value of from the last property file is used.