MVN

net.sf.ssg.tools : EasyConfig

Maven & Gradle

Feb 01, 2013

EasyConfig · EasyConfig provides simple way to overview and apply settings to file or folder based collections of files. Synonyms to "setting" are property, attribute, value while throughout application "setting" is used. The settings are groupped in "configuration" that is collection of settings from various sources. Main design concepts are: * minimalistic way to describe configuration * pluggable support for data types (validation), setting sources, source handlers Sample use case: An application is deployed in multiple locations. We need to quickly check key settings/parameters and optionally modify some of them. These values are located in different places: - in files directly in file structure - in files inside archive files (optionally nested archives) - values in DB tables - values accessible via URLs - other sources (just guessed: SSH/telnet connection+some command(s), UPnP devices, proprietary protocols, etc) We gather info from any supported (extendable) source and can modify and apply changes if supported by source (e.g. we can't update value that is count of rows in DB table, but we can read that value).

<dependency>
    <groupId>net.sf.ssg.tools</groupId>
    <artifactId>EasyConfig</artifactId>
    <version>0.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of net.sf.ssg.tools : EasyConfig to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 0.1

All Versions

Choose a version of net.sf.ssg.tools : EasyConfig to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
0.1
EasyConfig-0.1

How to add a dependency to Maven

Add the following net.sf.ssg.tools : EasyConfig maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>net.sf.ssg.tools</groupId>
    <artifactId>EasyConfig</artifactId>
    <version>0.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following net.sf.ssg.tools : EasyConfig gradle dependency to your build.gradle file:

implementation 'net.sf.ssg.tools:EasyConfig:0.1'

Gradle Kotlin DSL: Add the following net.sf.ssg.tools : EasyConfig gradle kotlin dependency to your build.gradle.kts file:

implementation("net.sf.ssg.tools:EasyConfig:0.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following net.sf.ssg.tools : EasyConfig sbt scala dependency to your build.sbt file:

libraryDependencies += "net.sf.ssg.tools" % "EasyConfig" % "0.1"