Skip to content

Commit

Permalink
Fix the broken resteasy-wildfly-spring-boot-sample-app
Browse files Browse the repository at this point in the history
  • Loading branch information
liweinan committed Nov 7, 2024
1 parent 6083680 commit 0c750eb
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions servlet/resteasy-wildfly-spring-boot-sample-app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,31 @@
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-servlet-spring-boot-starter</artifactId>
<exclusions>
<exclusion>
<groupId>org.jboss.resteasy.spring</groupId>
<artifactId>resteasy-spring</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-spring-boot-starter-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy.spring</groupId>
<artifactId>resteasy-spring</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
Expand Down

0 comments on commit 0c750eb

Please sign in to comment.