free web creation software

Components

The JFileServer code is split into a number of components to make it easy to include in your own projects. The following components are available with more being added in the near future.

Component Group IdArtifact IdVersionNotesRepository
Core file serverorg.filesysjfileserver1.3.6The main file server classesMaven Central
PostGreSQL database filesystemorg.filesysjfileserver-db-postgres1.3.6PostGreSQL database virtual filesystemMaven Central
Alfresco embedded file serverorg.filesysjfileserver-alfresco-embed1.3.6Alfresco embedded core file server classesMaven Central
Enterprise file serverorg.filesysjfileserver-enterprise1.2.6Enterprise file server with SMB2/SMB3Filesys.org

Maven Central components

When using JFileServer components that are available from Maven Central you can simply add them as a dependency in your POM. For example, to use the core JFileServer classes you would add the following into the <dependencies> section :-

        <dependency>
            <groupId>org.filesys</groupId>
            <artifactId>jfileserver</artifactId>
            <version>1.3.6</version>
        </dependency>

Filesys.org Components

To use components that are hosted on the filesys.org Maven repository you will need to add an entry for the repository as well as the dependency to your POM.

    <repositories>
        <!-- JFileServer Enterprise -->
        <repository>
            <releases>
                <enabled>true</enabled>
                <updatePolicy>always</updatePolicy>
                <checksumPolicy>fail</checksumPolicy>
            </releases>
            <id>jfileserver-enterprise</id>
            <name>JFileServer Enterprise Library Maven Repository</name>
            <url>http://www.filesys.org/maven/</url>
            <layout>default</layout>
        </repository>
    </repositories>

    <dependencies>
       <dependency>
            <groupId>org.filesys</groupId>
            <artifactId>jfileserver-enterprise</artifactId>
            <version>1.2.6</version>
        </dependency>
    </dependencies>

-> Protocols

© Copyright 2023 FileSys.Org - All Rights Reserved