Skip to content

Commit

Permalink
chore: Remove unused dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
peacekeeper committed Apr 10, 2024
1 parent d4d479a commit 0ba5b41
Showing 1 changed file with 16 additions and 30 deletions.
46 changes: 16 additions & 30 deletions driver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,54 +12,40 @@
</parent>

<properties>
<spring.boot.version>3.2.4</spring.boot.version>
<org.yaml.snakeyaml.version>2.2</org.yaml.snakeyaml.version>
<jakarta.servlet-api.version>6.0.0</jakarta.servlet-api.version>
<org.springframework-spring-web.version>6.1.5</org.springframework-spring-web.version>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring.boot.version}</version>
<type>pom</type>
<scope>import</scope>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<version>${jakarta.servlet-api.version}</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>${org.yaml.snakeyaml.version}</version>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>${org.springframework-spring-web.version}</version>
</dependency>
</dependencies>
</dependencyManagement>


<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jetty</artifactId>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>decentralized-identity</groupId>
<artifactId>uni-resolver-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
</dependency>
</dependencies>

</project>

0 comments on commit 0ba5b41

Please sign in to comment.