Skip to content

Commit

Permalink
Base Servlet support for JWebMP
Browse files Browse the repository at this point in the history
  • Loading branch information
GedMarc committed Apr 26, 2024
1 parent 70e7e5d commit 3a273cf
Show file tree
Hide file tree
Showing 51 changed files with 1,162 additions and 4,395 deletions.
23 changes: 21 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,20 @@
<groupId>com.guicedee.services</groupId>
<artifactId>uadetector-core</artifactId>
</dependency>
<!--
<dependency>
<groupId>com.guicedee.services</groupId>
<artifactId>vertx-core</artifactId>
</dependency>
<dependency>
<groupId>com.guicedee.servlets</groupId>
<artifactId>guiced-vertx-sockets</artifactId>
</dependency>
-->

<!--
<dependency>
<groupId>jakarta.websocket</groupId>
<artifactId>jakarta.websocket-api</artifactId>
Expand All @@ -81,7 +94,7 @@
<groupId>com.guicedee.servlets</groupId>
<artifactId>guiced-websockets</artifactId>
</dependency>

-->
<dependency>
<groupId>com.guicedee.services</groupId>
<artifactId>uadetector-resources</artifactId>
Expand Down Expand Up @@ -125,7 +138,13 @@
<scope>import</scope>
<version>${guicedee.version}</version>
</dependency>

<dependency>
<groupId>com.guicedee</groupId>
<artifactId>guicedee-bom</artifactId>
<type>pom</type>
<scope>import</scope>
<version>${guicedee.version}</version>
</dependency>
<dependency>
<groupId>com.jwebmp</groupId>
<artifactId>jwebmp-bom</artifactId>
Expand Down
6 changes: 3 additions & 3 deletions src/main/java/com/jwebmp/core/Event.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
package com.jwebmp.core;

import com.fasterxml.jackson.annotation.JsonInclude;

import com.guicedee.client.*;
import com.guicedee.client.IGuiceContext;
import com.guicedee.services.jsonrepresentation.IJsonRepresentation;
import com.guicedee.services.jsonrepresentation.json.StaticStrings;
import com.jwebmp.core.base.ComponentEventBase;
import com.jwebmp.core.base.ajax.AjaxCall;
Expand Down Expand Up @@ -49,7 +49,7 @@
@SuppressWarnings("unused")
public abstract class Event<F extends GlobalFeatures, J extends Event<F, J>>
extends ComponentEventBase<F, GlobalEvents, J>
implements GlobalEvents<J>, IEvent<F, J>
implements GlobalEvents<J>, IEvent<F, J>, IJsonRepresentation<J>
{
/**
* A list of all queries to execute on ajax response
Expand Down
286 changes: 0 additions & 286 deletions src/main/java/com/jwebmp/core/FileTemplates.java

This file was deleted.

Loading

0 comments on commit 3a273cf

Please sign in to comment.