Release v1.1.0
Bugs
#52: Config Tool - error in case of non existing configuration file
In case the entity field configuration file doesn’t exist the following error occurs:
AttributeError: EnvConfig instance has no attribute '_EnvConfig__origin_json_str'
This is fixed. If the configuration file doesn’t exists the file will be created automatically.
Features
#45: Docker capabilities
#51: Customized Version
Customized version name for .pol and .fed packages.
A new property axway.project.version is introduced to customize the version of .pol and .fed packages. As default the value will be set to ${project.version}. The version can be overwritten by a command line property or by a defined property within the pom.xml.
Example
Command line
$ mvn clean package -Daxway.project.version="${project.version}-BN20201031"
pom.xml
<properties>
<axway.project.version>${project.version}-BN20201031</axway.project.version>
</properties>
#53: Support boolean values in property files
The property configuration now supports JSON boolean values (see example below).
{
"properties": {
"enabled": false
}
}