Skip to content

Commit

Permalink
Merge pull request #100 from ligangty/master
Browse files Browse the repository at this point in the history
Remove web-commons and update some dependencies
  • Loading branch information
ligangty authored Jan 12, 2024
2 parents 8f35612 + ed84a98 commit 4767386
Showing 1 changed file with 38 additions and 9 deletions.
47 changes: 38 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,18 +45,11 @@
<projectEmail>[email protected]</projectEmail>
<pmd.skip>true</pmd.skip>
<enforceBestPractices>false</enforceBestPractices>
<commonslangVersion>3.7</commonslangVersion>
<jacksonVerison>2.15.2</jacksonVerison>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.commonjava.boms</groupId>
<artifactId>web-commons-bom</artifactId>
<version>27</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.commonjava.atlas</groupId>
<artifactId>atlas-identities</artifactId>
Expand Down Expand Up @@ -85,7 +78,43 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commonslangVersion}</version>
<version>3.7</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.15</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.7</version>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.2.13</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jacksonVerison}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jacksonVerison}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jacksonVerison}</version>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down

0 comments on commit 4767386

Please sign in to comment.