forked from loafle/openapi-generator-original
update dependency for java client (#5926)
This commit is contained in:
parent
533d686bec
commit
747cd087b6
@ -68,7 +68,7 @@ if(hasProperty('target') && target == 'android') {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
provided 'javax.annotation:jsr250-api:1.0'
|
provided 'javax.annotation:javax.annotation-api:1.3.2'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -126,21 +126,21 @@ if(hasProperty('target') && target == 'android') {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile 'io.swagger:swagger-annotations:1.5.22'
|
compile 'io.swagger:swagger-annotations:1.5.24'
|
||||||
compile "com.google.code.findbugs:jsr305:3.0.2"
|
compile "com.google.code.findbugs:jsr305:3.0.2"
|
||||||
compile 'com.squareup.okhttp3:okhttp:3.14.2'
|
compile 'com.squareup.okhttp3:okhttp:3.14.7'
|
||||||
compile 'com.squareup.okhttp3:logging-interceptor:3.14.2'
|
compile 'com.squareup.okhttp3:logging-interceptor:3.14.7'
|
||||||
compile 'com.google.code.gson:gson:2.8.5'
|
compile 'com.google.code.gson:gson:2.8.6'
|
||||||
compile 'io.gsonfire:gson-fire:1.8.3'
|
compile 'io.gsonfire:gson-fire:1.8.4'
|
||||||
{{#hasOAuthMethods}}
|
{{#hasOAuthMethods}}
|
||||||
compile group: 'org.apache.oltu.oauth2', name: 'org.apache.oltu.oauth2.client', version: '1.0.1'
|
compile group: 'org.apache.oltu.oauth2', name: 'org.apache.oltu.oauth2.client', version: '1.0.1'
|
||||||
{{/hasOAuthMethods}}
|
{{/hasOAuthMethods}}
|
||||||
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'
|
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.10'
|
||||||
{{#joda}}
|
{{#joda}}
|
||||||
compile 'joda-time:joda-time:2.9.9'
|
compile 'joda-time:joda-time:2.9.9'
|
||||||
{{/joda}}
|
{{/joda}}
|
||||||
{{#threetenbp}}
|
{{#threetenbp}}
|
||||||
compile 'org.threeten:threetenbp:1.4.0'
|
compile 'org.threeten:threetenbp:1.4.3'
|
||||||
{{/threetenbp}}
|
{{/threetenbp}}
|
||||||
testCompile 'junit:junit:4.13'
|
testCompile 'junit:junit:4.13'
|
||||||
}
|
}
|
||||||
|
@ -9,11 +9,11 @@ lazy val root = (project in file(".")).
|
|||||||
publishArtifact in (Compile, packageDoc) := false,
|
publishArtifact in (Compile, packageDoc) := false,
|
||||||
resolvers += Resolver.mavenLocal,
|
resolvers += Resolver.mavenLocal,
|
||||||
libraryDependencies ++= Seq(
|
libraryDependencies ++= Seq(
|
||||||
"io.swagger" % "swagger-annotations" % "1.5.22",
|
"io.swagger" % "swagger-annotations" % "1.5.24",
|
||||||
"com.squareup.okhttp3" % "okhttp" % "3.14.2",
|
"com.squareup.okhttp3" % "okhttp" % "3.14.7",
|
||||||
"com.squareup.okhttp3" % "logging-interceptor" % "3.14.2",
|
"com.squareup.okhttp3" % "logging-interceptor" % "3.14.7",
|
||||||
"com.google.code.gson" % "gson" % "2.8.5",
|
"com.google.code.gson" % "gson" % "2.8.6",
|
||||||
"org.apache.commons" % "commons-lang3" % "3.9",
|
"org.apache.commons" % "commons-lang3" % "3.10",
|
||||||
{{#hasOAuthMethods}}
|
{{#hasOAuthMethods}}
|
||||||
"org.apache.oltu.oauth2" % "org.apache.oltu.oauth2.client" % "1.0.1",
|
"org.apache.oltu.oauth2" % "org.apache.oltu.oauth2.client" % "1.0.1",
|
||||||
{{/hasOAuthMethods}}
|
{{/hasOAuthMethods}}
|
||||||
@ -21,10 +21,11 @@ lazy val root = (project in file(".")).
|
|||||||
"joda-time" % "joda-time" % "2.9.9" % "compile",
|
"joda-time" % "joda-time" % "2.9.9" % "compile",
|
||||||
{{/joda}}
|
{{/joda}}
|
||||||
{{#threetenbp}}
|
{{#threetenbp}}
|
||||||
"org.threeten" % "threetenbp" % "1.4.0" % "compile",
|
"org.threeten" % "threetenbp" % "1.4.3" % "compile",
|
||||||
{{/threetenbp}}
|
{{/threetenbp}}
|
||||||
"io.gsonfire" % "gson-fire" % "1.8.3" % "compile",
|
"io.gsonfire" % "gson-fire" % "1.8.3" % "compile",
|
||||||
"javax.annotation" % "jsr250-api" % "1.0" % "compile",
|
"javax.annotation" % "javax.annotation-api" % "1.3.2" % "compile",
|
||||||
|
"com.google.code.findbugs" % "jsr305" % "3.0.2" % "compile",
|
||||||
"junit" % "junit" % "4.13" % "test",
|
"junit" % "junit" % "4.13" % "test",
|
||||||
"com.novocode" % "junit-interface" % "0.10" % "test"
|
"com.novocode" % "junit-interface" % "0.10" % "test"
|
||||||
)
|
)
|
||||||
|
@ -307,7 +307,7 @@
|
|||||||
{{/parcelableModel}}
|
{{/parcelableModel}}
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>javax.annotation</groupId>
|
<groupId>javax.annotation</groupId>
|
||||||
<artifactId>jsr250-api</artifactId>
|
<artifactId>javax.annotation-api</artifactId>
|
||||||
<version>${javax-annotation-version}</version>
|
<version>${javax-annotation-version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- test dependencies -->
|
<!-- test dependencies -->
|
||||||
@ -322,19 +322,18 @@
|
|||||||
<java.version>{{#supportJava6}}1.6{{/supportJava6}}{{^supportJava6}}{{#java8}}1.8{{/java8}}{{^java8}}1.7{{/java8}}{{/supportJava6}}</java.version>
|
<java.version>{{#supportJava6}}1.6{{/supportJava6}}{{^supportJava6}}{{#java8}}1.8{{/java8}}{{^java8}}1.7{{/java8}}{{/supportJava6}}</java.version>
|
||||||
<maven.compiler.source>${java.version}</maven.compiler.source>
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
||||||
<maven.compiler.target>${java.version}</maven.compiler.target>
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
||||||
<gson-fire-version>1.8.3</gson-fire-version>
|
<gson-fire-version>1.8.4</gson-fire-version>
|
||||||
<swagger-core-version>1.5.22</swagger-core-version>
|
<swagger-core-version>1.5.24</swagger-core-version>
|
||||||
<okhttp-version>3.14.2</okhttp-version>
|
<okhttp-version>3.14.7</okhttp-version>
|
||||||
<gson-version>2.8.5</gson-version>
|
<gson-version>2.8.6</gson-version>
|
||||||
<commons-lang3-version>3.9</commons-lang3-version>
|
<commons-lang3-version>3.10</commons-lang3-version>
|
||||||
{{#joda}}
|
{{#joda}}
|
||||||
<jodatime-version>2.9.9</jodatime-version>
|
<jodatime-version>2.9.9</jodatime-version>
|
||||||
{{/joda}}
|
{{/joda}}
|
||||||
{{#threetenbp}}
|
{{#threetenbp}}
|
||||||
<threetenbp-version>1.4.0</threetenbp-version>
|
<threetenbp-version>1.4.3</threetenbp-version>
|
||||||
{{/threetenbp}}
|
{{/threetenbp}}
|
||||||
<maven-plugin-version>1.0.0</maven-plugin-version>
|
<javax-annotation-version>1.3.2</javax-annotation-version>
|
||||||
<javax-annotation-version>1.0</javax-annotation-version>
|
|
||||||
<junit-version>4.13</junit-version>
|
<junit-version>4.13</junit-version>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
</properties>
|
</properties>
|
||||||
|
@ -52,7 +52,7 @@ if(hasProperty('target') && target == 'android') {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
provided 'javax.annotation:jsr250-api:1.0'
|
provided 'javax.annotation:javax.annotation-api:1.3.2'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -98,15 +98,15 @@ if(hasProperty('target') && target == 'android') {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile 'io.swagger:swagger-annotations:1.5.22'
|
compile 'io.swagger:swagger-annotations:1.5.24'
|
||||||
compile "com.google.code.findbugs:jsr305:3.0.2"
|
compile "com.google.code.findbugs:jsr305:3.0.2"
|
||||||
compile 'com.squareup.okhttp3:okhttp:3.14.2'
|
compile 'com.squareup.okhttp3:okhttp:3.14.7'
|
||||||
compile 'com.squareup.okhttp3:logging-interceptor:3.14.2'
|
compile 'com.squareup.okhttp3:logging-interceptor:3.14.7'
|
||||||
compile 'com.google.code.gson:gson:2.8.5'
|
compile 'com.google.code.gson:gson:2.8.6'
|
||||||
compile 'io.gsonfire:gson-fire:1.8.3'
|
compile 'io.gsonfire:gson-fire:1.8.4'
|
||||||
compile group: 'org.apache.oltu.oauth2', name: 'org.apache.oltu.oauth2.client', version: '1.0.1'
|
compile group: 'org.apache.oltu.oauth2', name: 'org.apache.oltu.oauth2.client', version: '1.0.1'
|
||||||
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'
|
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.10'
|
||||||
compile 'org.threeten:threetenbp:1.4.0'
|
compile 'org.threeten:threetenbp:1.4.3'
|
||||||
testCompile 'junit:junit:4.13'
|
testCompile 'junit:junit:4.13'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -9,15 +9,16 @@ lazy val root = (project in file(".")).
|
|||||||
publishArtifact in (Compile, packageDoc) := false,
|
publishArtifact in (Compile, packageDoc) := false,
|
||||||
resolvers += Resolver.mavenLocal,
|
resolvers += Resolver.mavenLocal,
|
||||||
libraryDependencies ++= Seq(
|
libraryDependencies ++= Seq(
|
||||||
"io.swagger" % "swagger-annotations" % "1.5.22",
|
"io.swagger" % "swagger-annotations" % "1.5.24",
|
||||||
"com.squareup.okhttp3" % "okhttp" % "3.14.2",
|
"com.squareup.okhttp3" % "okhttp" % "3.14.7",
|
||||||
"com.squareup.okhttp3" % "logging-interceptor" % "3.14.2",
|
"com.squareup.okhttp3" % "logging-interceptor" % "3.14.7",
|
||||||
"com.google.code.gson" % "gson" % "2.8.5",
|
"com.google.code.gson" % "gson" % "2.8.6",
|
||||||
"org.apache.commons" % "commons-lang3" % "3.9",
|
"org.apache.commons" % "commons-lang3" % "3.10",
|
||||||
"org.apache.oltu.oauth2" % "org.apache.oltu.oauth2.client" % "1.0.1",
|
"org.apache.oltu.oauth2" % "org.apache.oltu.oauth2.client" % "1.0.1",
|
||||||
"org.threeten" % "threetenbp" % "1.4.0" % "compile",
|
"org.threeten" % "threetenbp" % "1.4.3" % "compile",
|
||||||
"io.gsonfire" % "gson-fire" % "1.8.3" % "compile",
|
"io.gsonfire" % "gson-fire" % "1.8.3" % "compile",
|
||||||
"javax.annotation" % "jsr250-api" % "1.0" % "compile",
|
"javax.annotation" % "javax.annotation-api" % "1.3.2" % "compile",
|
||||||
|
"com.google.code.findbugs" % "jsr305" % "3.0.2" % "compile",
|
||||||
"junit" % "junit" % "4.13" % "test",
|
"junit" % "junit" % "4.13" % "test",
|
||||||
"com.novocode" % "junit-interface" % "0.10" % "test"
|
"com.novocode" % "junit-interface" % "0.10" % "test"
|
||||||
)
|
)
|
||||||
|
@ -265,7 +265,7 @@
|
|||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>javax.annotation</groupId>
|
<groupId>javax.annotation</groupId>
|
||||||
<artifactId>jsr250-api</artifactId>
|
<artifactId>javax.annotation-api</artifactId>
|
||||||
<version>${javax-annotation-version}</version>
|
<version>${javax-annotation-version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- test dependencies -->
|
<!-- test dependencies -->
|
||||||
@ -280,14 +280,13 @@
|
|||||||
<java.version>1.7</java.version>
|
<java.version>1.7</java.version>
|
||||||
<maven.compiler.source>${java.version}</maven.compiler.source>
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
||||||
<maven.compiler.target>${java.version}</maven.compiler.target>
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
||||||
<gson-fire-version>1.8.3</gson-fire-version>
|
<gson-fire-version>1.8.4</gson-fire-version>
|
||||||
<swagger-core-version>1.5.22</swagger-core-version>
|
<swagger-core-version>1.5.24</swagger-core-version>
|
||||||
<okhttp-version>3.14.2</okhttp-version>
|
<okhttp-version>3.14.7</okhttp-version>
|
||||||
<gson-version>2.8.5</gson-version>
|
<gson-version>2.8.6</gson-version>
|
||||||
<commons-lang3-version>3.9</commons-lang3-version>
|
<commons-lang3-version>3.10</commons-lang3-version>
|
||||||
<threetenbp-version>1.4.0</threetenbp-version>
|
<threetenbp-version>1.4.3</threetenbp-version>
|
||||||
<maven-plugin-version>1.0.0</maven-plugin-version>
|
<javax-annotation-version>1.3.2</javax-annotation-version>
|
||||||
<javax-annotation-version>1.0</javax-annotation-version>
|
|
||||||
<junit-version>4.13</junit-version>
|
<junit-version>4.13</junit-version>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
</properties>
|
</properties>
|
||||||
|
@ -52,7 +52,7 @@ if(hasProperty('target') && target == 'android') {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
provided 'javax.annotation:jsr250-api:1.0'
|
provided 'javax.annotation:javax.annotation-api:1.3.2'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -98,15 +98,15 @@ if(hasProperty('target') && target == 'android') {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile 'io.swagger:swagger-annotations:1.5.22'
|
compile 'io.swagger:swagger-annotations:1.5.24'
|
||||||
compile "com.google.code.findbugs:jsr305:3.0.2"
|
compile "com.google.code.findbugs:jsr305:3.0.2"
|
||||||
compile 'com.squareup.okhttp3:okhttp:3.14.2'
|
compile 'com.squareup.okhttp3:okhttp:3.14.7'
|
||||||
compile 'com.squareup.okhttp3:logging-interceptor:3.14.2'
|
compile 'com.squareup.okhttp3:logging-interceptor:3.14.7'
|
||||||
compile 'com.google.code.gson:gson:2.8.5'
|
compile 'com.google.code.gson:gson:2.8.6'
|
||||||
compile 'io.gsonfire:gson-fire:1.8.3'
|
compile 'io.gsonfire:gson-fire:1.8.4'
|
||||||
compile group: 'org.apache.oltu.oauth2', name: 'org.apache.oltu.oauth2.client', version: '1.0.1'
|
compile group: 'org.apache.oltu.oauth2', name: 'org.apache.oltu.oauth2.client', version: '1.0.1'
|
||||||
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'
|
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.10'
|
||||||
compile 'org.threeten:threetenbp:1.4.0'
|
compile 'org.threeten:threetenbp:1.4.3'
|
||||||
testCompile 'junit:junit:4.13'
|
testCompile 'junit:junit:4.13'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -9,15 +9,16 @@ lazy val root = (project in file(".")).
|
|||||||
publishArtifact in (Compile, packageDoc) := false,
|
publishArtifact in (Compile, packageDoc) := false,
|
||||||
resolvers += Resolver.mavenLocal,
|
resolvers += Resolver.mavenLocal,
|
||||||
libraryDependencies ++= Seq(
|
libraryDependencies ++= Seq(
|
||||||
"io.swagger" % "swagger-annotations" % "1.5.22",
|
"io.swagger" % "swagger-annotations" % "1.5.24",
|
||||||
"com.squareup.okhttp3" % "okhttp" % "3.14.2",
|
"com.squareup.okhttp3" % "okhttp" % "3.14.7",
|
||||||
"com.squareup.okhttp3" % "logging-interceptor" % "3.14.2",
|
"com.squareup.okhttp3" % "logging-interceptor" % "3.14.7",
|
||||||
"com.google.code.gson" % "gson" % "2.8.5",
|
"com.google.code.gson" % "gson" % "2.8.6",
|
||||||
"org.apache.commons" % "commons-lang3" % "3.9",
|
"org.apache.commons" % "commons-lang3" % "3.10",
|
||||||
"org.apache.oltu.oauth2" % "org.apache.oltu.oauth2.client" % "1.0.1",
|
"org.apache.oltu.oauth2" % "org.apache.oltu.oauth2.client" % "1.0.1",
|
||||||
"org.threeten" % "threetenbp" % "1.4.0" % "compile",
|
"org.threeten" % "threetenbp" % "1.4.3" % "compile",
|
||||||
"io.gsonfire" % "gson-fire" % "1.8.3" % "compile",
|
"io.gsonfire" % "gson-fire" % "1.8.3" % "compile",
|
||||||
"javax.annotation" % "jsr250-api" % "1.0" % "compile",
|
"javax.annotation" % "javax.annotation-api" % "1.3.2" % "compile",
|
||||||
|
"com.google.code.findbugs" % "jsr305" % "3.0.2" % "compile",
|
||||||
"junit" % "junit" % "4.13" % "test",
|
"junit" % "junit" % "4.13" % "test",
|
||||||
"com.novocode" % "junit-interface" % "0.10" % "test"
|
"com.novocode" % "junit-interface" % "0.10" % "test"
|
||||||
)
|
)
|
||||||
|
@ -258,7 +258,7 @@
|
|||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>javax.annotation</groupId>
|
<groupId>javax.annotation</groupId>
|
||||||
<artifactId>jsr250-api</artifactId>
|
<artifactId>javax.annotation-api</artifactId>
|
||||||
<version>${javax-annotation-version}</version>
|
<version>${javax-annotation-version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- test dependencies -->
|
<!-- test dependencies -->
|
||||||
@ -273,14 +273,13 @@
|
|||||||
<java.version>1.7</java.version>
|
<java.version>1.7</java.version>
|
||||||
<maven.compiler.source>${java.version}</maven.compiler.source>
|
<maven.compiler.source>${java.version}</maven.compiler.source>
|
||||||
<maven.compiler.target>${java.version}</maven.compiler.target>
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
||||||
<gson-fire-version>1.8.3</gson-fire-version>
|
<gson-fire-version>1.8.4</gson-fire-version>
|
||||||
<swagger-core-version>1.5.22</swagger-core-version>
|
<swagger-core-version>1.5.24</swagger-core-version>
|
||||||
<okhttp-version>3.14.2</okhttp-version>
|
<okhttp-version>3.14.7</okhttp-version>
|
||||||
<gson-version>2.8.5</gson-version>
|
<gson-version>2.8.6</gson-version>
|
||||||
<commons-lang3-version>3.9</commons-lang3-version>
|
<commons-lang3-version>3.10</commons-lang3-version>
|
||||||
<threetenbp-version>1.4.0</threetenbp-version>
|
<threetenbp-version>1.4.3</threetenbp-version>
|
||||||
<maven-plugin-version>1.0.0</maven-plugin-version>
|
<javax-annotation-version>1.3.2</javax-annotation-version>
|
||||||
<javax-annotation-version>1.0</javax-annotation-version>
|
|
||||||
<junit-version>4.13</junit-version>
|
<junit-version>4.13</junit-version>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
</properties>
|
</properties>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user