We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d5ea35 commit 0320844Copy full SHA for 0320844
3 files changed
modules/jooby-cli/src/main/resources/cli/App.java.hbs
@@ -14,7 +14,7 @@ public class App extends Jooby {
14
install(new OpenAPIModule());
15
{{/if}}
16
{{#if mvc}}
17
- mvc(new Controller());
+ mvc(new Controller_());
18
{{else}}
19
get("/", ctx -> "Welcome to Jooby!");
20
modules/jooby-cli/src/main/resources/cli/App.kt.hbs
@@ -13,7 +13,7 @@ class App: Kooby({
13
install(OpenAPIModule())
- mvc(Controller())
+ mvc(Controller_())
get("/") {
"Welcome to Jooby!"
modules/jooby-cli/src/main/resources/cli/pom.xml.hbs
@@ -104,6 +104,7 @@
104
105
<execution>
106
<id>compile</id>
107
+{{#if kapt}}<phase>process-sources</phase>{{/if}}
108
<goals>
109
<goal>compile</goal>
110
</goals>
0 commit comments