Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extension authors guide should mention the need for quarkus-extension-processor #2127

Closed
mkouba opened this issue Apr 17, 2019 · 0 comments · Fixed by #2141
Closed

Extension authors guide should mention the need for quarkus-extension-processor #2127

mkouba opened this issue Apr 17, 2019 · 0 comments · Fixed by #2141
Assignees
Milestone

Comments

@mkouba
Copy link
Contributor

mkouba commented Apr 17, 2019

A user should add something like to the pom.xml of the deployment module:

<build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.7.0</version> <!-- 3.5+ is required -->
                <configuration>
                    <annotationProcessorPaths>
                        <path>
                            <groupId>io.quarkus</groupId>
                            <artifactId>quarkus-extension-processor</artifactId>
                        </path>
                    </annotationProcessorPaths>
                </configuration>
            </plugin>
        </plugins>
</build>
@mkouba mkouba self-assigned this Apr 17, 2019
mkouba added a commit to mkouba/quarkus that referenced this issue Apr 18, 2019
- also clarify quarkus-bootstrap-maven-plugin configuration
- resolves quarkusio#2127
@mkouba mkouba added this to the 0.14.0 milestone Apr 18, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant