com.github.vskrahul:properties-parser

Properties Parser

Лицензия

Лицензия

Группа

Группа

com.github.vskrahul
Идентификатор

Идентификатор

properties-parser
Последняя версия

Последняя версия

1.0.2
Дата

Дата

Тип

Тип

jar
Описание

Описание

com.github.vskrahul:properties-parser
Properties Parser
Ссылка на сайт

Ссылка на сайт

https://github.com/vskrahul/properties-parser
Система контроля версий

Система контроля версий

https://github.com/vskrahul/properties-parser

Скачать properties-parser

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.github.vskrahul/properties-parser/ -->
<dependency>
    <groupId>com.github.vskrahul</groupId>
    <artifactId>properties-parser</artifactId>
    <version>1.0.2</version>
</dependency>
// https://jarcasting.com/artifacts/com.github.vskrahul/properties-parser/
implementation 'com.github.vskrahul:properties-parser:1.0.2'
// https://jarcasting.com/artifacts/com.github.vskrahul/properties-parser/
implementation ("com.github.vskrahul:properties-parser:1.0.2")
'com.github.vskrahul:properties-parser:jar:1.0.2'
<dependency org="com.github.vskrahul" name="properties-parser" rev="1.0.2">
  <artifact name="properties-parser" type="jar" />
</dependency>
@Grapes(
@Grab(group='com.github.vskrahul', module='properties-parser', version='1.0.2')
)
libraryDependencies += "com.github.vskrahul" % "properties-parser" % "1.0.2"
[com.github.vskrahul/properties-parser "1.0.2"]

Зависимости

compile (2)

Идентификатор библиотеки Тип Версия
org.slf4j : slf4j-api jar 1.7.25
org.slf4j : slf4j-simple jar 1.6.4

test (1)

Идентификатор библиотеки Тип Версия
org.testng : testng jar 6.14.3

Модули Проекта

Данный проект не имеет модулей.

Maven Central

Key Value Property parser

Parsing property file which has reference to other property.

This is a simple program which is covering basic following use cases:-

E.g.;

Before parsing

  1. a=1
  2. b=${a}+2
  3. c=${d}
  4. env=dev
  5. conection.dev=100
  6. max.connection=${connection.${env}}*1/2

After parsing it will be like...

  1. a=1
  2. b=1+2
  3. c=d
  4. env=dev
  5. conection.dev=100
  6. max.connection=100*1/2

Note: It has been assumed that there are no circular referencing properties.

Версии библиотеки

Версия
1.0.2
1.0.1
1.0.0