jCIFS.
JCIFS is an Open Source client library that implements the CIFS/SMB networking protocol in 100% Java.
Here is the list of declaration for jcifs. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>jcifs</groupId> <artifactId>jcifs</artifactId> <version>1.3.17</version> </dependency>
If you think this Maven repository POM file listing for jcifs is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:GNU Lesser General Public License, version 2.1
URL: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt.
The following table lists the most popular artifacts which are depending on jcifs-1.3.17. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Library | overthere 2.4.3 Remote file manipulation and process execution framework for Java | 6 |
JDBC | jtds 1.3.1 jTDS is an open source 100% pure Java (type 4) JDBC 3.0 driver for Microsoft SQL Server (6.5, 7, 2000, 2005, 2008, 2012) and Sybase ASE (10, 11, 12, 15). jTDS is based on FreeTDS and is currently the fastest production-ready JDBC driver for SQL Server and Sybase. jTDS is 100% JDBC ... | 23 |
JDBC | jtds 1.3.0 jTDS is an open source 100% pure Java (type 4) JDBC 3.0 driver for Microsoft SQL Server (6.5, 7, 2000, 2005, 2008, 2012) and Sybase ASE (10, 11, 12, 15). jTDS is based on FreeTDS and is currently the fastest production-ready JDBC driver for SQL Server and Sybase. jTDS is 100% JDBC ... | 13 |
The following plugins are used in the jcifs-1.3.17.jar
The following packages are defined in the jcifs-1.3.17.jar
jcifs jcifs.dcerpc jcifs.dcerpc.msrpc jcifs.dcerpc.ndr jcifs.http jcifs.https jcifs.netbios jcifs.ntlmssp jcifs.smb jcifs.util jcifs.util.transport
Here is the content of the POM file.
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>jcifs</groupId>
<artifactId>jcifs</artifactId>
<version>1.3.17</version>
<packaging>jar</packaging>
<name>jCIFS</name>
<url>http://jcifs.samba.org</url>
<description>JCIFS is an Open Source client library that implements the CIFS/SMB networking protocol in 100% Java</description>
<licenses>
<license>
<name>GNU Lesser General Public License, version 2.1</name>
<url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>http://jcifs.samba.org/src/</url>
</scm>
<dependencies>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.4</version>
</dependency>
</dependencies>
<build>
<sourceDirectory>${project.basedir}/src</sourceDirectory>
<resources>
<resource>
<directory>src</directory>
<includes>
<include>**/*.map</include>
<include>**/*.css</include>
<include>**/*.idl</include>
</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>