MVN

com.lyders : application-properties

Maven & Gradle

Feb 15, 2021
1 usages
0 stars

ApplicationProperties Java properties loader · This ApplicationProperties Java package provides a fast and easily configurable application.properties loader that mimics some key features of the Spring Boot application.properties loader. This package allows for multi-level overloading of properties based on a basename and optional suffix by searching the classpath, optional configurable file paths along with the JNDI server container context. The class [ApplicationPropertiesConfig](src/main/java/com/lyders/application-properties/ApplicationPropertiesConfig.java) controls the features of the overloading of properties such as the base name of the properties file, an optional suffix that allows for the loading of environment-specific or scenario-specific property files as needed. The following features are supported: * Names of properties files can be customized * Locations of properties files can be customized. The following path types are supported: * class path * file system paths * JNDI environment naming context (e.g., Servlet/JSP running under Tomcat) * Environment-specific property files can override the values in default properties files via a "suffix"

<dependency>
    <groupId>com.lyders</groupId>
    <artifactId>application-properties</artifactId>
    <version>1.2.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of com.lyders : application-properties to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.2.1

All Versions

Choose a version of com.lyders : application-properties to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.2.x
application-properties-1.2.1
1.1.x
application-properties-1.1.8
application-properties-1.1.7
application-properties-1.1.6
application-properties-1.1.5
application-properties-1.1.4
application-properties-1.1.3
application-properties-1.1.2
application-properties-1.1.1
application-properties-1.1.0
1.0.x
application-properties-1.0.0

How to add a dependency to Maven

Add the following com.lyders : application-properties maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>com.lyders</groupId>
    <artifactId>application-properties</artifactId>
    <version>1.2.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following com.lyders : application-properties gradle dependency to your build.gradle file:

implementation 'com.lyders:application-properties:1.2.1'

Gradle Kotlin DSL: Add the following com.lyders : application-properties gradle kotlin dependency to your build.gradle.kts file:

implementation("com.lyders:application-properties:1.2.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following com.lyders : application-properties sbt scala dependency to your build.sbt file:

libraryDependencies += "com.lyders" % "application-properties" % "1.2.1"

Advertisement