g-db
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>net.sf.gee</groupId>
<artifactId>g-db</artifactId>
<version>1.1.0</version>
</dependency><project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<!-- ============================================================================= -->
<!-- General Information -->
<!-- ============================================================================= -->
<modelVersion>4.0.0</modelVersion>
<artifactId>g-db</artifactId>
<version>1.1.0</version>
<name>g-db</name>
<description>G-DB is library to manage connection to database and operation that derives from it.</description>
<url>http://g-ee.sourceforge.net</url>
<!-- ============================================================================= -->
<!-- Parent POM Information -->
<!-- ============================================================================= -->
<parent>
<groupId>net.sf.gee</groupId>
<artifactId>g-parent</artifactId>
<version>0.1.18</version>
</parent>
<!-- ============================================================================= -->
<!-- License -->
<!-- ============================================================================= -->
<licenses>
<license>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<!-- ============================================================================= -->
<!-- Developers -->
<!-- ============================================================================= -->
<developers>
<developer>
<name>Giorgio Desideri</name>
<email>Giorgio Desideri</email>
<organization>Owner</organization>
<organizationUrl>http://www.example.com</organizationUrl>
</developer>
</developers>
<!-- ============================================================================= -->
<!-- Software Content Management -->
<!-- ============================================================================= -->
<scm>
<connection>scm:hg:https://bitbucket.org/kallsu/g-db</connection>
<developerConnection>scm:hg:https://bitbucket.org/kallsu/g-db</developerConnection>
<url>http://bitbucket.org/kallsu/g-db</url>
</scm>
<!-- ============================================================================= -->
<!-- Properties Information -->
<!-- ============================================================================= -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- G-Library version -->
<g-common.version>1.1.0</g-common.version>
<g-logger.version>1.2.0</g-logger.version>
<!-- Hibernate -->
<hibernate.version>4.3.7.Final</hibernate.version>
<hibernate-validator.version>5.1.3.Final</hibernate-validator.version>
<!-- C3p0 -->
<c3p0.version>0.9.1.2</c3p0.version>
</properties>
<!-- ============================================================================= -->
<!-- Dependencis Information -->
<!-- ============================================================================= -->
<dependencies>
<!-- G-Common -->
<dependency>
<groupId>net.sf.gee</groupId>
<artifactId>g-common</artifactId>
<version>${g-common.version}</version>
</dependency>
<!-- G-Logger -->
<dependency>
<groupId>net.sf.gee</groupId>
<artifactId>g-logger</artifactId>
<version>${g-logger.version}</version>
</dependency>
<!-- **************************** -->
<!-- External Libraries -->
<!-- **************************** -->
<!-- Hibernate Configuration -->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-entitymanager</artifactId>
<version>${hibernate.version}</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>${hibernate.version}</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
<version>${hibernate-validator.version}</version>
</dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-c3p0</artifactId>
<version>${hibernate.version}</version>
</dependency>
<!-- c3P0 Connection Pool -->
<dependency>
<groupId>c3p0</groupId>
<artifactId>c3p0</artifactId>
<version>${c3p0.version}</version>
</dependency>
</dependencies>
<!-- ============================================================================= -->
<!-- REPOSITORY Information -->
<!-- ============================================================================= -->
<repositories>
<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>
</repositories>
<!-- ============================================================================= -->
<!-- Build Information -->
<!-- ============================================================================= -->
<build>
<finalName>${project.artifactId}-${project.version}</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
</plugins>
</build>
</project>