MVN

org.ow2.weblab.service : file-repository

Maven & Gradle

Dec 02, 2010

Resource Container using file system. · It's a file system repository. Just configure the file system folder and the component will save and load resources from files in this folder. When you save a resource, the component check if the resource's uri exists and if it's exists replace it, if not generate an unique uri for the repository and replace all old uris with the new one and save the resource. You can load every saved resource, and subresource.

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

Latest Version

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

  • Latest Stable: 1.6

All Versions

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

Version Vulnerabilities Updated
1.6
file-repository-1.6
1.5
file-repository-1.5
1.4
file-repository-1.4

How to add a dependency to Maven

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

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

How to add a dependency to Gradle

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

implementation 'org.ow2.weblab.service:file-repository:1.6'

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

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

How to add a dependency to SBT Scala

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

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