Skip to content

Commit bf84259

Browse files
committed
Use the standard Quarkus extension project structure.
This should allow us to push the quarkus extension to quarkiverse eventually. Signed-off-by: Hiram Chirino <hiram@hiramchirino.com>
1 parent 8a32daa commit bf84259

File tree

49 files changed

+1115
-151
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+1115
-151
lines changed

pom.xml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,6 +207,17 @@
207207
<annotationProcessorPathsUseDepMgmt>true</annotationProcessorPathsUseDepMgmt>
208208
</configuration>
209209
</plugin>
210+
211+
<plugin>
212+
<artifactId>maven-surefire-plugin</artifactId>
213+
<version>${surefire-plugin.version}</version>
214+
<configuration>
215+
<systemPropertyVariables>
216+
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
217+
</systemPropertyVariables>
218+
</configuration>
219+
</plugin>
220+
210221
</plugins>
211222
</pluginManagement>
212223
</build>
@@ -220,8 +231,8 @@
220231
<jdk>[17,)</jdk>
221232
</activation>
222233
<modules>
223-
<module>proxy-wasm-jaxrs-quarkus</module>
224-
<module>proxy-wasm-jaxrs-quarkus-example</module>
234+
<module>quarkus-proxy-wasm</module>
235+
<module>proxy-wasm-quarkus-example</module>
225236
</modules>
226237
</profile>
227238
</profiles>

proxy-wasm-jaxrs-quarkus/pom.xml

Lines changed: 0 additions & 123 deletions
This file was deleted.

proxy-wasm-jaxrs-quarkus/src/test/resources/application.properties

Lines changed: 0 additions & 2 deletions
This file was deleted.
File renamed without changes.
Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

12-
<artifactId>proxy-wasm-jaxrs-quarkus-example</artifactId>
12+
<artifactId>proxy-wasm-quarkus-example</artifactId>
1313
<packaging>jar</packaging>
14-
<name>proxy-wasm-jaxrs-quarkus-example</name>
14+
<name>proxy-wasm-quarkus-example</name>
1515

1616
<dependencyManagement>
1717
<dependencies>
@@ -32,18 +32,14 @@
3232
<version>2.12.1</version>
3333
</dependency>
3434
<dependency>
35-
<groupId>io.quarkus</groupId>
36-
<artifactId>quarkus-arc</artifactId>
37-
<optional>true</optional>
35+
<groupId>io.quarkiverse.proxy-wasm</groupId>
36+
<artifactId>quarkus-proxy-wasm</artifactId>
37+
<version>${project.version}</version>
3838
</dependency>
3939
<dependency>
4040
<groupId>io.quarkus</groupId>
41-
<artifactId>quarkus-rest-jackson</artifactId>
42-
</dependency>
43-
<dependency>
44-
<groupId>io.roastedroot</groupId>
45-
<artifactId>proxy-wasm-jaxrs-quarkus</artifactId>
46-
<version>${project.version}</version>
41+
<artifactId>quarkus-arc</artifactId>
42+
<optional>true</optional>
4743
</dependency>
4844

4945
<!-- Let's test with Quarkus -->

proxy-wasm-jaxrs-quarkus-example/src/main/java/io/roastedroot/proxywasm/jaxrs/example/App.java renamed to proxy-wasm-quarkus-example/src/main/java/io/roastedroot/proxywasm/jaxrs/example/App.java

File renamed without changes.

proxy-wasm-jaxrs-quarkus-example/src/main/java/io/roastedroot/proxywasm/jaxrs/example/Resources.java renamed to proxy-wasm-quarkus-example/src/main/java/io/roastedroot/proxywasm/jaxrs/example/Resources.java

File renamed without changes.

proxy-wasm-jaxrs-quarkus-example/src/main/resources/application.properties renamed to proxy-wasm-quarkus-example/src/main/resources/application.properties

File renamed without changes.

proxy-wasm-jaxrs-quarkus-example/src/test/java/io/roastedroot/proxywasm/jaxrs/example/FFITest.java renamed to proxy-wasm-quarkus-example/src/test/java/io/roastedroot/proxywasm/jaxrs/example/FFITest.java

File renamed without changes.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Lines starting with '#' are comments.
2+
# Each line is a file pattern followed by one or more owners.
3+
4+
# More details are here: https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners
5+
6+
# The '*' pattern is global owners.
7+
8+
# Order is important. The last matching pattern has the most precedence.
9+
# The folders are ordered as follows:
10+
11+
# In each subsection folders are ordered first by depth, then alphabetically.
12+
# This should make it easy to add new rules without breaking existing ones.
13+
14+
* @quarkiverse/quarkiverse-proxy-wasm

0 commit comments

Comments
 (0)