Skip to content

Commit

Permalink
Use Guava 30.0 in all children (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
berezovskyi committed Jun 5, 2021
1 parent 88366ac commit 1b7a55b
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 19 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@

### Fixed

- Make sure every Lyo dependency uses the same version of Guava (30.0)

## [4.0.0] - 2020-12-16

Expand Down
11 changes: 6 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
<v.slf4j>1.7.30</v.slf4j>
<v.servlet>3.1.0</v.servlet>
<v.httpclient>4.5.13</v.httpclient>
<v.guava>30.0-jre</v.guava>
</properties>


Expand Down Expand Up @@ -192,11 +193,6 @@
<version>${v.lyo}</version>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>30.0-jre</version>
</dependency>
<dependency>
<!-- CQ 6577 -->
<groupId>javax.xml.bind</groupId>
Expand Down Expand Up @@ -337,6 +333,11 @@
<artifactId>commons-io</artifactId>
<version>2.8.0</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${v.guava}</version>
</dependency>

<!--Convergence-->
<dependency>
Expand Down
5 changes: 0 additions & 5 deletions store/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,6 @@
<artifactId>slf4j-api</artifactId>
<version>${v.slf4j}</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>30.0-jre</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
Expand Down
6 changes: 0 additions & 6 deletions trs/client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,6 @@
<artifactId>oslc4j-core</artifactId>
<version>${v.lyo}</version>
</dependency>

<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>28.0-jre</version>
</dependency>
<dependency>
<groupId>org.eclipse.rdf4j</groupId>
<artifactId>rdf4j-repository-sparql</artifactId>
Expand Down
1 change: 0 additions & 1 deletion trs/server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>26.0-jre</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down
2 changes: 0 additions & 2 deletions validation/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,9 @@
<type>pom</type>
</dependency>-->

<!-- Guava Library -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>30.0-jre</version>
</dependency>

<!-- OSLC Core Libraries -->
Expand Down

0 comments on commit 1b7a55b

Please sign in to comment.