Skip to content

Commit

Permalink
Upgraded dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
robertvazan committed Nov 16, 2023
1 parent 71708e3 commit 514bd25
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 25 deletions.
44 changes: 22 additions & 22 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,83 +52,83 @@
<dependency>
<groupId>com.machinezoo.noexception</groupId>
<artifactId>noexception</artifactId>
<version>1.9.0</version>
<version>1.9.1</version>
</dependency>
<dependency>
<groupId>com.machinezoo.hookless</groupId>
<artifactId>hookless</artifactId>
<version>0.16.0</version>
<version>0.16.1</version>
</dependency>
<dependency>
<groupId>com.machinezoo.pushmode</groupId>
<artifactId>pushmode</artifactId>
<version>0.8.3</version>
<version>0.8.5</version>
</dependency>
<dependency>
<groupId>com.machinezoo.pmsite</groupId>
<artifactId>pmsite</artifactId>
<version>0.18.6</version>
<version>0.18.8</version>
</dependency>
<dependency>
<groupId>com.machinezoo.meerkatwidgets</groupId>
<artifactId>meerkatwidgets</artifactId>
<version>0.1.0</version>
<version>0.2.1</version>
</dependency>
<dependency>
<groupId>com.machinezoo.foxcache</groupId>
<artifactId>foxcache</artifactId>
<version>0.1.2</version>
<version>0.1.4</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>32.0.0-jre</version>
<version>32.1.3-jre</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
<version>3.13.0</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.32</version>
<version>2.0.9</version>
</dependency>
<dependency>
<groupId>org.jfree</groupId>
<artifactId>jfreechart</artifactId>
<version>1.5.3</version>
<version>1.5.4</version>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-dom</artifactId>
<version>1.14</version>
<version>1.17</version>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-svggen</artifactId>
<version>1.14</version>
<version>1.17</version>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
<artifactId>batik-awt-util</artifactId>
<version>1.14</version>
<version>1.17</version>
</dependency>
<dependency>
<groupId>com.github.haifengl</groupId>
<artifactId>smile-plot</artifactId>
<version>2.6.0</version>
<version>3.0.2</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.8.2</version>
<version>5.10.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.github.valfirst</groupId>
<artifactId>slf4j-test</artifactId>
<version>2.3.0</version>
<version>3.0.1</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -137,16 +137,16 @@
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<version>3.11.0</version>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.1.2</version>
<version>3.2.2</version>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.7</version>
<version>0.8.11</version>
<executions>
<execution>
<id>prepare-agent</id>
Expand All @@ -166,7 +166,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.1</version>
<version>3.6.2</version>
<configuration>
<notimestamp>true</notimestamp>
<doclint>all,-missing</doclint>
Expand All @@ -189,7 +189,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.0.1</version>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-sources</id>
Expand Down Expand Up @@ -220,7 +220,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
<version>3.1.0</version>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
Expand Down
6 changes: 3 additions & 3 deletions scripts/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ def dependencies(self):
yield self.use_guava()
yield self.use_commons_lang()
yield self.use_slf4j()
yield self.use('org.jfree:jfreechart:1.5.3')
yield self.use('org.jfree:jfreechart:1.5.4')
# Batik is used to render charts into SVG.
batik_version = '1.14'
batik_version = '1.17'
yield self.use(f'org.apache.xmlgraphics:batik-dom:{batik_version}')
yield self.use(f'org.apache.xmlgraphics:batik-svggen:{batik_version}')
yield self.use(f'org.apache.xmlgraphics:batik-awt-util:{batik_version}')
yield self.use('com.github.haifengl:smile-plot:2.6.0')
yield self.use('com.github.haifengl:smile-plot:3.0.2')
yield self.use_junit()
yield self.use_slf4j_test()

Expand Down

0 comments on commit 514bd25

Please sign in to comment.