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>org.samba.jcifs</groupId> <artifactId>jcifs</artifactId> <version>1.3.3</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.3. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Http | mule-transport-http 3.2.0 A Mule transport for Http Connectivity. This transport supplies a simple Http Server implementation. | 5 |
Http | mule-transport-http 3.3.0 A Mule transport for Http Connectivity. This transport supplies a simple Http Server implementation. | 5 |
Http | mule-transport-http 3.3.1 A Mule transport for Http Connectivity. This transport supplies a simple Http Server implementation. | 5 |
The following plugins are used in the jcifs-1.3.3.jar
The following packages are defined in the jcifs-1.3.3.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>org.samba.jcifs</groupId> <artifactId>jcifs</artifactId> <version>1.3.3</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> <distributionManagement> <repository> <id>java.net-m2-repository</id> <url>java-net:/maven2-repository/trunk/www/repository/</url> </repository> </distributionManagement> <build> <plugins> <!-- fake out maven and install the binary artifact --> <plugin> <groupId>org.jvnet.maven-antrun-extended-plugin</groupId> <artifactId>maven-antrun-extended-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <attachArtifact file="jcifs-${version}.jar" /> <attachArtifact file="jcifs-${version}.zip" classifier="sources" type="jar"/> </tasks> </configuration> </execution> </executions> </plugin> </plugins> <extensions> <extension> <groupId>org.jvnet.wagon-svn</groupId> <artifactId>wagon-svn</artifactId> <version>1.9</version> </extension> </extensions> </build> <pluginRepositories> <pluginRepository> <id>maven2-repository.dev.java.net</id> <name>Java.net Repository for Maven</name> <url>http://download.java.net/maven/2/</url> </pluginRepository> </pluginRepositories> </project>