MVN

org.ow2.weblab.service : simple-file-repository

Maven & Gradle

Jul 09, 2010

Simple Resource Container using file system. · It's a simple file system repository. Just configure the file system folder and the component will save and load resources from files in this folder. This implementation is able to save and get resources. The limitation are that it is not assigning an new URI. It hashes the existing one to save the files. It's also not able to get or save sub resources since it uses the hash as key. In most of the application, you'd rather to use the file-repository whitch is able to do so.

<dependency>
    <groupId>org.ow2.weblab.service</groupId>
    <artifactId>simple-file-repository</artifactId>
    <version>1.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.ow2.weblab.service : simple-file-repository to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0

All Versions

Choose a version of org.ow2.weblab.service : simple-file-repository to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0
simple-file-repository-1.0

How to add a dependency to Maven

Add the following org.ow2.weblab.service : simple-file-repository maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.ow2.weblab.service</groupId>
    <artifactId>simple-file-repository</artifactId>
    <version>1.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.ow2.weblab.service : simple-file-repository gradle dependency to your build.gradle file:

implementation 'org.ow2.weblab.service:simple-file-repository:1.0'

Gradle Kotlin DSL: Add the following org.ow2.weblab.service : simple-file-repository gradle kotlin dependency to your build.gradle.kts file:

implementation("org.ow2.weblab.service:simple-file-repository:1.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.ow2.weblab.service : simple-file-repository sbt scala dependency to your build.sbt file:

libraryDependencies += "org.ow2.weblab.service" % "simple-file-repository" % "1.0"