OpenAPITools / OpenAPITools/openapi-generator

[HELP] How I can add my customize templates with Maven Plugin?

Open
#21,237 1 comment 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
Java
Stars
26.8k
Forks
7.7k
PR merge metrics
PR metrics pending

Description

I want to add some Group.java files to support Group Validation,like the following:

@GroupSequence(value = {GroupA.class, GroupB.class, GroupC.class})
public interface Group {
}

so I wanna try to add some new Template to generate Group files, with the following pom.xml, nothing generate.
my pom.xml

                            <templateDirectory>${project.basedir}/resources/JavaSpring</templateDirectory>
                            <files>
                                <modelGroup.mustache>
                                    <templateType>API</templateType>
                                    <destinationFilename>Group.java</destinationFilename>
                                </modelGroup.mustache>
                            </files>
`modelGroup.mustache`:
@GroupSequence(value = {GroupA.class, GroupB.class, GroupC.class})
public interface Group {
}

so how to add my customize templates with Maven Plugin correctly?

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start with the Maven Plugin configuration in the issue's pom.xml and the modelGroup.mustache template. Trace how templateDirectory and files are handled, then verify that the configuration produces Group.java with the requested GroupSequence content.

Written by the indexing model from the issue text.

Assessment

Tech stack
java
Domain
build-system, tooling
Issue type
Feature
Difficulty
3/5
Estimated time
1-2 days
Activity status
Stale
Clarity
Needs clarification
Newbie friendliness
20/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.