Skip to content

Commit

Permalink
Merge pull request #53 from ananjaykumar2/fixes/cache-dependency
Browse files Browse the repository at this point in the history
Fixes/cache dependency
  • Loading branch information
pranavrd authored Jun 11, 2024
2 parents 20330dc + 4cd5ce9 commit 40d8917
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions vertx/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,15 @@
<type>pom</type>
</dependency>
</dependencies>

</dependencyManagement>
<dependencies>
<!-- Packages for cache -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>33.0.0-jre</version>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-codegen</artifactId>
Expand Down Expand Up @@ -198,7 +205,7 @@
<!-- <violationSeverity>warning</violationSeverity> -->
<consoleOutput>true</consoleOutput>
<encoding>UTF-8</encoding>
<configLocation>google_checks.xml</configLocation>
<configLocation>vertx/google_checks.xml</configLocation>
<module name="LineLength">
<property name="max" value="120" />
</module>
Expand Down Expand Up @@ -361,7 +368,7 @@
<!-- <violationSeverity>warning</violationSeverity> -->
<consoleOutput>true</consoleOutput>
<encoding>UTF-8</encoding>
<configLocation>./google_checks.xml</configLocation>
<configLocation>vertx/google_checks.xml</configLocation>
<sourceDirectories>
<sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
</sourceDirectories>
Expand Down

0 comments on commit 40d8917

Please sign in to comment.