Skip to content

Commit

Permalink
Pick correct gson version.
Browse files Browse the repository at this point in the history
  • Loading branch information
uhafner committed May 1, 2021
1 parent 0ecc2cd commit 84ff50c
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>edu.hm.hafner</groupId>
<artifactId>codingstyle-pom</artifactId>
<version>2.5.0</version>
<relativePath />
<version>2.7.1</version>
<relativePath/>
</parent>

<artifactId>analysis-model</artifactId>
Expand Down Expand Up @@ -60,7 +61,7 @@
<incrementals.url>https://repo.jenkins-ci.org/incrementals/</incrementals.url>

<!-- Project Dependencies Configuration -->
<codingstyle.library.version>2.4.0</codingstyle.library.version>
<codingstyle.library.version>2.5.0</codingstyle.library.version>
<codingstyle.config.version>${codingstyle.library.version}</codingstyle.config.version>

<jmh.version>1.29</jmh.version>
Expand All @@ -82,6 +83,16 @@

</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.6</version>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>

<dependency>
Expand Down

0 comments on commit 84ff50c

Please sign in to comment.