Skip to content

Commit

Permalink
working with play 3.0 with atmosphere 3.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
PedroBatista committed Apr 2, 2024
1 parent 6c772ca commit 731e56c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 7 deletions.
7 changes: 5 additions & 2 deletions module/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,13 @@
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-servlet_3.0_spec</artifactId>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>6.1.0-M2</version>
</dependency>



<!-- Test -->
<dependency>
<groupId>com.ning</groupId>
Expand Down
20 changes: 15 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,16 @@
<version>3.0.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.pekko</groupId>
<artifactId>pekko-actor_3</artifactId>
<version>1.0.3-M1</version>
</dependency>
<dependency>
<groupId>org.apache.pekko</groupId>
<artifactId>pekko-actor-typed_3</artifactId>
<version>1.0.3-M1</version>
</dependency>
<dependency>
<groupId>org.atmosphere</groupId>
<artifactId>atmosphere-play</artifactId>
Expand All @@ -71,11 +81,11 @@
<artifactId>logback-core</artifactId>
<version>1.3.12</version>
</dependency>

<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-servlet_3.0_spec</artifactId>
<version>1.0</version>
<optional>true</optional>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>6.1.0-M2</version>
</dependency>

<!-- Test -->
Expand Down Expand Up @@ -253,7 +263,7 @@
<surefire.redirectTestOutputToFile>false</surefire.redirectTestOutputToFile>
<source.property>1.8</source.property>
<target.property>11</target.property>
<atmosphere.version>2.7.6</atmosphere.version>
<atmosphere.version>3.0.5</atmosphere.version>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>
Expand Down

0 comments on commit 731e56c

Please sign in to comment.