Skip to content

Instantly share code, notes, and snippets.

@chkal
Created May 21, 2021 15:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chkal/47bb94dbf0103e64113bd7952184df43 to your computer and use it in GitHub Desktop.
Save chkal/47bb94dbf0103e64113bd7952184df43 to your computer and use it in GitHub Desktop.
Adding Krazo to Eclipse Glassfish
diff --git a/appserver/pom.xml b/appserver/pom.xml
index 1e49f3a9d..75a4d3914 100644
--- a/appserver/pom.xml
+++ b/appserver/pom.xml
@@ -161,6 +161,10 @@
<weld.version>4.0.1.SP1</weld.version>
<jboss.classfilewriter.version>1.2.4.Final</jboss.classfilewriter.version>
+ <!-- Jakarta MVC -->
+ <mvc-api.version>2.0.0</mvc-api.version>
+ <krazo.version>2.0.1</krazo.version>
+
<!-- Admin console components -->
<jsftemplating.version>3.0.0</jsftemplating.version>
<jsf-ext.version>0.2</jsf-ext.version>
@@ -498,6 +502,17 @@
<version>${jboss.classfilewriter.version}</version>
</dependency>
+ <!-- Jakarta MVC -->
+ <dependency>
+ <groupId>jakarta.mvc</groupId>
+ <artifactId>jakarta.mvc-api</artifactId>
+ <version>${mvc-api.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.eclipse.krazo</groupId>
+ <artifactId>krazo-jersey</artifactId>
+ <version>${krazo.version}</version>
+ </dependency>
<!-- Admin console components -->
<dependency>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment