mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-17 15:54:36 +00:00
* Mustache template should use invokerPackage tag to generate import * fix typo, fix script issue, add log statement for troubleshooting * Add java jersey2 samples with OpenAPI doc that has HTTP signature security scheme * Add sample for Java jersey2 and HTTP signature scheme * Add unit test for oneOf schema deserialization * Add unit test for oneOf schema deserialization * Add log statements * Add profile for jersey2 * Temporarily disable unit test * Temporarily disable unit test * fix typo in pom.xml * fix duplicate jersey2 samples * fix duplicate jersey2 samples * fix duplicate artifact id * fix duplicate jersey2 samples * run samples scripts
23 lines
411 B
YAML
23 lines
411 B
YAML
#
|
|
# Generated by OpenAPI Generator: https://openapi-generator.tech
|
|
#
|
|
# Ref: https://docs.travis-ci.com/user/languages/java/
|
|
#
|
|
language: java
|
|
jdk:
|
|
- openjdk12
|
|
- openjdk11
|
|
- openjdk10
|
|
- openjdk9
|
|
- openjdk8
|
|
before_install:
|
|
# ensure gradlew has proper permission
|
|
- chmod a+x ./gradlew
|
|
script:
|
|
# test using maven
|
|
#- mvn test
|
|
# test using gradle
|
|
- gradle test
|
|
# test using sbt
|
|
# - sbt test
|