Skip to content

Commit

Permalink
update to new versions
Browse files Browse the repository at this point in the history
  • Loading branch information
vegegoku committed Jan 30, 2024
1 parent 5090f18 commit 004a81a
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 25 deletions.
16 changes: 8 additions & 8 deletions src/main/java/org/dominokit/cli/VersionProfile.java
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,15 @@ private static VersionProfile get(String version) {
);
case "v2":
return new VersionProfile(version, version,
ToolVersion.of("domino_ui_version", "2.0.0-RC5"),
ToolVersion.of("domino_ui_version", "2.0.0"),
ToolVersion.of("domino_history_version", "1.0.3"),
ToolVersion.of("domino_mvp_version", "2.0.0-RC2"),
ToolVersion.of("domino_rest_version", "1.0.2"),
ToolVersion.of("domino_rest_version", "2.0.0-RC1"),
ToolVersion.of("domino_jackson_version", "1.0.4"),
ToolVersion.of("quarkus_version", "2.16.7.Final"),
ToolVersion.of("quarkus_version", "3.6.5"),
ToolVersion.of("vertx_version", "3.9.4"),
ToolVersion.of("gwt_version", "2.10.0"),
ToolVersion.of("j2cl_maven_plugin_version", "0.21.0")
ToolVersion.of("gwt_version", "2.11.0"),
ToolVersion.of("j2cl_maven_plugin_version", "0.22.0")
);
case "dev":
return new VersionProfile(version, "v2",
Expand All @@ -71,10 +71,10 @@ private static VersionProfile get(String version) {
ToolVersion.of("domino_mvp_version", "HEAD-SNAPSHOT"),
ToolVersion.of("domino_rest_version", "HEAD-SNAPSHOT"),
ToolVersion.of("domino_jackson_version", "HEAD-SNAPSHOT"),
ToolVersion.of("quarkus_version", "2.16.7.Final"),
ToolVersion.of("quarkus_version", "3.6.5"),
ToolVersion.of("vertx_version", "3.9.4"),
ToolVersion.of("gwt_version", "2.10.0"),
ToolVersion.of("j2cl_maven_plugin_version", "0.21.0")
ToolVersion.of("gwt_version", "2.11.0"),
ToolVersion.of("j2cl_maven_plugin_version", "0.22.0")
);

}
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/projects-templates/v2/api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy</artifactId>
<artifactId>quarkus-resteasy-reactive</artifactId>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
Expand All @@ -53,7 +53,7 @@
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-resteasy-jackson</artifactId>
<artifactId>quarkus-resteasy-reactive-jackson</artifactId>
</dependency>
</dependencies>
<build>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package ${rootPackage};

import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.PathParam;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.core.MediaType;

@Path("/hello")
public class GreetingResource {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

import org.dominokit.rest.shared.request.service.annotations.RequestFactory;

import javax.ws.rs.Path;
import javax.ws.rs.GET;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.PathParam;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.core.MediaType;

@RequestFactory
public interface ${prefix}Service {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

import org.dominokit.rest.shared.request.service.annotations.RequestFactory;

import javax.ws.rs.Path;
import javax.ws.rs.GET;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import jakarta.ws.rs.Path;
import jakarta.ws.rs.GET;
import jakarta.ws.rs.PathParam;
import jakarta.ws.rs.Produces;
import jakarta.ws.rs.core.MediaType;

@RequestFactory
public interface ${prefix}Service {
Expand Down

0 comments on commit 004a81a

Please sign in to comment.