-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from continuumsecurity/feature/CON-462
Feature/con 462
- Loading branch information
Showing
3 changed files
with
154 additions
and
140 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |