Skip to content

Commit

Permalink
updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
raydac committed Dec 14, 2024
1 parent f3540ef commit b46a5e6
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
15 changes: 8 additions & 7 deletions mind-map/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<max.jdk.version>9</max.jdk.version>
<meta.version>1.2.1</meta.version>
</properties>

<modules>
Expand Down Expand Up @@ -97,7 +98,7 @@
<dependency>
<groupId>io.projectreactor</groupId>
<artifactId>reactor-core</artifactId>
<version>3.7.0</version>
<version>3.7.1</version>
</dependency>
<dependency>
<groupId>net.sf.jung</groupId>
Expand Down Expand Up @@ -134,7 +135,7 @@
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-streams</artifactId>
<version>3.8.0</version>
<version>3.9.0</version>
</dependency>
<dependency>
<groupId>org.apache.xmlgraphics</groupId>
Expand All @@ -159,12 +160,12 @@
<dependency>
<groupId>com.formdev</groupId>
<artifactId>flatlaf</artifactId>
<version>3.5.3</version>
<version>3.5.4</version>
</dependency>
<dependency>
<groupId>com.formdev</groupId>
<artifactId>flatlaf-intellij-themes</artifactId>
<version>3.5.3</version>
<version>3.5.4</version>
</dependency>
<dependency>
<groupId>net.java.dev.jna</groupId>
Expand All @@ -189,12 +190,12 @@
<dependency>
<groupId>com.igormaznitsa</groupId>
<artifactId>meta-annotations</artifactId>
<version>1.1.3</version>
<version>${meta.version}</version>
</dependency>
<dependency>
<groupId>com.igormaznitsa</groupId>
<artifactId>meta-utils</artifactId>
<version>1.1.3</version>
<version>${meta.version}</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
Expand Down Expand Up @@ -298,7 +299,7 @@
<plugin>
<groupId>com.igormaznitsa</groupId>
<artifactId>meta-checker</artifactId>
<version>1.1.3</version>
<version>${meta.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down
1 change: 1 addition & 0 deletions mind-map/scia-reto/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -943,6 +943,7 @@
<checkMayContainNull>true</checkMayContainNull>
<checkNullable>true</checkNullable>
<ignoreClasses>
<ignore>META-INF.*</ignore>
<ignore>*.KStreamsTopologyTokenMaker</ignore>
<ignore>*.DotScriptTokenMaker</ignore>
<ignore>*.NoteEditor</ignore>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
import com.igormaznitsa.mindmap.swing.i18n.MmdI18n;
import com.igormaznitsa.mindmap.swing.panel.MindMapPanelConfig;
import com.igormaznitsa.mindmap.swing.panel.utils.Utils;
import com.igormaznitsa.mindmap.swing.services.UIComponentFactory;
import com.igormaznitsa.mindmap.swing.services.UIComponentFactoryProvider;
import com.igormaznitsa.sciareto.SciaRetoStarter;
import com.igormaznitsa.sciareto.preferences.PreferencesManager;
Expand Down Expand Up @@ -333,7 +332,7 @@ public static Image loadIcon(@Nonnull final String name) {
} catch (IOException ex) {
result = null;
} finally {
IOUtils.closeQuetly(inStream);
IOUtils.closeQuietly(inStream);
}
}
return result;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ protected byte[] executeDot(@Nonnull final String script, @Nonnull final String
if (state == ExeState.OK) {
final ByteArrayOutputStream bos = new ByteArrayOutputStream();
final ProcessState processState = wizard.createFile3(bos);
IOUtils.closeQuetly(bos);
IOUtils.closeQuietly(bos);
final byte[] formedContent = bos.toByteArray();

if (processState.differs(ProcessState.TERMINATED_OK())) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
import com.igormaznitsa.mindmap.model.logger.Logger;
import com.igormaznitsa.mindmap.model.logger.LoggerFactory;
import com.igormaznitsa.sciareto.Context;
import com.igormaznitsa.sciareto.preferences.PrefUtils;
import com.igormaznitsa.sciareto.ui.MainFrame;
import java.io.File;
import java.io.IOException;
Expand Down Expand Up @@ -198,7 +197,7 @@ public void close() {
}
};
}
}, Flux::fromIterable, IOUtils::closeQuetly)
}, Flux::fromIterable, IOUtils::closeQuietly)
.parallel()
.runOn(MainFrame.REACTOR_SCHEDULER)
.doOnError(error -> {
Expand Down

0 comments on commit b46a5e6

Please sign in to comment.