GithubHelp home page GithubHelp logo

isabella232 / vaultjavasdk-maven-plugin Goto Github PK

View Code? Open in Web Editor NEW

This project forked from veeva/vaultjavasdk-maven-plugin

0.0 0.0 0.0 644 KB

Maven plugin for packaging, validating, importing, and deploying Vault Java SDK code.

License: Apache License 2.0

Java 100.00%

vaultjavasdk-maven-plugin's Introduction

Vault Java SDK Maven Plugin

This Maven plugin provides an easy to use set of commands to package, validate, import, and deploy Vault Java SDK source code through the use of defined Maven goals.

Setup

The Maven plugin must be installed locally to be used in a Vault Java SDK project.

  1. Install Maven on your computer.
  2. Download/clone the vaultjavasdk-maven-plugin project.
  3. The plugin can either be installed by importing the Maven project into an IDE or be installing the jar file directly:
    • Import the project and select the Maven "install" goal. The JDK for the project must be set to Java 1.8+

    • Install the target/vaultjavasdk-maven-plugin-1.0.2.jar directly. The project pom.xml is used to install the plugin:

      mvn install:install-file -Dfile="{{PROJECT_DIRECTORY_PATH}}\target\vaultjavasdk-maven-plugin-1.0.2.jar" -DpomFile="{{PROJECT_DIRECTORY_PATH}}\pom.xml"

Configuration

To make the Maven plugin available in a Vault Java SDK project, add the following to the project's pom.xml file. The configuration properties can be set in either the pom.xml or as parameters when running the goals.

Configuration Parameters:

<vaultUrl> - a vault’s DNS host name (e.g. vaulturl.veevavault.com with no HTTPS://)
<userName> - the vault user name to use for authentication required for using the import, deploy, and validate goals
<password> - the password for user specified above. 

      ** As a best practice, it is recommended that the password is input through the command line or via an IDE build parameter. 
      ** In general, you should avoid saving the password in the pom.xml file when possible. 
	     
<sessionId> - optional, an authenticated live user session id used instead of providing userName/password credentials
<apiVerision> - optional, defaults to v18.3
<package> - optional, define a custom VPK to deploy. The VPK must exist in '{{PROJECT_DIRECTORY_PATH}}/deployment/packages'
<packageId> - optional, deploy a specific imported package ID. To be used in conjunction with the vaultjavasdk:import goal. The ID can also be retrieved from the vault UI.
<source> - optional, specify packages or class source files to include in the VPK file; if omitted, all files in the project. This is list of parameters.
	<packages> - comma separated list of package names from the project
	<classes> - comma separated list of fully qualified java file names

The pom.xml configuration:


    <properties>
     		<vaultUrl>vaulturl.veevavault.com</vaultUrl>
    		<username>[email protected]</username>
    		<password></password>
    		<sessionId></sessionId>
    		<source.packages></source.packages>
    		<source.classes></source.classes>
    </properties>
    
    <build>    
        <plugins>
        	<plugin>
        		<groupId>com.veeva.vault.sdk</groupId>
	        	<artifactId>vaultjavasdk-maven-plugin</artifactId>
	        	<configuration>
	        		<vaultUrl>${vaultUrl}</vaultUrl>
	        		<username>${username}</username>
	        		<password>${password}</password>
	        		<sessionId>${sessionId}</sessionId>
	        		<source>
	        			<packages>${source.packages}</packages>
	        			<classes>${source.classes}</classes>
	        		</source>
	        		<apiVersion>v18.3</apiVersion>
	        	</configuration>
        	</plugin>
        </plugins>
    </build>    

Maven Goals

The following goals are provided by the plugin.

  • vaultjavasdk:clean - removes all files in the “deployment” folder in the maven project. This folder contains VPK files and vaultpackage.xml file created by this plugin.

  • vaultjavasdk:package - generates a VPK file in the "deployment/packages" directory.

    • VPK file name format: code_package_{mm-dd-yyyy}_{num}.vpk
    • If the directory does not exist, it will be created.
    • If a VPK already exists, increment {mm-dd-yyyy} and/or {num}
    • Source files under the “javasdk/src/main/java/com/veeva/vault/custom” folder in the project are zipped into a VPK file.
  • vaultjavasdk:deploy - validates, imports, and deploys the last modified VPK in the "deployment/packages" directory it to a vault. This uses the Validation Endpoint, Import Package Endpoint, and Deploy Package Endpoint.

  • vaultjavasdk:validate - validates the last modified VPK in the "deployment/packages" directory against the Validation Endpoint.

  • vaultjavasdk:import - validates and imports the last modified VPK in the "deployment/packages" directory to a vault. This is optional and is intended for verifying package in Vault Admin UI before deploying via the Vault Admin UI. This uses the Validation Endpoint and Import Package Endpoint.

Notes

  1. The validate, import, and deploy goals will pick up the last modified ".vpk" file in the "deployment/packages" folder. This means that you can craft your own custom VPK files provided they are the last modified ".vpk" file in the "deployment/packages" folder.
  2. The package goal won't replace the "vaultpackage.xml" file in the "deployment" folder. You can modify values in this file to meet your needs.
  3. The package goal is run separately from the import, deploy, and validate goals. This means that any code changes will require a "vaultjavasdk:package" before running an import, deploy, or validate if you want to pick up the latest code.

How to run

You can either configure the goals in your IDE or run them directly through the Maven command line. The following example is for running the clean, package, and then deploy goals through the command line when the parameters are not configured in the pom.xml:

  • Navigate to your project's base directory (where the pom.xml is located) and execute the following:

    mvn vaultjavasdk:clean vaultjavasdk:package vaultjavasdk:deploy -Dusername=[email protected] -Dpassword=test0000 -DvaultUrl=testurl.veevavault.com

Other Goal Examples

  • Custom VPK package

    mvn vaultjavasdk:deploy -Dpackage=custom_package.vpk -Dusername=[email protected] -Dpassword=test0000 -DvaultUrl=testurl.veevavault.com

  • Import and then Deploy

    mvn vaultjavasdk:import -Dusername=[email protected] -Dpassword=test0000 -DvaultUrl=testurl.veevavault.com

    Import response - use the "Package Id" for the deployment:

    Import Package Request: https://testurl.veevavault.com/api/v18.3/services/package   
    Package: {{PROJECT_DIRECTORY_PATH}}\deployment\packages\code_package_xxxx-xx-xx.vpk
    Successfully imported [{{PROJECT_DIRECTORY_PATH}}\deployment\packages\code_package_xxxx-xx-xx.vpk]
    Package Name: PKG-project-name
    Package Id: 0PI000000000XXX
    

    mvn vaultjavasdk:deploy -DpackageId=0PI000000000XXX -Dusername=[email protected] -Dpassword=test0000 -DvaultUrl=testurl.veevavault.com

License

This code serves as an example and is not meant for production use.

Copyright 2018 Veeva Systems Inc.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

vaultjavasdk-maven-plugin's People

Contributors

kevinn-veeva avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.