forked from loafle/openapi-generator-original
Fix usage of javax.annotation (#6645)
* Fix usage of javax.annotation:javax.annotation-api * Regenerate samples ``` bin/generate-samples.sh bin/configs/java-* bin/configs/jaxrs-* bin/configs/spring-* bin/configs/kotlin-* bin/configs/other/java-* bin/configs/other/jaxrs-* bin/configs/other/kotlin-* bin/configs/other/openapi3/jaxrs-cxf-client.yaml bin/configs/other/openapi3/kotlin-* ```
This commit is contained in:
parent
e07f084e2a
commit
32adeddd8f
@ -169,6 +169,7 @@ dependencies {
|
|||||||
{{^java8}}
|
{{^java8}}
|
||||||
compile "com.brsanthu:migbase64:2.2"
|
compile "com.brsanthu:migbase64:2.2"
|
||||||
{{/java8}}
|
{{/java8}}
|
||||||
|
compile 'javax.annotation:javax.annotation-api:1.3.2'
|
||||||
testCompile "junit:junit:$junit_version"
|
testCompile "junit:junit:$junit_version"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1 +1 @@
|
|||||||
{{^hideGenerationTimestamp}}@javax.annotation.Generated(value = "{{generatorClass}}", date = "{{generatedDate}}"){{/hideGenerationTimestamp}}
|
@javax.annotation.Generated(value = "{{generatorClass}}"{{^hideGenerationTimestamp}}, date = "{{generatedDate}}"{{/hideGenerationTimestamp}})
|
@ -154,5 +154,6 @@ dependencies {
|
|||||||
{{/threetenbp}}
|
{{/threetenbp}}
|
||||||
compile "org.apache.oltu.oauth2:org.apache.oltu.oauth2.client:$oltu_version"
|
compile "org.apache.oltu.oauth2:org.apache.oltu.oauth2.client:$oltu_version"
|
||||||
compile "com.brsanthu:migbase64:2.2"
|
compile "com.brsanthu:migbase64:2.2"
|
||||||
|
compile 'javax.annotation:javax.annotation-api:1.3.2'
|
||||||
testCompile "junit:junit:$junit_version"
|
testCompile "junit:junit:$junit_version"
|
||||||
}
|
}
|
||||||
|
@ -21,6 +21,7 @@ lazy val root = (project in file(".")).
|
|||||||
"com.github.joschi.jackson" % "jackson-datatype-threetenbp" % "2.9.10" % "compile",
|
"com.github.joschi.jackson" % "jackson-datatype-threetenbp" % "2.9.10" % "compile",
|
||||||
"org.apache.oltu.oauth2" % "org.apache.oltu.oauth2.client" % "1.0.1" % "compile",
|
"org.apache.oltu.oauth2" % "org.apache.oltu.oauth2.client" % "1.0.1" % "compile",
|
||||||
"com.brsanthu" % "migbase64" % "2.2" % "compile",
|
"com.brsanthu" % "migbase64" % "2.2" % "compile",
|
||||||
|
"javax.annotation" % "javax.annotation-api" % "1.3.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"
|
||||||
)
|
)
|
||||||
|
@ -304,6 +304,12 @@
|
|||||||
<artifactId>org.apache.oltu.oauth2.client</artifactId>
|
<artifactId>org.apache.oltu.oauth2.client</artifactId>
|
||||||
<version>${oltu-version}</version>
|
<version>${oltu-version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.annotation</groupId>
|
||||||
|
<artifactId>javax.annotation-api</artifactId>
|
||||||
|
<version>${javax-annotation-version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- test dependencies -->
|
<!-- test dependencies -->
|
||||||
<dependency>
|
<dependency>
|
||||||
@ -339,6 +345,7 @@
|
|||||||
{{#threetenbp}}
|
{{#threetenbp}}
|
||||||
<jackson-threetenbp-version>2.9.10</jackson-threetenbp-version>
|
<jackson-threetenbp-version>2.9.10</jackson-threetenbp-version>
|
||||||
{{/threetenbp}}
|
{{/threetenbp}}
|
||||||
|
<javax-annotation-version>1.3.2</javax-annotation-version>
|
||||||
<junit-version>4.13</junit-version>
|
<junit-version>4.13</junit-version>
|
||||||
<maven-plugin-version>1.0.0</maven-plugin-version>
|
<maven-plugin-version>1.0.0</maven-plugin-version>
|
||||||
<oltu-version>1.0.1</oltu-version>
|
<oltu-version>1.0.1</oltu-version>
|
||||||
|
@ -155,5 +155,6 @@ dependencies {
|
|||||||
{{#withXml}}
|
{{#withXml}}
|
||||||
compile "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:$jackson_version"
|
compile "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:$jackson_version"
|
||||||
{{/withXml}}
|
{{/withXml}}
|
||||||
|
compile 'javax.annotation:javax.annotation-api:1.3.2'
|
||||||
testCompile "junit:junit:$junit_version"
|
testCompile "junit:junit:$junit_version"
|
||||||
}
|
}
|
||||||
|
@ -27,6 +27,7 @@ lazy val root = (project in file(".")).
|
|||||||
{{#threetenbp}}
|
{{#threetenbp}}
|
||||||
"com.github.joschi.jackson" % "jackson-datatype-threetenbp" % "2.9.10" % "compile",
|
"com.github.joschi.jackson" % "jackson-datatype-threetenbp" % "2.9.10" % "compile",
|
||||||
{{/threetenbp}}
|
{{/threetenbp}}
|
||||||
|
"javax.annotation" % "javax.annotation-api" % "1.3.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"
|
||||||
)
|
)
|
||||||
|
@ -295,6 +295,12 @@
|
|||||||
<version>${jackson-threetenbp-version}</version>
|
<version>${jackson-threetenbp-version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
{{/threetenbp}}
|
{{/threetenbp}}
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.annotation</groupId>
|
||||||
|
<artifactId>javax.annotation-api</artifactId>
|
||||||
|
<version>${javax-annotation-version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- test dependencies -->
|
<!-- test dependencies -->
|
||||||
<dependency>
|
<dependency>
|
||||||
@ -318,6 +324,7 @@
|
|||||||
{{#threetenbp}}
|
{{#threetenbp}}
|
||||||
<jackson-threetenbp-version>2.9.10</jackson-threetenbp-version>
|
<jackson-threetenbp-version>2.9.10</jackson-threetenbp-version>
|
||||||
{{/threetenbp}}
|
{{/threetenbp}}
|
||||||
|
<javax-annotation-version>1.3.2</javax-annotation-version>
|
||||||
<maven-plugin-version>1.0.0</maven-plugin-version>
|
<maven-plugin-version>1.0.0</maven-plugin-version>
|
||||||
<junit-version>4.13</junit-version>
|
<junit-version>4.13</junit-version>
|
||||||
</properties>
|
</properties>
|
||||||
|
@ -174,6 +174,7 @@ dependencies {
|
|||||||
{{^java8}}
|
{{^java8}}
|
||||||
compile "com.brsanthu:migbase64:2.2"
|
compile "com.brsanthu:migbase64:2.2"
|
||||||
{{/java8}}
|
{{/java8}}
|
||||||
|
compile 'javax.annotation:javax.annotation-api:1.3.2'
|
||||||
testCompile "junit:junit:$junit_version"
|
testCompile "junit:junit:$junit_version"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -38,6 +38,7 @@ lazy val root = (project in file(".")).
|
|||||||
"org.apache.commons" % "commons-lang3" % "3.6",
|
"org.apache.commons" % "commons-lang3" % "3.6",
|
||||||
"commons-io" % "commons-io" % "2.5",
|
"commons-io" % "commons-io" % "2.5",
|
||||||
{{/supportJava6}}
|
{{/supportJava6}}
|
||||||
|
"javax.annotation" % "javax.annotation-api" % "1.3.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"
|
||||||
)
|
)
|
||||||
|
@ -362,6 +362,12 @@
|
|||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
{{/useBeanValidation}}
|
{{/useBeanValidation}}
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.annotation</groupId>
|
||||||
|
<artifactId>javax.annotation-api</artifactId>
|
||||||
|
<version>${javax-annotation-version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
<!-- test dependencies -->
|
<!-- test dependencies -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>junit</groupId>
|
<groupId>junit</groupId>
|
||||||
@ -387,6 +393,7 @@
|
|||||||
{{#threetenbp}}
|
{{#threetenbp}}
|
||||||
<threetenbp-version>2.9.10</threetenbp-version>
|
<threetenbp-version>2.9.10</threetenbp-version>
|
||||||
{{/threetenbp}}
|
{{/threetenbp}}
|
||||||
|
<javax-annotation-version>1.3.2</javax-annotation-version>
|
||||||
<junit-version>4.13</junit-version>
|
<junit-version>4.13</junit-version>
|
||||||
{{#hasHttpSignatureMethods}}
|
{{#hasHttpSignatureMethods}}
|
||||||
<http-signature-version>1.4</http-signature-version>
|
<http-signature-version>1.4</http-signature-version>
|
||||||
|
@ -1 +1 @@
|
|||||||
@javax.annotation.Generated(value = "{{generatorClass}}", date = "{{generatedDate}}")
|
@javax.annotation.Generated(value = "{{generatorClass}}"{{^hideGenerationTimestamp}}, date = "{{generatedDate}}"{{/hideGenerationTimestamp}})
|
@ -143,7 +143,13 @@
|
|||||||
<artifactId>hibernate-validator</artifactId>
|
<artifactId>hibernate-validator</artifactId>
|
||||||
<version>5.2.2.Final</version>
|
<version>5.2.2.Final</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
{{/useBeanValidationFeature}}
|
{{/useBeanValidationFeature}}
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.annotation</groupId>
|
||||||
|
<artifactId>javax.annotation-api</artifactId>
|
||||||
|
<version>${javax-annotation-version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
@ -168,6 +174,7 @@
|
|||||||
{{/useBeanValidation}}
|
{{/useBeanValidation}}
|
||||||
<cxf-version>3.2.7</cxf-version>
|
<cxf-version>3.2.7</cxf-version>
|
||||||
<jackson-jaxrs-version>2.9.7</jackson-jaxrs-version>
|
<jackson-jaxrs-version>2.9.7</jackson-jaxrs-version>
|
||||||
|
<javax-annotation-version>1.3.2</javax-annotation-version>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
</properties>
|
</properties>
|
||||||
</project>
|
</project>
|
||||||
|
@ -62,5 +62,6 @@ dependencies {
|
|||||||
compile "com.fasterxml.jackson.core:jackson-annotations:$jackson_version"
|
compile "com.fasterxml.jackson.core:jackson-annotations:$jackson_version"
|
||||||
compile "com.fasterxml.jackson.core:jackson-databind:$jackson_version"
|
compile "com.fasterxml.jackson.core:jackson-databind:$jackson_version"
|
||||||
compile "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version"
|
compile "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version"
|
||||||
|
compile 'javax.annotation:javax.annotation-api:1.3.2'
|
||||||
testCompile "junit:junit:$junit_version"
|
testCompile "junit:junit:$junit_version"
|
||||||
}
|
}
|
||||||
|
@ -1 +1 @@
|
|||||||
{{^hideGenerationTimestamp}}@javax.annotation.processing.Generated(value = "{{generatorClass}}", date = "{{generatedDate}}"){{/hideGenerationTimestamp}}
|
@javax.annotation.processing.Generated(value = "{{generatorClass}}"{{^hideGenerationTimestamp}}, date = "{{generatedDate}}"{{/hideGenerationTimestamp}})
|
@ -200,6 +200,12 @@
|
|||||||
<artifactId>jsr305</artifactId>
|
<artifactId>jsr305</artifactId>
|
||||||
<version>3.0.2</version>
|
<version>3.0.2</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.annotation</groupId>
|
||||||
|
<artifactId>javax.annotation-api</artifactId>
|
||||||
|
<version>${javax-annotation-version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- test dependencies -->
|
<!-- test dependencies -->
|
||||||
<dependency>
|
<dependency>
|
||||||
@ -216,6 +222,7 @@
|
|||||||
<maven.compiler.target>11</maven.compiler.target>
|
<maven.compiler.target>11</maven.compiler.target>
|
||||||
<jackson-version>2.9.9</jackson-version>
|
<jackson-version>2.9.9</jackson-version>
|
||||||
<jackson-databind-nullable-version>0.2.1</jackson-databind-nullable-version>
|
<jackson-databind-nullable-version>0.2.1</jackson-databind-nullable-version>
|
||||||
|
<javax-annotation-version>1.3.2</javax-annotation-version>
|
||||||
<junit-version>4.13</junit-version>
|
<junit-version>4.13</junit-version>
|
||||||
</properties>
|
</properties>
|
||||||
</project>
|
</project>
|
||||||
|
@ -142,6 +142,7 @@ dependencies {
|
|||||||
{{#threetenbp}}
|
{{#threetenbp}}
|
||||||
compile 'org.threeten:threetenbp:1.4.3'
|
compile 'org.threeten:threetenbp:1.4.3'
|
||||||
{{/threetenbp}}
|
{{/threetenbp}}
|
||||||
|
compile 'javax.annotation:javax.annotation-api:1.3.2'
|
||||||
testCompile 'junit:junit:4.13'
|
testCompile 'junit:junit:4.13'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -26,6 +26,7 @@ lazy val root = (project in file(".")).
|
|||||||
"io.gsonfire" % "gson-fire" % "1.8.3" % "compile",
|
"io.gsonfire" % "gson-fire" % "1.8.3" % "compile",
|
||||||
"javax.annotation" % "javax.annotation-api" % "1.3.2" % "compile",
|
"javax.annotation" % "javax.annotation-api" % "1.3.2" % "compile",
|
||||||
"com.google.code.findbugs" % "jsr305" % "3.0.2" % "compile",
|
"com.google.code.findbugs" % "jsr305" % "3.0.2" % "compile",
|
||||||
|
"javax.annotation" % "javax.annotation-api" % "1.3.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"
|
||||||
)
|
)
|
||||||
|
@ -309,6 +309,7 @@
|
|||||||
<groupId>javax.annotation</groupId>
|
<groupId>javax.annotation</groupId>
|
||||||
<artifactId>javax.annotation-api</artifactId>
|
<artifactId>javax.annotation-api</artifactId>
|
||||||
<version>${javax-annotation-version}</version>
|
<version>${javax-annotation-version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<!-- test dependencies -->
|
<!-- test dependencies -->
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -159,5 +159,6 @@ dependencies {
|
|||||||
{{#performBeanValidation}}
|
{{#performBeanValidation}}
|
||||||
compile "org.hibernate:hibernate-validator:6.0.19.Final"
|
compile "org.hibernate:hibernate-validator:6.0.19.Final"
|
||||||
{{/performBeanValidation}}
|
{{/performBeanValidation}}
|
||||||
|
compile 'javax.annotation:javax.annotation-api:1.3.2'
|
||||||
testCompile "junit:junit:$junit_version"
|
testCompile "junit:junit:$junit_version"
|
||||||
}
|
}
|
||||||
|
@ -48,6 +48,7 @@ lazy val root = (project in file(".")).
|
|||||||
{{#performBeanValidation}}
|
{{#performBeanValidation}}
|
||||||
"org.hibernate" % "hibernate-validator" % "6.0.19.Final" % "compile",
|
"org.hibernate" % "hibernate-validator" % "6.0.19.Final" % "compile",
|
||||||
{{/performBeanValidation}}
|
{{/performBeanValidation}}
|
||||||
|
"javax.annotation" % "javax.annotation-api" % "1.3.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"
|
||||||
)
|
)
|
||||||
|
@ -229,14 +229,12 @@
|
|||||||
<artifactId>jsr305</artifactId>
|
<artifactId>jsr305</artifactId>
|
||||||
<version>3.0.2</version>
|
<version>3.0.2</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
{{^hideGenerationTimestamp}}
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>javax.annotation</groupId>
|
<groupId>javax.annotation</groupId>
|
||||||
<artifactId>javax.annotation-api</artifactId>
|
<artifactId>javax.annotation-api</artifactId>
|
||||||
<version>1.3.2</version>
|
<version>${javax-annotation-version}</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
{{/hideGenerationTimestamp}}
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>io.rest-assured</groupId>
|
<groupId>io.rest-assured</groupId>
|
||||||
<artifactId>rest-assured</artifactId>
|
<artifactId>rest-assured</artifactId>
|
||||||
@ -364,6 +362,7 @@
|
|||||||
<jackson-threetenbp-version>2.10.0</jackson-threetenbp-version>
|
<jackson-threetenbp-version>2.10.0</jackson-threetenbp-version>
|
||||||
{{/threetenbp}}
|
{{/threetenbp}}
|
||||||
{{/jackson}}
|
{{/jackson}}
|
||||||
|
<javax-annotation-version>1.3.2</javax-annotation-version>
|
||||||
<okio-version>1.17.5</okio-version>
|
<okio-version>1.17.5</okio-version>
|
||||||
<junit-version>4.13</junit-version>
|
<junit-version>4.13</junit-version>
|
||||||
</properties>
|
</properties>
|
||||||
|
@ -157,5 +157,6 @@ dependencies {
|
|||||||
compile "commons-io:commons-io:$commons_io_version"
|
compile "commons-io:commons-io:$commons_io_version"
|
||||||
compile "org.apache.commons:commons-lang3:$commons_lang3_version"
|
compile "org.apache.commons:commons-lang3:$commons_lang3_version"
|
||||||
{{/supportJava6}}
|
{{/supportJava6}}
|
||||||
|
compile 'javax.annotation:javax.annotation-api:1.3.2'
|
||||||
testCompile "junit:junit:$junit_version"
|
testCompile "junit:junit:$junit_version"
|
||||||
}
|
}
|
||||||
|
@ -29,6 +29,7 @@ lazy val root = (project in file(".")).
|
|||||||
"org.apache.commons" % "commons-lang3" % "3.5" % "compile",
|
"org.apache.commons" % "commons-lang3" % "3.5" % "compile",
|
||||||
"commons-io" % "commons-io" % "2.5" % "compile",
|
"commons-io" % "commons-io" % "2.5" % "compile",
|
||||||
{{/supportJava6}}
|
{{/supportJava6}}
|
||||||
|
"javax.annotation" % "javax.annotation-api" % "1.3.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"
|
||||||
)
|
)
|
||||||
|
@ -285,6 +285,12 @@
|
|||||||
<artifactId>jackson-datatype-threetenbp</artifactId>
|
<artifactId>jackson-datatype-threetenbp</artifactId>
|
||||||
<version>${threetenbp-version}</version>
|
<version>${threetenbp-version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.annotation</groupId>
|
||||||
|
<artifactId>javax.annotation-api</artifactId>
|
||||||
|
<version>${javax-annotation-version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
<!-- test dependencies -->
|
<!-- test dependencies -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>junit</groupId>
|
<groupId>junit</groupId>
|
||||||
@ -300,6 +306,7 @@
|
|||||||
<jackson-version>2.10.4</jackson-version>
|
<jackson-version>2.10.4</jackson-version>
|
||||||
<jackson-databind-version>2.10.4</jackson-databind-version>
|
<jackson-databind-version>2.10.4</jackson-databind-version>
|
||||||
<jackson-databind-nullable-version>0.2.1</jackson-databind-nullable-version>
|
<jackson-databind-nullable-version>0.2.1</jackson-databind-nullable-version>
|
||||||
|
<javax-annotation-version>1.3.2</javax-annotation-version>
|
||||||
<threetenbp-version>2.9.10</threetenbp-version>
|
<threetenbp-version>2.9.10</threetenbp-version>
|
||||||
{{^java8}}
|
{{^java8}}
|
||||||
<jodatime-version>2.9.9</jodatime-version>
|
<jodatime-version>2.9.9</jodatime-version>
|
||||||
|
@ -153,5 +153,6 @@ dependencies {
|
|||||||
{{#withXml}}
|
{{#withXml}}
|
||||||
compile "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:$jackson_version"
|
compile "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:$jackson_version"
|
||||||
{{/withXml}}
|
{{/withXml}}
|
||||||
|
compile 'javax.annotation:javax.annotation-api:1.3.2'
|
||||||
testCompile "junit:junit:$junit_version"
|
testCompile "junit:junit:$junit_version"
|
||||||
}
|
}
|
||||||
|
@ -299,6 +299,12 @@
|
|||||||
<version>${jackson-threetenbp-version}</version>
|
<version>${jackson-threetenbp-version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
{{/threetenbp}}
|
{{/threetenbp}}
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.annotation</groupId>
|
||||||
|
<artifactId>javax.annotation-api</artifactId>
|
||||||
|
<version>${javax-annotation-version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- test dependencies -->
|
<!-- test dependencies -->
|
||||||
<dependency>
|
<dependency>
|
||||||
@ -315,6 +321,7 @@
|
|||||||
<jackson-version>2.10.4</jackson-version>
|
<jackson-version>2.10.4</jackson-version>
|
||||||
<jackson-databind-version>2.10.4</jackson-databind-version>
|
<jackson-databind-version>2.10.4</jackson-databind-version>
|
||||||
<jackson-databind-nullable-version>0.2.1</jackson-databind-nullable-version>
|
<jackson-databind-nullable-version>0.2.1</jackson-databind-nullable-version>
|
||||||
|
<javax-annotation-version>1.3.2</javax-annotation-version>
|
||||||
{{#joda}}
|
{{#joda}}
|
||||||
<jodatime-version>2.9.9</jodatime-version>
|
<jodatime-version>2.9.9</jodatime-version>
|
||||||
{{/joda}}
|
{{/joda}}
|
||||||
|
@ -128,5 +128,6 @@ dependencies {
|
|||||||
{{#threetenbp}}
|
{{#threetenbp}}
|
||||||
compile "org.threeten:threetenbp:$threetenbp_version"
|
compile "org.threeten:threetenbp:$threetenbp_version"
|
||||||
{{/threetenbp}}
|
{{/threetenbp}}
|
||||||
|
compile 'javax.annotation:javax.annotation-api:1.3.2'
|
||||||
testCompile "junit:junit:$junit_version"
|
testCompile "junit:junit:$junit_version"
|
||||||
}
|
}
|
||||||
|
@ -17,6 +17,7 @@ lazy val root = (project in file(".")).
|
|||||||
{{#threetenbp}}
|
{{#threetenbp}}
|
||||||
"org.threeten" % "threetenbp" % "1.4.0" % "compile",
|
"org.threeten" % "threetenbp" % "1.4.0" % "compile",
|
||||||
{{/threetenbp}}
|
{{/threetenbp}}
|
||||||
|
"javax.annotation" % "javax.annotation-api" % "1.3.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"
|
||||||
)
|
)
|
||||||
|
@ -264,6 +264,12 @@
|
|||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
{{/parcelableModel}}
|
{{/parcelableModel}}
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.annotation</groupId>
|
||||||
|
<artifactId>javax.annotation-api</artifactId>
|
||||||
|
<version>${javax-annotation-version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
<!-- test dependencies -->
|
<!-- test dependencies -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>junit</groupId>
|
<groupId>junit</groupId>
|
||||||
@ -282,6 +288,7 @@
|
|||||||
<threetenbp-version>1.4.0</threetenbp-version>
|
<threetenbp-version>1.4.0</threetenbp-version>
|
||||||
{{/threetenbp}}
|
{{/threetenbp}}
|
||||||
<oltu-version>1.0.1</oltu-version>
|
<oltu-version>1.0.1</oltu-version>
|
||||||
|
<javax-annotation-version>1.3.2</javax-annotation-version>
|
||||||
<maven-plugin-version>1.0.0</maven-plugin-version>
|
<maven-plugin-version>1.0.0</maven-plugin-version>
|
||||||
<junit-version>4.13</junit-version>
|
<junit-version>4.13</junit-version>
|
||||||
</properties>
|
</properties>
|
||||||
|
@ -200,6 +200,6 @@ dependencies {
|
|||||||
compile "org.openapitools:jackson-databind-nullable:$jackson_databind_nullable_version"
|
compile "org.openapitools:jackson-databind-nullable:$jackson_databind_nullable_version"
|
||||||
compile "com.fasterxml.jackson.datatype:jackson-datatype-{{^java8}}joda{{/java8}}{{#java8}}jsr310{{/java8}}:$jackson_version"
|
compile "com.fasterxml.jackson.datatype:jackson-datatype-{{^java8}}joda{{/java8}}{{#java8}}jsr310{{/java8}}:$jackson_version"
|
||||||
{{/usePlayWS}}
|
{{/usePlayWS}}
|
||||||
|
compile 'javax.annotation:javax.annotation-api:1.3.2'
|
||||||
testCompile "junit:junit:$junit_version"
|
testCompile "junit:junit:$junit_version"
|
||||||
}
|
}
|
||||||
|
@ -57,6 +57,7 @@ lazy val root = (project in file(".")).
|
|||||||
"org.threeten" % "threetenbp" % "1.4.0" % "compile",
|
"org.threeten" % "threetenbp" % "1.4.0" % "compile",
|
||||||
{{/threetenbp}}
|
{{/threetenbp}}
|
||||||
"io.gsonfire" % "gson-fire" % "1.8.0" % "compile",
|
"io.gsonfire" % "gson-fire" % "1.8.0" % "compile",
|
||||||
|
"javax.annotation" % "javax.annotation-api" % "1.3.2" % "compile",
|
||||||
"junit" % "junit" % "4.13" % "test",
|
"junit" % "junit" % "4.13" % "test",
|
||||||
"com.novocode" % "junit-interface" % "0.11" % "test"
|
"com.novocode" % "junit-interface" % "0.11" % "test"
|
||||||
)
|
)
|
||||||
|
@ -374,6 +374,12 @@
|
|||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
{{/parcelableModel}}
|
{{/parcelableModel}}
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.annotation</groupId>
|
||||||
|
<artifactId>javax.annotation-api</artifactId>
|
||||||
|
<version>${javax-annotation-version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
<!-- test dependencies -->
|
<!-- test dependencies -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>junit</groupId>
|
<groupId>junit</groupId>
|
||||||
@ -421,6 +427,7 @@
|
|||||||
{{#threetenbp}}
|
{{#threetenbp}}
|
||||||
<threetenbp-version>1.4.0</threetenbp-version>
|
<threetenbp-version>1.4.0</threetenbp-version>
|
||||||
{{/threetenbp}}
|
{{/threetenbp}}
|
||||||
|
<javax-annotation-version>1.3.2</javax-annotation-version>
|
||||||
<oltu-version>1.0.1</oltu-version>
|
<oltu-version>1.0.1</oltu-version>
|
||||||
<junit-version>4.13</junit-version>
|
<junit-version>4.13</junit-version>
|
||||||
</properties>
|
</properties>
|
||||||
|
@ -53,6 +53,7 @@ dependencies {
|
|||||||
compile "com.github.joschi.jackson:jackson-datatype-threetenbp:$jackson_version"
|
compile "com.github.joschi.jackson:jackson-datatype-threetenbp:$jackson_version"
|
||||||
{{/threetenbp}}
|
{{/threetenbp}}
|
||||||
compile "org.openapitools:jackson-databind-nullable:$jackson_databind_nullable_version"
|
compile "org.openapitools:jackson-databind-nullable:$jackson_databind_nullable_version"
|
||||||
|
compile 'javax.annotation:javax.annotation-api:1.3.2'
|
||||||
testCompile "junit:junit:$junit_version"
|
testCompile "junit:junit:$junit_version"
|
||||||
testCompile "io.vertx:vertx-unit:$vertx_version"
|
testCompile "io.vertx:vertx-unit:$vertx_version"
|
||||||
}
|
}
|
||||||
|
@ -272,6 +272,12 @@
|
|||||||
<version>${jackson-version}</version>
|
<version>${jackson-version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
{{/threetenbp}}
|
{{/threetenbp}}
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.annotation</groupId>
|
||||||
|
<artifactId>javax.annotation-api</artifactId>
|
||||||
|
<version>${javax-annotation-version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- test dependencies -->
|
<!-- test dependencies -->
|
||||||
<dependency>
|
<dependency>
|
||||||
@ -295,6 +301,7 @@
|
|||||||
<jackson-version>2.10.4</jackson-version>
|
<jackson-version>2.10.4</jackson-version>
|
||||||
<jackson-databind>2.10.4</jackson-databind>
|
<jackson-databind>2.10.4</jackson-databind>
|
||||||
<jackson-databind-nullable-version>0.2.1</jackson-databind-nullable-version>
|
<jackson-databind-nullable-version>0.2.1</jackson-databind-nullable-version>
|
||||||
|
<javax-annotation-version>1.3.2</javax-annotation-version>
|
||||||
<junit-version>4.13</junit-version>
|
<junit-version>4.13</junit-version>
|
||||||
</properties>
|
</properties>
|
||||||
</project>
|
</project>
|
||||||
|
@ -130,6 +130,12 @@
|
|||||||
<version>${jodatime-version}</version>
|
<version>${jodatime-version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
{{/joda}}
|
{{/joda}}
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.annotation</groupId>
|
||||||
|
<artifactId>javax.annotation-api</artifactId>
|
||||||
|
<version>${javax-annotation-version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- test dependencies -->
|
<!-- test dependencies -->
|
||||||
<dependency>
|
<dependency>
|
||||||
@ -146,6 +152,7 @@
|
|||||||
<jackson-version>2.10.3</jackson-version>
|
<jackson-version>2.10.3</jackson-version>
|
||||||
<jackson-databind-version>2.10.3</jackson-databind-version>
|
<jackson-databind-version>2.10.3</jackson-databind-version>
|
||||||
<jackson-databind-nullable-version>0.2.1</jackson-databind-nullable-version>
|
<jackson-databind-nullable-version>0.2.1</jackson-databind-nullable-version>
|
||||||
|
<javax-annotation-version>1.3.2</javax-annotation-version>
|
||||||
<junit-version>4.13</junit-version>
|
<junit-version>4.13</junit-version>
|
||||||
<reactor-version>3.1.8.RELEASE</reactor-version>
|
<reactor-version>3.1.8.RELEASE</reactor-version>
|
||||||
<reactor-netty-version>0.7.8.RELEASE</reactor-netty-version>
|
<reactor-netty-version>0.7.8.RELEASE</reactor-netty-version>
|
||||||
|
@ -356,6 +356,12 @@
|
|||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
{{/parcelableModel}}
|
{{/parcelableModel}}
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.annotation</groupId>
|
||||||
|
<artifactId>javax.annotation-api</artifactId>
|
||||||
|
<version>${javax-annotation-version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
<!-- test dependencies -->
|
<!-- test dependencies -->
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>junit</groupId>
|
<groupId>junit</groupId>
|
||||||
@ -376,6 +382,7 @@
|
|||||||
{{#threetenbp}}
|
{{#threetenbp}}
|
||||||
<jackson-threetenbp-version>2.9.10</jackson-threetenbp-version>
|
<jackson-threetenbp-version>2.9.10</jackson-threetenbp-version>
|
||||||
{{/threetenbp}}
|
{{/threetenbp}}
|
||||||
|
<javax-annotation-version>1.3.2</javax-annotation-version>
|
||||||
<maven-plugin-version>1.0.0</maven-plugin-version>
|
<maven-plugin-version>1.0.0</maven-plugin-version>
|
||||||
<junit-version>4.13</junit-version>
|
<junit-version>4.13</junit-version>
|
||||||
</properties>
|
</properties>
|
||||||
|
@ -1 +1 @@
|
|||||||
{{^hideGenerationTimestamp}}@javax.annotation.Generated(value = "{{generatorClass}}", date = "{{generatedDate}}"){{/hideGenerationTimestamp}}
|
@javax.annotation.Generated(value = "{{generatorClass}}"{{^hideGenerationTimestamp}}, date = "{{generatedDate}}"{{/hideGenerationTimestamp}})
|
@ -126,6 +126,12 @@
|
|||||||
<artifactId>swagger-inflector</artifactId>
|
<artifactId>swagger-inflector</artifactId>
|
||||||
<version>${swagger-inflector-version}</version>
|
<version>${swagger-inflector-version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.annotation</groupId>
|
||||||
|
<artifactId>javax.annotation-api</artifactId>
|
||||||
|
<version>${javax-annotation-version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
@ -142,6 +148,7 @@
|
|||||||
<swagger-inflector-version>1.0.14</swagger-inflector-version>
|
<swagger-inflector-version>1.0.14</swagger-inflector-version>
|
||||||
<jetty-version>9.2.9.v20150224</jetty-version>
|
<jetty-version>9.2.9.v20150224</jetty-version>
|
||||||
<logback-version>1.0.1</logback-version>
|
<logback-version>1.0.1</logback-version>
|
||||||
|
<javax-annotation-version>1.3.2</javax-annotation-version>
|
||||||
<junit-version>4.8.2</junit-version>
|
<junit-version>4.8.2</junit-version>
|
||||||
<slf4j-version>1.6.3</slf4j-version>
|
<slf4j-version>1.6.3</slf4j-version>
|
||||||
</properties>
|
</properties>
|
||||||
|
@ -1 +1 @@
|
|||||||
{{^hideGenerationTimestamp}}@javax.annotation.Generated(value = "{{generatorClass}}", date = "{{generatedDate}}"){{/hideGenerationTimestamp}}
|
@javax.annotation.Generated(value = "{{generatorClass}}"{{^hideGenerationTimestamp}}, date = "{{generatedDate}}"{{/hideGenerationTimestamp}})
|
@ -1 +1 @@
|
|||||||
@javax.annotation.Generated(value = "{{generatorClass}}", date = "{{generatedDate}}")
|
@javax.annotation.Generated(value = "{{generatorClass}}"{{^hideGenerationTimestamp}}, date = "{{generatedDate}}"{{/hideGenerationTimestamp}})
|
@ -1 +1 @@
|
|||||||
@javax.annotation.Generated(value = "{{generatorClass}}", date = "{{generatedDate}}")
|
@javax.annotation.Generated(value = "{{generatorClass}}"{{^hideGenerationTimestamp}}, date = "{{generatedDate}}"{{/hideGenerationTimestamp}})
|
@ -183,7 +183,13 @@
|
|||||||
<artifactId>hibernate-validator</artifactId>
|
<artifactId>hibernate-validator</artifactId>
|
||||||
<version>5.2.2.Final</version>
|
<version>5.2.2.Final</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
{{/useBeanValidationFeature}}
|
{{/useBeanValidationFeature}}
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.annotation</groupId>
|
||||||
|
<artifactId>javax.annotation-api</artifactId>
|
||||||
|
<version>${javax-annotation-version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
@ -208,6 +214,7 @@
|
|||||||
{{/useBeanValidation}}
|
{{/useBeanValidation}}
|
||||||
<cxf-version>3.3.0</cxf-version>
|
<cxf-version>3.3.0</cxf-version>
|
||||||
<jackson-jaxrs-version>2.9.9</jackson-jaxrs-version>
|
<jackson-jaxrs-version>2.9.9</jackson-jaxrs-version>
|
||||||
|
<javax-annotation-version>1.3.2</javax-annotation-version>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
</properties>
|
</properties>
|
||||||
</project>
|
</project>
|
||||||
|
@ -228,6 +228,12 @@
|
|||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
{{/generateSpringBootApplication}}
|
{{/generateSpringBootApplication}}
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.annotation</groupId>
|
||||||
|
<artifactId>javax.annotation-api</artifactId>
|
||||||
|
<version>${javax-annotation-version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
{{#useSwaggerUI}}
|
{{#useSwaggerUI}}
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.webjars</groupId>
|
<groupId>org.webjars</groupId>
|
||||||
@ -265,6 +271,7 @@
|
|||||||
{{/generateSpringBootApplication}}
|
{{/generateSpringBootApplication}}
|
||||||
<cxf-version>3.3.0</cxf-version>
|
<cxf-version>3.3.0</cxf-version>
|
||||||
<jackson-jaxrs-version>2.9.9</jackson-jaxrs-version>
|
<jackson-jaxrs-version>2.9.9</jackson-jaxrs-version>
|
||||||
|
<javax-annotation-version>1.3.2</javax-annotation-version>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
</properties>
|
</properties>
|
||||||
</project>
|
</project>
|
||||||
|
@ -1 +1 @@
|
|||||||
{{^hideGenerationTimestamp}}@javax.annotation.Generated(value = "{{generatorClass}}", date = "{{generatedDate}}"){{/hideGenerationTimestamp}}
|
@javax.annotation.Generated(value = "{{generatorClass}}"{{^hideGenerationTimestamp}}, date = "{{generatedDate}}"{{/hideGenerationTimestamp}})
|
@ -1 +1 @@
|
|||||||
{{^hideGenerationTimestamp}}@javax.annotation.Generated(value = "{{generatorClass}}", date = "{{generatedDate}}"){{/hideGenerationTimestamp}}
|
@javax.annotation.Generated(value = "{{generatorClass}}"{{^hideGenerationTimestamp}}, date = "{{generatedDate}}"{{/hideGenerationTimestamp}})
|
@ -1 +1 @@
|
|||||||
{{^hideGenerationTimestamp}}@javax.annotation.Generated(value = "{{generatorClass}}", date = "{{generatedDate}}"){{/hideGenerationTimestamp}}
|
@javax.annotation.Generated(value = "{{generatorClass}}"{{^hideGenerationTimestamp}}, date = "{{generatedDate}}"{{/hideGenerationTimestamp}})
|
@ -1,3 +1 @@
|
|||||||
{{^hideGenerationTimestamp}}
|
@javax.annotation.Generated(value = "{{generatorClass}}"{{^hideGenerationTimestamp}}, date = "{{generatedDate}}"{{/hideGenerationTimestamp}})
|
||||||
@javax.annotation.Generated(value = "{{generatorClass}}", date = "{{generatedDate}}")
|
|
||||||
{{/hideGenerationTimestamp}}
|
|
@ -1,3 +1 @@
|
|||||||
{{^hideGenerationTimestamp}}
|
@javax.annotation.Generated(value = "{{generatorClass}}"{{^hideGenerationTimestamp}}, date = "{{generatedDate}}"{{/hideGenerationTimestamp}})
|
||||||
@javax.annotation.Generated(value = "{{generatorClass}}", date = "{{generatedDate}}")
|
|
||||||
{{/hideGenerationTimestamp}}
|
|
@ -1,3 +1 @@
|
|||||||
{{^hideGenerationTimestamp}}
|
@javax.annotation.Generated(value = "{{generatorClass}}"{{^hideGenerationTimestamp}}, date = "{{generatedDate}}"{{/hideGenerationTimestamp}})
|
||||||
@javax.annotation.Generated(value = "{{generatorClass}}", date = "{{generatedDate}}")
|
|
||||||
{{/hideGenerationTimestamp}}
|
|
@ -1 +1 @@
|
|||||||
{{^hideGenerationTimestamp}}@javax.annotation.Generated(value = "{{generatorClass}}", date = "{{generatedDate}}"){{/hideGenerationTimestamp}}
|
@javax.annotation.Generated(value = "{{generatorClass}}"{{^hideGenerationTimestamp}}, date = "{{generatedDate}}"{{/hideGenerationTimestamp}})
|
@ -66,6 +66,12 @@
|
|||||||
<artifactId>jackson-jaxrs-json-provider</artifactId>
|
<artifactId>jackson-jaxrs-json-provider</artifactId>
|
||||||
<version>${jackson-version}</version>
|
<version>${jackson-version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.annotation</groupId>
|
||||||
|
<artifactId>javax.annotation-api</artifactId>
|
||||||
|
<version>${javax-annotation-version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
<repositories>
|
<repositories>
|
||||||
<repository>
|
<repository>
|
||||||
@ -82,6 +88,7 @@
|
|||||||
<maven.compiler.target>${java.version}</maven.compiler.target>
|
<maven.compiler.target>${java.version}</maven.compiler.target>
|
||||||
<servlet-api-version>2.5</servlet-api-version>
|
<servlet-api-version>2.5</servlet-api-version>
|
||||||
<jackson-version>2.8.9</jackson-version>
|
<jackson-version>2.8.9</jackson-version>
|
||||||
|
<javax-annotation-version>1.3.2</javax-annotation-version>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
</properties>
|
</properties>
|
||||||
</project>
|
</project>
|
||||||
|
@ -1,3 +1 @@
|
|||||||
{{^hideGenerationTimestamp}}
|
@javax.annotation.Generated(value = "{{generatorClass}}"{{^hideGenerationTimestamp}}, date = "{{generatedDate}}"{{/hideGenerationTimestamp}})
|
||||||
@javax.annotation.Generated(value = "{{generatorClass}}", date = "{{generatedDate}}")
|
|
||||||
{{/hideGenerationTimestamp}}
|
|
@ -15,6 +15,7 @@
|
|||||||
<cucumber-junit.version>1.2.5</cucumber-junit.version>
|
<cucumber-junit.version>1.2.5</cucumber-junit.version>
|
||||||
<cucumber-java.version>1.2.5</cucumber-java.version>
|
<cucumber-java.version>1.2.5</cucumber-java.version>
|
||||||
<cucumber-reporting.version>3.10.0</cucumber-reporting.version>
|
<cucumber-reporting.version>3.10.0</cucumber-reporting.version>
|
||||||
|
<javax-annotation-version>1.3.2</javax-annotation-version>
|
||||||
<springfox-swagger2>2.6.1-SNAPSHOT</springfox-swagger2>
|
<springfox-swagger2>2.6.1-SNAPSHOT</springfox-swagger2>
|
||||||
<springfox-swagger-ui>2.6.0</springfox-swagger-ui>
|
<springfox-swagger-ui>2.6.0</springfox-swagger-ui>
|
||||||
<slf4j-api>1.7.25</slf4j-api>
|
<slf4j-api>1.7.25</slf4j-api>
|
||||||
@ -168,6 +169,12 @@
|
|||||||
<artifactId>commons-logging</artifactId>
|
<artifactId>commons-logging</artifactId>
|
||||||
<version>1.2</version>
|
<version>1.2</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.annotation</groupId>
|
||||||
|
<artifactId>javax.annotation-api</artifactId>
|
||||||
|
<version>${javax-annotation-version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
{{#pkmstInterceptor}}
|
{{#pkmstInterceptor}}
|
||||||
<!-- PKMST middleware dependency -->
|
<!-- PKMST middleware dependency -->
|
||||||
<dependency>
|
<dependency>
|
||||||
|
@ -1,3 +1 @@
|
|||||||
{{^hideGenerationTimestamp}}
|
@javax.annotation.Generated(value = "{{generatorClass}}"{{^hideGenerationTimestamp}}, date = "{{generatedDate}}"{{/hideGenerationTimestamp}})
|
||||||
@javax.annotation.Generated(value = "{{generatorClass}}", date = "{{generatedDate}}")
|
|
||||||
{{/hideGenerationTimestamp}}
|
|
@ -8,6 +8,7 @@
|
|||||||
<properties>
|
<properties>
|
||||||
<kotlin.version>1.3.30</kotlin.version>
|
<kotlin.version>1.3.30</kotlin.version>
|
||||||
<kotlinx-coroutines.version>1.2.0</kotlinx-coroutines.version>
|
<kotlinx-coroutines.version>1.2.0</kotlinx-coroutines.version>
|
||||||
|
<javax-annotation-version>1.3.2</javax-annotation-version>
|
||||||
</properties>
|
</properties>
|
||||||
<parent>
|
<parent>
|
||||||
<groupId>org.springframework.boot</groupId>
|
<groupId>org.springframework.boot</groupId>
|
||||||
@ -134,6 +135,12 @@
|
|||||||
<artifactId>validation-api</artifactId>
|
<artifactId>validation-api</artifactId>
|
||||||
</dependency>
|
</dependency>
|
||||||
{{/useBeanValidation}}
|
{{/useBeanValidation}}
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.annotation</groupId>
|
||||||
|
<artifactId>javax.annotation-api</artifactId>
|
||||||
|
<version>${javax-annotation-version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.jetbrains.kotlin</groupId>
|
<groupId>org.jetbrains.kotlin</groupId>
|
||||||
<artifactId>kotlin-test-junit5</artifactId>
|
<artifactId>kotlin-test-junit5</artifactId>
|
||||||
|
@ -11,6 +11,7 @@ libraryDependencies ++= Seq(
|
|||||||
{{#useSwaggerUI}}
|
{{#useSwaggerUI}}
|
||||||
"org.webjars" % "swagger-ui" % "3.1.5",
|
"org.webjars" % "swagger-ui" % "3.1.5",
|
||||||
{{/useSwaggerUI}}
|
{{/useSwaggerUI}}
|
||||||
|
"javax.annotation" % "javax.annotation-api" % "1.3.2" % "compile",
|
||||||
"org.scalatest" %% "scalatest" % "3.0.4" % Test,
|
"org.scalatest" %% "scalatest" % "3.0.4" % Test,
|
||||||
"org.scalatestplus.play" %% "scalatestplus-play" % "3.1.2" % Test
|
"org.scalatestplus.play" %% "scalatestplus-play" % "3.1.2" % Test
|
||||||
)
|
)
|
||||||
|
@ -1 +1 @@
|
|||||||
{{^hideGenerationTimestamp}}@javax.annotation.Generated(value = Array("{{generatorClass}}"), date = "{{generatedDate}}"){{/hideGenerationTimestamp}}
|
@javax.annotation.Generated(value = Array("{{generatorClass}}"){{^hideGenerationTimestamp}}, date = "{{generatedDate}}"{{/hideGenerationTimestamp}})
|
@ -120,5 +120,6 @@ dependencies {
|
|||||||
compile "com.github.joschi.jackson:jackson-datatype-threetenbp:$jackson_threetenbp_version"
|
compile "com.github.joschi.jackson:jackson-datatype-threetenbp:$jackson_threetenbp_version"
|
||||||
compile "org.apache.oltu.oauth2:org.apache.oltu.oauth2.client:$oltu_version"
|
compile "org.apache.oltu.oauth2:org.apache.oltu.oauth2.client:$oltu_version"
|
||||||
compile "com.brsanthu:migbase64:2.2"
|
compile "com.brsanthu:migbase64:2.2"
|
||||||
|
compile 'javax.annotation:javax.annotation-api:1.3.2'
|
||||||
testCompile "junit:junit:$junit_version"
|
testCompile "junit:junit:$junit_version"
|
||||||
}
|
}
|
||||||
|
@ -21,6 +21,7 @@ lazy val root = (project in file(".")).
|
|||||||
"com.github.joschi.jackson" % "jackson-datatype-threetenbp" % "2.9.10" % "compile",
|
"com.github.joschi.jackson" % "jackson-datatype-threetenbp" % "2.9.10" % "compile",
|
||||||
"org.apache.oltu.oauth2" % "org.apache.oltu.oauth2.client" % "1.0.1" % "compile",
|
"org.apache.oltu.oauth2" % "org.apache.oltu.oauth2.client" % "1.0.1" % "compile",
|
||||||
"com.brsanthu" % "migbase64" % "2.2" % "compile",
|
"com.brsanthu" % "migbase64" % "2.2" % "compile",
|
||||||
|
"javax.annotation" % "javax.annotation-api" % "1.3.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"
|
||||||
)
|
)
|
||||||
|
@ -271,6 +271,12 @@
|
|||||||
<artifactId>org.apache.oltu.oauth2.client</artifactId>
|
<artifactId>org.apache.oltu.oauth2.client</artifactId>
|
||||||
<version>${oltu-version}</version>
|
<version>${oltu-version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>javax.annotation</groupId>
|
||||||
|
<artifactId>javax.annotation-api</artifactId>
|
||||||
|
<version>${javax-annotation-version}</version>
|
||||||
|
<scope>provided</scope>
|
||||||
|
</dependency>
|
||||||
|
|
||||||
<!-- test dependencies -->
|
<!-- test dependencies -->
|
||||||
<dependency>
|
<dependency>
|
||||||
@ -304,6 +310,7 @@
|
|||||||
<jackson-databind-nullable-version>0.2.1</jackson-databind-nullable-version>
|
<jackson-databind-nullable-version>0.2.1</jackson-databind-nullable-version>
|
||||||
<jackson-databind-version>2.10.3</jackson-databind-version>
|
<jackson-databind-version>2.10.3</jackson-databind-version>
|
||||||
<jackson-threetenbp-version>2.9.10</jackson-threetenbp-version>
|
<jackson-threetenbp-version>2.9.10</jackson-threetenbp-version>
|
||||||
|
<javax-annotation-version>1.3.2</javax-annotation-version>
|
||||||
<junit-version>4.13</junit-version>
|
<junit-version>4.13</junit-version>
|
||||||
<maven-plugin-version>1.0.0</maven-plugin-version>
|
<maven-plugin-version>1.0.0</maven-plugin-version>
|
||||||
<oltu-version>1.0.1</oltu-version>
|
<oltu-version>1.0.1</oltu-version>
|
||||||
|
@ -23,7 +23,7 @@ import feign.slf4j.Slf4jLogger;
|
|||||||
import org.openapitools.client.auth.*;
|
import org.openapitools.client.auth.*;
|
||||||
import org.openapitools.client.auth.OAuth.AccessTokenListener;
|
import org.openapitools.client.auth.OAuth.AccessTokenListener;
|
||||||
|
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class ApiClient {
|
public class ApiClient {
|
||||||
public interface Api {}
|
public interface Api {}
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ package org.openapitools.client;
|
|||||||
import java.util.Collection;
|
import java.util.Collection;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
|
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class StringUtil {
|
public class StringUtil {
|
||||||
/**
|
/**
|
||||||
* Check if the given array contains the given value (with case-insensitive comparison).
|
* Check if the given array contains the given value (with case-insensitive comparison).
|
||||||
|
@ -11,7 +11,7 @@ import java.util.List;
|
|||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import feign.*;
|
import feign.*;
|
||||||
|
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public interface AnotherFakeApi extends ApiClient.Api {
|
public interface AnotherFakeApi extends ApiClient.Api {
|
||||||
|
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ import java.util.List;
|
|||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import feign.*;
|
import feign.*;
|
||||||
|
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public interface FakeApi extends ApiClient.Api {
|
public interface FakeApi extends ApiClient.Api {
|
||||||
|
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ import java.util.List;
|
|||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import feign.*;
|
import feign.*;
|
||||||
|
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public interface FakeClassnameTags123Api extends ApiClient.Api {
|
public interface FakeClassnameTags123Api extends ApiClient.Api {
|
||||||
|
|
||||||
|
|
||||||
|
@ -14,7 +14,7 @@ import java.util.List;
|
|||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import feign.*;
|
import feign.*;
|
||||||
|
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public interface PetApi extends ApiClient.Api {
|
public interface PetApi extends ApiClient.Api {
|
||||||
|
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ import java.util.List;
|
|||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import feign.*;
|
import feign.*;
|
||||||
|
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public interface StoreApi extends ApiClient.Api {
|
public interface StoreApi extends ApiClient.Api {
|
||||||
|
|
||||||
|
|
||||||
|
@ -11,7 +11,7 @@ import java.util.List;
|
|||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import feign.*;
|
import feign.*;
|
||||||
|
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public interface UserApi extends ApiClient.Api {
|
public interface UserApi extends ApiClient.Api {
|
||||||
|
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
@JsonPropertyOrder({
|
@JsonPropertyOrder({
|
||||||
AdditionalPropertiesAnyType.JSON_PROPERTY_NAME
|
AdditionalPropertiesAnyType.JSON_PROPERTY_NAME
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class AdditionalPropertiesAnyType extends HashMap<String, Object> {
|
public class AdditionalPropertiesAnyType extends HashMap<String, Object> {
|
||||||
public static final String JSON_PROPERTY_NAME = "name";
|
public static final String JSON_PROPERTY_NAME = "name";
|
||||||
private String name;
|
private String name;
|
||||||
|
@ -32,7 +32,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
@JsonPropertyOrder({
|
@JsonPropertyOrder({
|
||||||
AdditionalPropertiesArray.JSON_PROPERTY_NAME
|
AdditionalPropertiesArray.JSON_PROPERTY_NAME
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class AdditionalPropertiesArray extends HashMap<String, List> {
|
public class AdditionalPropertiesArray extends HashMap<String, List> {
|
||||||
public static final String JSON_PROPERTY_NAME = "name";
|
public static final String JSON_PROPERTY_NAME = "name";
|
||||||
private String name;
|
private String name;
|
||||||
|
@ -31,7 +31,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
@JsonPropertyOrder({
|
@JsonPropertyOrder({
|
||||||
AdditionalPropertiesBoolean.JSON_PROPERTY_NAME
|
AdditionalPropertiesBoolean.JSON_PROPERTY_NAME
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class AdditionalPropertiesBoolean extends HashMap<String, Boolean> {
|
public class AdditionalPropertiesBoolean extends HashMap<String, Boolean> {
|
||||||
public static final String JSON_PROPERTY_NAME = "name";
|
public static final String JSON_PROPERTY_NAME = "name";
|
||||||
private String name;
|
private String name;
|
||||||
|
@ -43,7 +43,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
AdditionalPropertiesClass.JSON_PROPERTY_ANYTYPE2,
|
AdditionalPropertiesClass.JSON_PROPERTY_ANYTYPE2,
|
||||||
AdditionalPropertiesClass.JSON_PROPERTY_ANYTYPE3
|
AdditionalPropertiesClass.JSON_PROPERTY_ANYTYPE3
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class AdditionalPropertiesClass {
|
public class AdditionalPropertiesClass {
|
||||||
public static final String JSON_PROPERTY_MAP_STRING = "map_string";
|
public static final String JSON_PROPERTY_MAP_STRING = "map_string";
|
||||||
private Map<String, String> mapString = null;
|
private Map<String, String> mapString = null;
|
||||||
|
@ -31,7 +31,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
@JsonPropertyOrder({
|
@JsonPropertyOrder({
|
||||||
AdditionalPropertiesInteger.JSON_PROPERTY_NAME
|
AdditionalPropertiesInteger.JSON_PROPERTY_NAME
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class AdditionalPropertiesInteger extends HashMap<String, Integer> {
|
public class AdditionalPropertiesInteger extends HashMap<String, Integer> {
|
||||||
public static final String JSON_PROPERTY_NAME = "name";
|
public static final String JSON_PROPERTY_NAME = "name";
|
||||||
private String name;
|
private String name;
|
||||||
|
@ -32,7 +32,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
@JsonPropertyOrder({
|
@JsonPropertyOrder({
|
||||||
AdditionalPropertiesNumber.JSON_PROPERTY_NAME
|
AdditionalPropertiesNumber.JSON_PROPERTY_NAME
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class AdditionalPropertiesNumber extends HashMap<String, BigDecimal> {
|
public class AdditionalPropertiesNumber extends HashMap<String, BigDecimal> {
|
||||||
public static final String JSON_PROPERTY_NAME = "name";
|
public static final String JSON_PROPERTY_NAME = "name";
|
||||||
private String name;
|
private String name;
|
||||||
|
@ -31,7 +31,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
@JsonPropertyOrder({
|
@JsonPropertyOrder({
|
||||||
AdditionalPropertiesObject.JSON_PROPERTY_NAME
|
AdditionalPropertiesObject.JSON_PROPERTY_NAME
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class AdditionalPropertiesObject extends HashMap<String, Map> {
|
public class AdditionalPropertiesObject extends HashMap<String, Map> {
|
||||||
public static final String JSON_PROPERTY_NAME = "name";
|
public static final String JSON_PROPERTY_NAME = "name";
|
||||||
private String name;
|
private String name;
|
||||||
|
@ -31,7 +31,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
@JsonPropertyOrder({
|
@JsonPropertyOrder({
|
||||||
AdditionalPropertiesString.JSON_PROPERTY_NAME
|
AdditionalPropertiesString.JSON_PROPERTY_NAME
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class AdditionalPropertiesString extends HashMap<String, String> {
|
public class AdditionalPropertiesString extends HashMap<String, String> {
|
||||||
public static final String JSON_PROPERTY_NAME = "name";
|
public static final String JSON_PROPERTY_NAME = "name";
|
||||||
private String name;
|
private String name;
|
||||||
|
@ -35,7 +35,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
Animal.JSON_PROPERTY_CLASS_NAME,
|
Animal.JSON_PROPERTY_CLASS_NAME,
|
||||||
Animal.JSON_PROPERTY_COLOR
|
Animal.JSON_PROPERTY_COLOR
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.EXISTING_PROPERTY, property = "className", visible = true)
|
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.EXISTING_PROPERTY, property = "className", visible = true)
|
||||||
@JsonSubTypes({
|
@JsonSubTypes({
|
||||||
@JsonSubTypes.Type(value = BigCat.class, name = "BigCat"),
|
@JsonSubTypes.Type(value = BigCat.class, name = "BigCat"),
|
||||||
|
@ -32,7 +32,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
@JsonPropertyOrder({
|
@JsonPropertyOrder({
|
||||||
ArrayOfArrayOfNumberOnly.JSON_PROPERTY_ARRAY_ARRAY_NUMBER
|
ArrayOfArrayOfNumberOnly.JSON_PROPERTY_ARRAY_ARRAY_NUMBER
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class ArrayOfArrayOfNumberOnly {
|
public class ArrayOfArrayOfNumberOnly {
|
||||||
public static final String JSON_PROPERTY_ARRAY_ARRAY_NUMBER = "ArrayArrayNumber";
|
public static final String JSON_PROPERTY_ARRAY_ARRAY_NUMBER = "ArrayArrayNumber";
|
||||||
private List<List<BigDecimal>> arrayArrayNumber = null;
|
private List<List<BigDecimal>> arrayArrayNumber = null;
|
||||||
|
@ -32,7 +32,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
@JsonPropertyOrder({
|
@JsonPropertyOrder({
|
||||||
ArrayOfNumberOnly.JSON_PROPERTY_ARRAY_NUMBER
|
ArrayOfNumberOnly.JSON_PROPERTY_ARRAY_NUMBER
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class ArrayOfNumberOnly {
|
public class ArrayOfNumberOnly {
|
||||||
public static final String JSON_PROPERTY_ARRAY_NUMBER = "ArrayNumber";
|
public static final String JSON_PROPERTY_ARRAY_NUMBER = "ArrayNumber";
|
||||||
private List<BigDecimal> arrayNumber = null;
|
private List<BigDecimal> arrayNumber = null;
|
||||||
|
@ -34,7 +34,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
ArrayTest.JSON_PROPERTY_ARRAY_ARRAY_OF_INTEGER,
|
ArrayTest.JSON_PROPERTY_ARRAY_ARRAY_OF_INTEGER,
|
||||||
ArrayTest.JSON_PROPERTY_ARRAY_ARRAY_OF_MODEL
|
ArrayTest.JSON_PROPERTY_ARRAY_ARRAY_OF_MODEL
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class ArrayTest {
|
public class ArrayTest {
|
||||||
public static final String JSON_PROPERTY_ARRAY_OF_STRING = "array_of_string";
|
public static final String JSON_PROPERTY_ARRAY_OF_STRING = "array_of_string";
|
||||||
private List<String> arrayOfString = null;
|
private List<String> arrayOfString = null;
|
||||||
|
@ -33,7 +33,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
@JsonPropertyOrder({
|
@JsonPropertyOrder({
|
||||||
BigCat.JSON_PROPERTY_KIND
|
BigCat.JSON_PROPERTY_KIND
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.EXISTING_PROPERTY, property = "className", visible = true)
|
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.EXISTING_PROPERTY, property = "className", visible = true)
|
||||||
@JsonSubTypes({
|
@JsonSubTypes({
|
||||||
})
|
})
|
||||||
|
@ -29,7 +29,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
@JsonPropertyOrder({
|
@JsonPropertyOrder({
|
||||||
BigCatAllOf.JSON_PROPERTY_KIND
|
BigCatAllOf.JSON_PROPERTY_KIND
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class BigCatAllOf {
|
public class BigCatAllOf {
|
||||||
/**
|
/**
|
||||||
* Gets or Sets kind
|
* Gets or Sets kind
|
||||||
|
@ -34,7 +34,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
Capitalization.JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS,
|
Capitalization.JSON_PROPERTY_SC_A_E_T_H_FLOW_POINTS,
|
||||||
Capitalization.JSON_PROPERTY_A_T_T_N_A_M_E
|
Capitalization.JSON_PROPERTY_A_T_T_N_A_M_E
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class Capitalization {
|
public class Capitalization {
|
||||||
public static final String JSON_PROPERTY_SMALL_CAMEL = "smallCamel";
|
public static final String JSON_PROPERTY_SMALL_CAMEL = "smallCamel";
|
||||||
private String smallCamel;
|
private String smallCamel;
|
||||||
|
@ -34,7 +34,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
@JsonPropertyOrder({
|
@JsonPropertyOrder({
|
||||||
Cat.JSON_PROPERTY_DECLAWED
|
Cat.JSON_PROPERTY_DECLAWED
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.EXISTING_PROPERTY, property = "className", visible = true)
|
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.EXISTING_PROPERTY, property = "className", visible = true)
|
||||||
@JsonSubTypes({
|
@JsonSubTypes({
|
||||||
@JsonSubTypes.Type(value = BigCat.class, name = "BigCat"),
|
@JsonSubTypes.Type(value = BigCat.class, name = "BigCat"),
|
||||||
|
@ -29,7 +29,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
@JsonPropertyOrder({
|
@JsonPropertyOrder({
|
||||||
CatAllOf.JSON_PROPERTY_DECLAWED
|
CatAllOf.JSON_PROPERTY_DECLAWED
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class CatAllOf {
|
public class CatAllOf {
|
||||||
public static final String JSON_PROPERTY_DECLAWED = "declawed";
|
public static final String JSON_PROPERTY_DECLAWED = "declawed";
|
||||||
private Boolean declawed;
|
private Boolean declawed;
|
||||||
|
@ -30,7 +30,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
Category.JSON_PROPERTY_ID,
|
Category.JSON_PROPERTY_ID,
|
||||||
Category.JSON_PROPERTY_NAME
|
Category.JSON_PROPERTY_NAME
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class Category {
|
public class Category {
|
||||||
public static final String JSON_PROPERTY_ID = "id";
|
public static final String JSON_PROPERTY_ID = "id";
|
||||||
private Long id;
|
private Long id;
|
||||||
|
@ -30,7 +30,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
@JsonPropertyOrder({
|
@JsonPropertyOrder({
|
||||||
ClassModel.JSON_PROPERTY_PROPERTY_CLASS
|
ClassModel.JSON_PROPERTY_PROPERTY_CLASS
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class ClassModel {
|
public class ClassModel {
|
||||||
public static final String JSON_PROPERTY_PROPERTY_CLASS = "_class";
|
public static final String JSON_PROPERTY_PROPERTY_CLASS = "_class";
|
||||||
private String propertyClass;
|
private String propertyClass;
|
||||||
|
@ -29,7 +29,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
@JsonPropertyOrder({
|
@JsonPropertyOrder({
|
||||||
Client.JSON_PROPERTY_CLIENT
|
Client.JSON_PROPERTY_CLIENT
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class Client {
|
public class Client {
|
||||||
public static final String JSON_PROPERTY_CLIENT = "client";
|
public static final String JSON_PROPERTY_CLIENT = "client";
|
||||||
private String client;
|
private String client;
|
||||||
|
@ -33,7 +33,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
@JsonPropertyOrder({
|
@JsonPropertyOrder({
|
||||||
Dog.JSON_PROPERTY_BREED
|
Dog.JSON_PROPERTY_BREED
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.EXISTING_PROPERTY, property = "className", visible = true)
|
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.EXISTING_PROPERTY, property = "className", visible = true)
|
||||||
@JsonSubTypes({
|
@JsonSubTypes({
|
||||||
})
|
})
|
||||||
|
@ -29,7 +29,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
@JsonPropertyOrder({
|
@JsonPropertyOrder({
|
||||||
DogAllOf.JSON_PROPERTY_BREED
|
DogAllOf.JSON_PROPERTY_BREED
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class DogAllOf {
|
public class DogAllOf {
|
||||||
public static final String JSON_PROPERTY_BREED = "breed";
|
public static final String JSON_PROPERTY_BREED = "breed";
|
||||||
private String breed;
|
private String breed;
|
||||||
|
@ -32,7 +32,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
EnumArrays.JSON_PROPERTY_JUST_SYMBOL,
|
EnumArrays.JSON_PROPERTY_JUST_SYMBOL,
|
||||||
EnumArrays.JSON_PROPERTY_ARRAY_ENUM
|
EnumArrays.JSON_PROPERTY_ARRAY_ENUM
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class EnumArrays {
|
public class EnumArrays {
|
||||||
/**
|
/**
|
||||||
* Gets or Sets justSymbol
|
* Gets or Sets justSymbol
|
||||||
|
@ -34,7 +34,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
EnumTest.JSON_PROPERTY_ENUM_NUMBER,
|
EnumTest.JSON_PROPERTY_ENUM_NUMBER,
|
||||||
EnumTest.JSON_PROPERTY_OUTER_ENUM
|
EnumTest.JSON_PROPERTY_OUTER_ENUM
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class EnumTest {
|
public class EnumTest {
|
||||||
/**
|
/**
|
||||||
* Gets or Sets enumString
|
* Gets or Sets enumString
|
||||||
|
@ -32,7 +32,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
FileSchemaTestClass.JSON_PROPERTY_FILE,
|
FileSchemaTestClass.JSON_PROPERTY_FILE,
|
||||||
FileSchemaTestClass.JSON_PROPERTY_FILES
|
FileSchemaTestClass.JSON_PROPERTY_FILES
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class FileSchemaTestClass {
|
public class FileSchemaTestClass {
|
||||||
public static final String JSON_PROPERTY_FILE = "file";
|
public static final String JSON_PROPERTY_FILE = "file";
|
||||||
private java.io.File file;
|
private java.io.File file;
|
||||||
|
@ -47,7 +47,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
FormatTest.JSON_PROPERTY_PASSWORD,
|
FormatTest.JSON_PROPERTY_PASSWORD,
|
||||||
FormatTest.JSON_PROPERTY_BIG_DECIMAL
|
FormatTest.JSON_PROPERTY_BIG_DECIMAL
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class FormatTest {
|
public class FormatTest {
|
||||||
public static final String JSON_PROPERTY_INTEGER = "integer";
|
public static final String JSON_PROPERTY_INTEGER = "integer";
|
||||||
private Integer integer;
|
private Integer integer;
|
||||||
|
@ -30,7 +30,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
HasOnlyReadOnly.JSON_PROPERTY_BAR,
|
HasOnlyReadOnly.JSON_PROPERTY_BAR,
|
||||||
HasOnlyReadOnly.JSON_PROPERTY_FOO
|
HasOnlyReadOnly.JSON_PROPERTY_FOO
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class HasOnlyReadOnly {
|
public class HasOnlyReadOnly {
|
||||||
public static final String JSON_PROPERTY_BAR = "bar";
|
public static final String JSON_PROPERTY_BAR = "bar";
|
||||||
private String bar;
|
private String bar;
|
||||||
|
@ -35,7 +35,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
MapTest.JSON_PROPERTY_DIRECT_MAP,
|
MapTest.JSON_PROPERTY_DIRECT_MAP,
|
||||||
MapTest.JSON_PROPERTY_INDIRECT_MAP
|
MapTest.JSON_PROPERTY_INDIRECT_MAP
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class MapTest {
|
public class MapTest {
|
||||||
public static final String JSON_PROPERTY_MAP_MAP_OF_STRING = "map_map_of_string";
|
public static final String JSON_PROPERTY_MAP_MAP_OF_STRING = "map_map_of_string";
|
||||||
private Map<String, Map<String, String>> mapMapOfString = null;
|
private Map<String, Map<String, String>> mapMapOfString = null;
|
||||||
|
@ -37,7 +37,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
MixedPropertiesAndAdditionalPropertiesClass.JSON_PROPERTY_DATE_TIME,
|
MixedPropertiesAndAdditionalPropertiesClass.JSON_PROPERTY_DATE_TIME,
|
||||||
MixedPropertiesAndAdditionalPropertiesClass.JSON_PROPERTY_MAP
|
MixedPropertiesAndAdditionalPropertiesClass.JSON_PROPERTY_MAP
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class MixedPropertiesAndAdditionalPropertiesClass {
|
public class MixedPropertiesAndAdditionalPropertiesClass {
|
||||||
public static final String JSON_PROPERTY_UUID = "uuid";
|
public static final String JSON_PROPERTY_UUID = "uuid";
|
||||||
private UUID uuid;
|
private UUID uuid;
|
||||||
|
@ -31,7 +31,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
Model200Response.JSON_PROPERTY_NAME,
|
Model200Response.JSON_PROPERTY_NAME,
|
||||||
Model200Response.JSON_PROPERTY_PROPERTY_CLASS
|
Model200Response.JSON_PROPERTY_PROPERTY_CLASS
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class Model200Response {
|
public class Model200Response {
|
||||||
public static final String JSON_PROPERTY_NAME = "name";
|
public static final String JSON_PROPERTY_NAME = "name";
|
||||||
private Integer name;
|
private Integer name;
|
||||||
|
@ -31,7 +31,7 @@ import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
|||||||
ModelApiResponse.JSON_PROPERTY_TYPE,
|
ModelApiResponse.JSON_PROPERTY_TYPE,
|
||||||
ModelApiResponse.JSON_PROPERTY_MESSAGE
|
ModelApiResponse.JSON_PROPERTY_MESSAGE
|
||||||
})
|
})
|
||||||
|
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
|
||||||
public class ModelApiResponse {
|
public class ModelApiResponse {
|
||||||
public static final String JSON_PROPERTY_CODE = "code";
|
public static final String JSON_PROPERTY_CODE = "code";
|
||||||
private Integer code;
|
private Integer code;
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user