- Maven plugin is used to create fed, pol and env files
This artefact was successfully tested for the following versions:
- Axway AMPLIFY API Management 7.5.3 and 7.6.2
- Axway AMPLIFY API Management 7.5.3 or above
- JDK 1.8.0_xxx
- Apache Maven 3.3.9 or above
$mvn clean install
<plugin>
<groupId>com.axway</groupId>
<artifactId>fed-archive</artifactId>
<version>1.0-SNAPSHOT</version>
<extensions>true</extensions>
<executions>
<execution>
<id>pol</id>
<phase>package</phase>
<goals>
<goal>pol</goal>
</goals>
</execution>
</executions>
<configuration>
<name>${archive.name}</name>
<targetPassphrase></targetPassphrase>
<targetPassphrase></targetPassphrase>
<projpackPath>/opt/Axway/APIM/apigateway/posix/bin/projpack</projpackPath>
<polFilePath></polFilePath>
</configuration>
</plugin>
<plugin>
<groupId>com.axway</groupId>
<artifactId>fed-archive</artifactId>
<version>1.0-SNAPSHOT</version>
<extensions>true</extensions>
<executions>
<execution>
<id>fed</id>
<phase>package</phase>
<goals>
<goal>fed</goal>
</goals>
</execution>
</executions>
<configuration>
<name>${archive.name}</name>
<targetPassphrase></targetPassphrase>
<targetPassphrase></targetPassphrase>
<projpackPath>/opt/Axway/APIM/apigateway/posix/bin/projpack</projpackPath>
<polFilePath></polFilePath>
</configuration>
</plugin>
Please read Contributing.md for details on our code of conduct, and the process for submitting pull requests to us.