Following command builds Java component to ncmp-dmi-plugin/target/ncmp-dmi-plugin-x.y.z-SNAPSHOT.jar
JAR file without generating any docker images:
mvn clean install -Djib.skip
mvn clean install
docker-compose/docker-compose.yml
file is provided to be run with docker-compose
tool and images previously built. It starts ncmp-dmi-plugin service.
Execute following command from docker-compose
folder:
Use one of the below types that has been generated in the local system's docker image list after the build.
docker-compose up -d or VERSION=<version> docker-compose up -d or DOCKER_REPO=<docker.repo> docker-compose up -d or VERSION=<version> DOCKER_REPO=<docker_repo> docker-compose up -d
dmi-plugin can be started either using a Java Archive previously built or directly from Intellij IDE.
Following command starts the application using JAR file:
CPS_USERNAME=cpsuser CPS_PASSWORD=cpsr0cks! \ java -jar ncmp-dmi-plugin/target/ncmp-dmi-plugin-x.y.z-SNAPSHOT.jar
Here are the steps to run or debug the application from Intellij:
Run -> Edit configurations
with following settings:Environment variables
: CPS_USERNAME=cpsuser CPS_PASSWORD=cpsr0cks!
Swagger UI and Open API specifications are available to discover service endpoints and send requests.
http://localhost:<port-number>/swagger-ui/index.html
http://localhost:<port-number>/v3/api-docs?group=dmi-plugin-docket
with being either 8080
if running the plain Java build or retrieved using following command if running from docker-compose
:
docker inspect \ --format='{{range $p, $conf := .NetworkSettings.Ports}} {{$p}} -> {{(index $conf 0).HostPort}} {{end}}' \ <dmi-plugin-docker-container>