Skip to content

Commit

Permalink
migration of moskito-springboot2 package to java11+ support and sprin…
Browse files Browse the repository at this point in the history
…gboot 3.3.x
  • Loading branch information
dvayanu committed Jul 19, 2024
1 parent c0f41d4 commit 3aeeb46
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 10 deletions.
17 changes: 9 additions & 8 deletions moskito-integration/moskito-springboot2/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

<parent>
<groupId>net.anotheria</groupId>
<artifactId>moskito-integration</artifactId>
<version>4.0.0-SNAPSHOT</version>
<artifactId>moskito-integration</artifactId>
<version>4.0.3-SNAPSHOT</version>
</parent>

<modelVersion>4.0.0</modelVersion>
<artifactId>moskito-springboot2</artifactId>
<version>4.0.0-SNAPSHOT</version>
<version>4.0.3-SNAPSHOT</version>
<name>moskito springboot 2 integration</name>

<dependencies>
Expand Down Expand Up @@ -36,24 +36,25 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<version>2.6.2</version>
<version>3.3.2</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot</artifactId>
<version>2.6.2</version>
<version>3.3.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
<version>2.6.2</version>
<version>3.3.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>6.0.0</version>
<scope>provided</scope>
</dependency>
</dependencies>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package net.anotheria.moskito.integration.springboot;

import javax.annotation.PostConstruct;
import jakarta.annotation.PostConstruct;
import net.anotheria.moskito.web.filters.AsyncSourceTldFilter;
import net.anotheria.moskito.web.filters.DebugRequestFilter;
import net.anotheria.moskito.web.filters.GenericMonitoringFilter;
Expand Down
2 changes: 1 addition & 1 deletion moskito-integration/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,6 @@
<module>moskito-inspect-remote</module>
<module>moskito-inspect-embedded</module>
<!-- <module>moskito-springboot</module>-->
<!-- <module>moskito-springboot2</module>-->
<module>moskito-springboot2</module>
</modules>
</project>

0 comments on commit 3aeeb46

Please sign in to comment.