-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Create RESTEasy Jackson codestart #12494
Conversation
@jantosi you don't need to create a new PR when rebasing :), rebase locally, then use |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CI is failing on gradle, I added comments on the reason..
@@ -0,0 +1,9 @@ | |||
package org.acme.rest.json; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You need to move the native test to src/native-test/java/org/acme/rest/json/NativeFruitResourceIT.java
, this is a gradle
specificity (for maven the file will be automatically moved to the test directory), maybe we need to add this to the doc..
@@ -0,0 +1,6 @@ | |||
package org.acme.rest.json |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as the other, you need to move the native test.
@@ -8,6 +8,8 @@ This guide explains how to create and configure a Quarkus Codestart for an exten | |||
Codestarts provide a personalized Quarkus getting started experience and really show the Quarkus breadth. | |||
A Quarkus extension are able to provide one or more well defined codestarts which will contain the necessary resources and code examples required to get started using that particular extension. | |||
|
|||
See the staging environment to get an understanding what new quickstarts are: https://stage.code.quarkus.io/[https://stage.code.quarkus.io/] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can point to code.quarkus.io directly in the doc, I will promote staging to production later today..
...s/quarkus/examples/resteasy-jackson-example/java/src/main/java/org/acme/rest/json/Fruit.java
Outdated
Show resolved
Hide resolved
ac224e4
to
f36944e
Compare
f36944e
to
67dca28
Compare
Pushed a simple change to trigger the build again - JVM core-dumped: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice!
In another PR, we will need to update the guide: #12642 |
This is provided instead of #12341 - rebased commits.