- Update to v0.14.0 * Changes in release 0.14.0 + Add configuration option to disable signing (Fixes #817) + Upgrade dependencies + Make share.queryInfo public to allow for exensibility (Fixes #836) + Add support for querying volume information (Fixes #837) + Set sessionKey whenever we have it from authentication, prevents NPE when server incorrectly does not recognise guest or anon credentials (Fixes #792) OBS-URL: https://build.opensuse.org/request/show/1290152 OBS-URL: https://build.opensuse.org/package/show/Java:packages/smbj?expand=0&rev=2
65 lines
2.3 KiB
XML
65 lines
2.3 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<!-- This module was also published with a richer model, Gradle metadata, -->
|
|
<!-- which should be used instead. Do not delete the following line which -->
|
|
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
|
|
<!-- that they should prefer consuming it instead. -->
|
|
<!-- do_not_remove: published-with-gradle-metadata -->
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.hierynomus</groupId>
|
|
<artifactId>smbj</artifactId>
|
|
<version>0.14.0</version>
|
|
<name>smbj</name>
|
|
<description>SMB2 protocol library for communication with Windows servers</description>
|
|
<url>https://github.com/hierynomus/smbj</url>
|
|
<licenses>
|
|
<license>
|
|
<name>The Apache License, Version 2.0</name>
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0</url>
|
|
<distribution>repo</distribution>
|
|
</license>
|
|
</licenses>
|
|
<developers>
|
|
<developer>
|
|
<id>hierynomus</id>
|
|
<name>Jeroen van Erp</name>
|
|
<email>jeroen@hierynomus.com</email>
|
|
</developer>
|
|
</developers>
|
|
<scm>
|
|
<connection>scm:git@github.com:hierynomus/smbj.git</connection>
|
|
<developerConnection>scm:git@github.com:hierynomus/smbj.git</developerConnection>
|
|
<url>https://github.com/hierynomus/smbj</url>
|
|
</scm>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>2.0.9</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.bouncycastle</groupId>
|
|
<artifactId>bcprov-jdk18on</artifactId>
|
|
<version>1.79</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.engio</groupId>
|
|
<artifactId>mbassador</artifactId>
|
|
<version>1.3.0</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.hierynomus</groupId>
|
|
<artifactId>asn-one</artifactId>
|
|
<version>0.6.0</version>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
<issueManagement>
|
|
<system>GitHub</system>
|
|
<url>https://github.com/hierynomus/smbj/issues</url>
|
|
</issueManagement>
|
|
</project>
|