Skip to content
GitLab
    • Explore Projects Groups Snippets
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • O openapi-generator
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 3,476
    • Issues 3,476
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 402
    • Merge requests 402
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • OpenAPI Tools
  • openapi-generator
  • Merge requests
  • !6965

Added AWS SDK Java dependency in pom.xml

  • Review changes

  • Download
  • Email patches
  • Plain diff
Closed Administrator requested to merge github/fork/rhysgilk/master into master 5 years ago
  • Overview 0
  • Commits 1
  • Pipelines 0
  • Changes 2

Created by: rhysgilk

Working to implement SigV4 for Java

PR checklist

  • Read the contribution guidelines.
  • If contributing template-only or documentation-only changes which will change sample output, build the project beforehand.
  • Run the shell script ./bin/generate-samples.shto update all Petstore samples related to your fix. This is important, as CI jobs will verify all generator outputs of your HEAD commit as it would merge with master. These must match the expectations made by your contribution. You may regenerate an individual generator by passing the relevant config(s) as an argument to the script, for example ./bin/generate-samples.sh bin/config/java*. For Windows users, please run the script in Git BASH.
  • File the PR against the correct branch: master
  • Copy the technical committee to review the pull request if your PR is targeting a particular programming language.
Compare
  • master (base)

and
  • latest version
    99b5b059
    1 commit, 2 years ago

2 files
+ 14
- 0

    Preferences

    File browser
    Compare changes
modules/openapi-ge‎nerator/…/…/…/Java‎
libraries/‎okhttp-gson‎
pom.mu‎stache‎ +7 -0
pom.mu‎stache‎ +7 -0
modules/openapi-generator/src/main/resources/Java/libraries/okhttp-gson/pom.mustache
+ 7
- 0
  • View file @ 99b5b059


@@ -305,6 +305,13 @@
<scope>provided</scope>
</dependency>
{{/parcelableModel}}
{{#withAWSV4Signature}}
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>aws-sdk-java</artifactId>
<version>2.13.55</version>
</dependency>
{{/withAWSV4Signature}}
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
modules/openapi-generator/src/main/resources/Java/pom.mustache
+ 7
- 0
  • View file @ 99b5b059


@@ -367,6 +367,13 @@
<scope>provided</scope>
</dependency>
{{/parcelableModel}}
{{#withAWSV4Signature}}
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>aws-sdk-java</artifactId>
<version>2.13.55</version>
</dependency>
{{/withAWSV4Signature}}
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
0 Assignees
None
Assign to
0 Reviewers
None
Request review from
Labels
0
None
0
None
    Assign labels
  • Manage project labels

Milestone
No milestone
None
None
Time tracking
No estimate or time spent
Lock merge request
Unlocked
2
2 participants
William Cheng
Administrator
Reference: OpenAPITools/openapi-generator!6965
Source branch: github/fork/rhysgilk/master

Menu

Explore Projects Groups Snippets