Skip to content

Commit fb687d9

Browse files
committed
ID-20: fix support for APIGW 7.5.3
1 parent d2ac6ca commit fb687d9

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

CHANGELOG.adoc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
= Changelog
22

3+
== Version 0.8.1
4+
[cols="1,2,<10a", options="header"]
5+
|===
6+
|ID|Type|Description
7+
|https://github.com/Axway-API-Management-Plus/apigw-maven-plugin/issues/20[#20]
8+
|Fix
9+
|Configuration tool now supports API Gateway 7.5.3
10+
11+
|===
12+
313
== Version 0.8.0
414
[cols="1,2,<10a", options="header"]
515
|===

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
<groupId>com.axway.maven.plugins</groupId>
2121
<artifactId>apigw-maven-plugin</artifactId>
22-
<version>0.8.0</version>
22+
<version>0.8.1-SNAPSHOT</version>
2323
<packaging>maven-plugin</packaging>
2424

2525
<name>Axway API Gateway Maven Plugin</name>

src/main/resources/scripts/lib/fedconfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def __init__(self, pol_archive_path, env_archive_path, config_path, cert_config_
3030
self.__passphrase_in = passphrase
3131
self.__pol_archive = PolicyArchive(pol_archive_path)
3232
self.__env_archive = EnvironmentArchive(env_archive_path)
33-
self.__fed_archive = DeploymentArchive(self.__pol_archive, self.__env_archive, self.__passphrase_in)
33+
self.__fed_archive = DeploymentArchive(self.__pol_archive, self.__env_archive)
3434
self.__config = EnvConfig(config_path, property_path)
3535

3636
if cert_config_path is not None:

0 commit comments

Comments
 (0)