Skip to content

Commit

Permalink
Merge pull request #42141 from gsmet/rework-doc
Browse files Browse the repository at this point in the history
Reimplement the extension annotation processor
  • Loading branch information
gsmet authored Aug 8, 2024
2 parents b4f76a1 + 083795b commit 2e9421c
Show file tree
Hide file tree
Showing 629 changed files with 13,224 additions and 9,766 deletions.
23 changes: 14 additions & 9 deletions core/deployment/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -214,15 +214,20 @@
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-extension-processor</artifactId>
<version>${project.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
<executions>
<execution>
<id>default-compile</id>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-extension-processor</artifactId>
<version>${project.version}</version>
</path>
</annotationProcessorPaths>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>de.thetaphi</groupId>
Expand Down
8 changes: 8 additions & 0 deletions core/processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-parameter-names</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-bootstrap-app-model</artifactId>
Expand Down

This file was deleted.

Loading

0 comments on commit 2e9421c

Please sign in to comment.