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
  • !1934
An error occurred while fetching the assigned milestone of the selected merge_request.

SCM and license parameters are now also for resteasy clients available.

  • Review changes

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

Created by: eddyhub

PR checklist

  • [x ] Read the contribution guidelines.
  • [x ] Ran the shell script under ./bin/ to update Petstore sample so that CIs can verify the change. (For instance, only need to run ./bin/{LANG}-petstore.sh and ./bin/security/{LANG}-petstore.sh if updating the {LANG} (e.g. php, ruby, python, etc) code generator or {LANG} client's mustache templates). Windows batch files can be found in .\bin\windows\.
  • [ x] Filed the PR against the correct branch: master, 3.4.x, 4.0.x. Default: master.

Description of the PR

Now the sections scm, license and developer are not ignored when using the generator java and the library restesy.

Compare
  • master (base)

and
  • latest version
    eb97a67c
    1 commit, 2 years ago

2 files
+ 38
- 4

    Preferences

    File browser
    Compare changes
modules/…/…/…/‎…/…/…/resteasy‎
pom.mu‎stache‎ +20 -3
samples/client/pet‎store/java/resteasy‎
pom‎.xml‎ +18 -1
modules/openapi-generator/src/main/resources/Java/libraries/resteasy/pom.mustache
+ 20
- 3
  • View file @ eb97a67c

  • Edit in single-file editor

  • Open in Web IDE


@@ -7,9 +7,9 @@
@@ -7,9 +7,9 @@
<name>{{artifactId}}</name>
<name>{{artifactId}}</name>
<version>{{artifactVersion}}</version>
<version>{{artifactVersion}}</version>
<scm>
<scm>
<connection>scm:git:git@github.com:openapitools/openapi-generator.git</connection>
<connection>{{scmConnection}}</connection>
<developerConnection>scm:git:git@github.com:openapitools/openapi-generator.git</developerConnection>
<developerConnection>{{scmDeveloperConnection}}</developerConnection>
<url>https://openapi-generator.tech</url>
<url>{{scmUrl}}</url>
</scm>
</scm>
{{#parentOverridden}}
{{#parentOverridden}}
<parent>
<parent>
@@ -19,6 +19,23 @@
@@ -19,6 +19,23 @@
</parent>
</parent>
{{/parentOverridden}}
{{/parentOverridden}}
 
<licenses>
 
<license>
 
<name>{{licenseName}}</name>
 
<url>{{licenseUrl}}</url>
 
<distribution>repo</distribution>
 
</license>
 
</licenses>
 
 
<developers>
 
<developer>
 
<name>{{developerName}}</name>
 
<email>{{developerEmail}}</email>
 
<organization>{{developerOrganization}}</organization>
 
<organizationUrl>{{developerOrganizationUrl}}</organizationUrl>
 
</developer>
 
</developers>
 
<build>
<build>
<plugins>
<plugins>
<plugin>
<plugin>
samples/client/petstore/java/resteasy/pom.xml
+ 18
- 1
  • View file @ eb97a67c

  • Edit in single-file editor

  • Open in Web IDE


@@ -9,9 +9,26 @@
@@ -9,9 +9,26 @@
<scm>
<scm>
<connection>scm:git:git@github.com:openapitools/openapi-generator.git</connection>
<connection>scm:git:git@github.com:openapitools/openapi-generator.git</connection>
<developerConnection>scm:git:git@github.com:openapitools/openapi-generator.git</developerConnection>
<developerConnection>scm:git:git@github.com:openapitools/openapi-generator.git</developerConnection>
<url>https://openapi-generator.tech</url>
<url>https://github.com/openapitools/openapi-generator</url>
</scm>
</scm>
 
<licenses>
 
<license>
 
<name>Unlicense</name>
 
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
 
<distribution>repo</distribution>
 
</license>
 
</licenses>
 
 
<developers>
 
<developer>
 
<name>OpenAPI</name>
 
<email>team@openapitools.org</email>
 
<organization>OpenAPI</organization>
 
<organizationUrl>http://openapitools.org</organizationUrl>
 
</developer>
 
</developers>
 
<build>
<build>
<plugins>
<plugins>
<plugin>
<plugin>
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
0
0 participants
Reference:
Source branch: github/fork/eddyhub/master

Menu

Explore Projects Groups Snippets