Skip to content

Commit

Permalink
updated examples, added missing profiles
Browse files Browse the repository at this point in the history
  • Loading branch information
lwitkowski committed Oct 24, 2023
1 parent 3c5f33f commit f60eaac
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ so-called "HTTP APIs" are usually not.
### Quarkus 3.X / Java 11+
Make sure JDK 11 is in your PATH, then run:
```shell
mvn io.quarkus:quarkus-maven-plugin:3.3.2:create \
mvn io.quarkus:quarkus-maven-plugin:3.5.0:create \
-DprojectGroupId=problem \
-DprojectArtifactId=quarkus-resteasy-problem-playground2 \
-DclassName="problem.HelloResource" \
Expand Down
15 changes: 14 additions & 1 deletion integration-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,20 @@
<quarkus.version>3.2.5.Final</quarkus.version>
</properties>
</profile>

<profile>
<id>quarkus-3.3</id>
<properties>
<quarkus.version>3.3.3</quarkus.version>
</properties>
</profile>

<profile>
<id>quarkus-3.4</id>
<properties>
<quarkus.version>3.4.3</quarkus.version>
</properties>
</profile>

<profile>
<id>native</id>
<properties>
Expand Down

0 comments on commit f60eaac

Please sign in to comment.