Menu

Home

G-EE Libraries

Description

G-EE libraries is a set of JAVA libraries released under Apache License 2.0 that represent a basis core-tools for application, enterprise and not, because they cover key points of software development.

G-EE libraries are:

  • g-common, library that contains all "common" workarounds that a developer use to avoid to centralize and not re-write the same piece of code more times. See g-common.

  • g-logger, library that implements a centralize point to manage the log sytem inside your application, more easy and avoid to developer to spend more time in configuration and coding. See g-logger.

  • g-db, library that simplify the access to source connection with database. Use a SQL connection or Hibernate framework. See g-db.

  • g-properties, library that implements and manage the loading and re-loading of all properties files. See g-properties.

Thanks for using these libraries and for help me to improve it

Installation

You can download the code, using this site inside Download section.

Or using maven, need to add following snippet of code to your pom.xml or settings.xml, under <repositories> tag.

This following is for stable releases.

        <repository>
            <releases>
                <enabled>true</enabled>
                <updatePolicy>never</updatePolicy>
                <checksumPolicy>warn</checksumPolicy>
            </releases>

            <snapshots>
                <enabled>false</enabled>
                <updatePolicy>always</updatePolicy>
                <checksumPolicy>fail</checksumPolicy>
            </snapshots>

            <id>orssh-releases</id>
            <name>Open Source Software - Releases</name>
            <url>https://oss.sonatype.org/content/repositories/releases</url>
            <layout>default</layout>
        </repository>

This following for snapshots.

        <repository>
            <releases>
                <enabled>false</enabled>
                <updatePolicy>never</updatePolicy>
                <checksumPolicy>warn</checksumPolicy>
            </releases>

            <snapshots>
                <enabled>true</enabled>
                <updatePolicy>always</updatePolicy>
                <checksumPolicy>fail</checksumPolicy>
            </snapshots>

            <id>orssh-snapshots</id>
            <name>Open Source Software - Snapshots</name>
            <url>https://oss.sonatype.org/content/repositories/snapshots</url>
            <layout>default</layout>
        </repository>

Usage

For usage, please see specific page of this wiki with examples and documentation.

Project Members: