MVN

org.beigesoft : beige-settings

Maven & Gradle

Dec 24, 2016
5 usages

Beigesoft settings library. · It helps to quickly make settings for class and its fields of with properties XML. Instead of create a lot of files to describe every class and its fields it use describing by type, by name. E.g. setting "java.lang.Integer"-"INTEGER NOT NULL" will be assigned fo every field of this type. Of course it can be overriden by settings for field name and so on. It is used by beige-web to describe how to render an entity and convert from HTML value. It is used by beige-orm to describe how to map an entity to a DBMS. It make simple settings - Map<String, String>, e.g. "title"-"Beige ORM 1.1", class settings Map<String, Map<String, String>>, e.g. "org.mode.Customer"-["defaultOrder"-"ITSNAME", "wdgFilterOrder"-"filterOrderStd"], fields settings Map<String, Map<String, Map<String, String>>>, e.g. "org.mode.Customer"-["itsId"["wdgNew"-"null", "wdgFilter"-"filterNumber"]]

<dependency>
    <groupId>org.beigesoft</groupId>
    <artifactId>beige-settings</artifactId>
    <version>1.1.3</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.beigesoft : beige-settings to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.1.3

All Versions

Choose a version of org.beigesoft : beige-settings to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.1.x
beige-settings-1.1.3
beige-settings-1.1.2
beige-settings-1.1.1
beige-settings-1.1.0

How to add a dependency to Maven

Add the following org.beigesoft : beige-settings maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.beigesoft</groupId>
    <artifactId>beige-settings</artifactId>
    <version>1.1.3</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.beigesoft : beige-settings gradle dependency to your build.gradle file:

implementation 'org.beigesoft:beige-settings:1.1.3'

Gradle Kotlin DSL: Add the following org.beigesoft : beige-settings gradle kotlin dependency to your build.gradle.kts file:

implementation("org.beigesoft:beige-settings:1.1.3")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.beigesoft : beige-settings sbt scala dependency to your build.sbt file:

libraryDependencies += "org.beigesoft" % "beige-settings" % "1.1.3"