Skip to content

Commit

Permalink
Merge pull request #4 from continuumsecurity/feature/CON-462
Browse files Browse the repository at this point in the history
Feature/con 462
  • Loading branch information
areyes-cs authored Apr 15, 2020
2 parents 5d5631f + 401bcf9 commit 6bc0af7
Show file tree
Hide file tree
Showing 3 changed files with 154 additions and 140 deletions.
1 change: 0 additions & 1 deletion IriusRiskClientExample.java → IriusRiskClient.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/*
* Copyright (c) 2012-2020 Continuum Security. All rights reserved
*/
package com.iriusrisk.client;

import com.iriusrisk.ApiException;
import com.iriusrisk.api.ProductsApi;
Expand Down
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,13 @@ IriusRisk client Java library
To generate a jar file:

mvn package

A library called iriusrisk-client-lib-0.1-SNAPSHOT-jar-with-dependencies.jar will be ready to be used.

To use the library in a Maven project add the following dependency after execute "mvn install" instead of "mvn package":

<dependency>
<groupId>com.iriusrisk</groupId>
<artifactId>iriusrisk-client-lib</artifactId>
<version>0.1-SNAPSHOT</version>
</dependency>
283 changes: 144 additions & 139 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,140 +1,145 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.iriusrisk</groupId>
<artifactId>iriusrisk-client-lib</artifactId>
<packaging>jar</packaging>
<version>0.1-SNAPSHOT</version>
<name>iriusrisk-client-lib</name>
<url>http://maven.apache.org</url>
<build>
<defaultGoal>package</defaultGoal>
<plugins>

<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<!-- activate the plugin -->
<plugin>
<groupId>io.swagger</groupId>
<artifactId>swagger-codegen-maven-plugin</artifactId>
<version>2.4.13</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<!-- specify the swagger yaml -->
<inputSpec>swagger.yaml</inputSpec>

<!-- target to generate java client code -->
<language>java</language>

<!-- hint: if you want to generate java server code, e.g. based on Spring Boot,
you can use the following target: <language>spring</language> -->

<!-- pass any necessary config options -->
<configOptions>
<dateLibrary>joda</dateLibrary>
<apiPackage>com.iriusrisk.api</apiPackage>
<modelPackage>com.iriusrisk.model</modelPackage>
<artifactVersion>1</artifactVersion>
<groupId>com.iriusrisk</groupId>
<artifactId>iriusrisk-client-lib</artifactId>
</configOptions>

<!-- override the default library to jersey2 -->
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<!-- dependencies are needed for the client being generated -->

<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-annotations</artifactId>
<version>${swagger-annotations-version}</version>
</dependency>

<!-- You can find the dependencies for the library configuation you chose by looking in JavaClientCodegen.
Then find the corresponding dependency on Maven Central, and set the versions in the property section below -->

<!--
Swagger Codegen supports the following Client implementations:
jersey1 + Jackson
Jersey2 + Jackson
Feign + Jackson
*** OkHttp + Gson ***
Retrofit2/OkHttp + Gson
Spring RestTemplate + Jackson
Resteasy + Jackson
Ref: https://stackoverflow.com/questions/57545884/how-to-develop-a-simple-rest-client-using-swagger-codegen
-->

<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gson-version}</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp</groupId>
<artifactId>okhttp</artifactId>
<version>${okhttp-version}</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp</groupId>
<artifactId>logging-interceptor</artifactId>
<version>${okhttp-logging-version}</version>
</dependency>
<dependency>
<groupId>io.gsonfire</groupId>
<artifactId>gson-fire</artifactId>
<version>${gson-fire-version}</version>
</dependency>

<!-- Base64 encoding that works in both JVM and Android -->
<dependency>
<groupId>com.brsanthu</groupId>
<artifactId>migbase64</artifactId>
<version>${migbase64-version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit-version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-joda</artifactId>
<version>${jackson-version}</version>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>${jodatime-version}</version>
</dependency>
</dependencies>

<properties>
<swagger-annotations-version>1.5.21</swagger-annotations-version>
<gson-version>2.8.6</gson-version>
<gson-fire-version>1.8.4</gson-fire-version>
<okhttp-version>2.7.5</okhttp-version>
<okhttp-logging-version>2.7.5</okhttp-logging-version>
<migbase64-version>2.2</migbase64-version>
<maven-plugin-version>1.0.0</maven-plugin-version>
<jackson-version>2.10.1</jackson-version>
<jodatime-version>2.7</jodatime-version>
<junit-version>4.13</junit-version>
</properties>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.iriusrisk</groupId>
<artifactId>iriusrisk-client-lib</artifactId>
<packaging>jar</packaging>
<version>0.1-SNAPSHOT</version>
<name>iriusrisk-client-lib</name>

<build>
<defaultGoal>package</defaultGoal>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>io.swagger</groupId>
<artifactId>swagger-codegen-maven-plugin</artifactId>
<version>2.4.13</version>
<executions>
<execution>
<goals>
<goal>generate</goal>
</goals>
<configuration>
<inputSpec>swagger.yaml</inputSpec>
<language>java</language>
<configOptions>
<dateLibrary>joda</dateLibrary>
<apiPackage>com.iriusrisk.api</apiPackage>
<modelPackage>com.iriusrisk.model</modelPackage>
<artifactVersion>1</artifactVersion>
<groupId>com.iriusrisk</groupId>
<artifactId>iriusrisk-client-lib</artifactId>
</configOptions>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-annotations</artifactId>
<version>${swagger-annotations-version}</version>
</dependency>

<!-- You can find the dependencies for the library configuation you chose by looking in JavaClientCodegen.
Then find the corresponding dependency on Maven Central, and set the versions in the property section below -->

<!--
Swagger Codegen supports the following Client implementations:
jersey1 + Jackson
Jersey2 + Jackson
Feign + Jackson
*** OkHttp + Gson ***
Retrofit2/OkHttp + Gson
Spring RestTemplate + Jackson
Resteasy + Jackson
Ref: https://stackoverflow.com/questions/57545884/how-to-develop-a-simple-rest-client-using-swagger-codegen
-->

<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gson-version}</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp</groupId>
<artifactId>okhttp</artifactId>
<version>${okhttp-version}</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp</groupId>
<artifactId>logging-interceptor</artifactId>
<version>${okhttp-logging-version}</version>
</dependency>
<dependency>
<groupId>io.gsonfire</groupId>
<artifactId>gson-fire</artifactId>
<version>${gson-fire-version}</version>
</dependency>

<!-- Base64 encoding that works in both JVM and Android -->
<dependency>
<groupId>com.brsanthu</groupId>
<artifactId>migbase64</artifactId>
<version>${migbase64-version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit-version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-joda</artifactId>
<version>${jackson-version}</version>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>${jodatime-version}</version>
</dependency>
</dependencies>

<properties>
<swagger-annotations-version>1.5.21</swagger-annotations-version>
<gson-version>2.8.6</gson-version>
<gson-fire-version>1.8.4</gson-fire-version>
<okhttp-version>2.7.5</okhttp-version>
<okhttp-logging-version>2.7.5</okhttp-logging-version>
<migbase64-version>2.2</migbase64-version>
<maven-plugin-version>1.0.0</maven-plugin-version>
<jackson-version>2.10.1</jackson-version>
<jodatime-version>2.7</jodatime-version>
<junit-version>4.13</junit-version>
</properties>
</project>

0 comments on commit 6bc0af7

Please sign in to comment.