Skip to content

Commit

Permalink
Remove unused dependencies in pom (#27)
Browse files Browse the repository at this point in the history
* Remove unused dependencies in pom

* Remove unused dependencies in pom

---------

Co-authored-by: sks1995 <sumitkumar543@gmail.com>
  • Loading branch information
sks1995 and sks1995 authored Oct 18, 2023
1 parent 4c444bd commit 1524067
Showing 1 changed file with 3 additions and 43 deletions.
46 changes: 3 additions & 43 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
<slf4j-api.version>1.7.36</slf4j-api.version>
<snakeyaml.version>1.31</snakeyaml.version>
<spring-webflux.version>2.7.16</spring-webflux.version>
</properties>
<scm>
<connection>scm:git:git://github.com/intuit/rwebpulse.git</connection>
Expand All @@ -55,17 +56,6 @@
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework</groupId>
<artifactId>spring-web-reactive</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
Expand All @@ -75,32 +65,13 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<version>2.7.16</version>
</dependency>
<!-- https://mvnrepository.com/artifact/org.springframework/spring-webflux -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-webflux</artifactId>
</dependency>

<!-- https://mvnrepository.com/artifact/org.springframework/spring-web-reactive -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web-reactive</artifactId>
<version>5.0.0.M4</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpasyncclient -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpasyncclient</artifactId>
<version>4.1.5</version>
</dependency>

<!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.14</version>
<version>${spring-webflux.version}</version>
</dependency>


Expand All @@ -121,17 +92,6 @@
<scope>import</scope>
</dependency>

<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<version>5.1</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents.core5</groupId>
<artifactId>httpcore5-reactive</artifactId>
<version>5.1</version>
</dependency>

<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
Expand Down

0 comments on commit 1524067

Please sign in to comment.