Skip to content

Axway-API-Management-Plus/apigw-maven-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Maven Plugin for API Gateway Policy Development

apigw maven plugin?style=plastic apigw maven plugin?style=plastic

Start with Why

Working as a team on policy development has some challenges. Even if PolicyStudio supports team development it requires manual effort to manage dependencies and to keep the sources in sync. Using shared policies is done by including source code folders. But there is no defined way of how to locate the folders and how to version the source code (especially if they are located in separate SCM repositories). This also makes it difficult to share policies between different teams or within a community.

Environmentalization is used to develop policies or gateways, independent of the target environment. The configuration is done with ConfigurationStudio as a separate step. But, as it is a GUI based application, detecting unconfigured fields is a manual and error prone process. Configuration issues are detected at runtime and not at build time.

The goal of this project is to make the life of a policy developer and gateway administrator easier by extending the power of Apache Maven with a plugin for Axway API Gateway.

The vision of the project is also to support a "marketplace" (Maven repository) of shared policies. Shared policies can be used by other projects just by adding the dependency to the project description. Everything else is handled by the plugin.

📎

The plugin focuses on policy development and API Gateway configuration. Promotion of APIs, as in the context of API Management, is not in scope of this project. If you are looking for automatic API promotion, please checkout APIM CLI.

Principles and Goals

  1. The truth is in the source code management (SCM).

  2. Every development starts at the source code of the SCM.

  3. The outcome of a project is a versioned artifact.

  4. An artifact contains all required resources.

  5. Versioned artifacts are immutable (except SNAPSHOT versions).

  6. Dependencies between artifacts are managed by Maven pom.xml files.

  7. Artifacts are stored in Maven repositories.

  8. Support automatic build and configuration (DevOps support).

  9. Configuration issues shall be detected at build time.

  10. Easy team development without copy & paste or fragment import.

Project Types

The plugin supports three kind of API Gateway projects:

Project Type Generated Artifact Description

Policy Project

Policy Archive

  • policy directory (as generated by PolicyStudio)

  • static files

Shared and reusable policies. No sever settings are included in the project. Policy projects may depend on other policy projects or external libraries (JARs).

Server Project

Server Archive

  • .pol file

  • .env file

  • static files

  • external libraries (JARs)

Policies including server settings. Server projects may depend on other policy projects or external libraries (JARs). Server projects are environment independent.

Deployment Project

Deployment Archive

  • .fed file (environment specific)

  • static files

  • external libraries (JARs)

Configures the environment independent server projects for a specific environment or group. A deployment project depends on exactly one server project.

Features

  • Manage dependencies via Maven pom.xml

  • Initialize policy and server projects with default factory templates.

  • Start PolicyStudio via Maven goal

    • Project dependencies of PolicyStudio are configured from pom.xml file.

    • "Recent Projects" of PolicyStudio is initialized to open current project.

    • Each project has a separate PolicyStudio configuration (running multiple PolicyStudio instances is supported).

  • Configure environmentalized fields via JSON configuration.

  • Support of separate property file for credentials.

  • Check for unconfigured environmentalize fields (build fails in case of unconfigured fields).

  • Add or replace certificates by alias via JSON configuration.

  • Check of certificate expiration.

  • Deploy projects to gateway via plugin.

Installation

Build & Install

git clone https://github.com/Axway-API-Management-Plus/apigw-maven-plugin.git
cd apigw-maven-plugin
mvn clean install

Download & Install

To download and install the plugin you could use the following script:

install-apigw-maven-plugin.sh
#!/bin/bash
set -euo pipefail

APIGW_MVN_PLUGIN_VER=1.2.1

APIGW_MVN_PLUGIN="apigw-maven-plugin-${APIGW_MVN_PLUGIN_VER}"
APIGW_MVN_PLUGIN_JAR="${APIGW_MVN_PLUGIN}.jar"
APIGW_MVN_PLUGIN_POM="${APIGW_MVN_PLUGIN}.pom"

GITHUB_RELEASES="https://github.com/Axway-API-Management-Plus/apigw-maven-plugin/releases/download/v${APIGW_MVN_PLUGIN_VER}"

# Download artifacts
wget -nv "${GITHUB_RELEASES}/${APIGW_MVN_PLUGIN_JAR}" -O "${APIGW_MVN_PLUGIN_JAR}"
wget -nv "${GITHUB_RELEASES}/${APIGW_MVN_PLUGIN_POM}" -O "${APIGW_MVN_PLUGIN_POM}"

# Install plugin
mvn install:install-file -Dfile="${APIGW_MVN_PLUGIN_JAR}" -DpomFile="${APIGW_MVN_PLUGIN_POM}"

Known Limitations

  • Documentation is not complete.

  • Automatic adding of dependent JARs to PolicyStudio is currently not supported (on the road map).

  • Environmentalized fields containing references are not supported.

  • Unconfigured envSettings are not detected.

Contributing

Please read Contributing for details on our code of conduct, and the process for submitting pull requests to us.

Team

Axway Logo Axway Team