hibernate-orm/libraries.gradle

122 lines
5.6 KiB
Groovy
Raw Normal View History

2012-08-22 14:41:16 -04:00
/*
* Hibernate, Relational Persistence for Idiomatic Java
*
* Copyright (c) 2012, Red Hat Inc. or third-party contributors as
* indicated by the @author tags or express copyright attribution
* statements applied by the authors. All third-party contributions are
* distributed under license by Red Hat Inc.
*
* This copyrighted material is made available to anyone wishing to use, modify,
* copy, or redistribute it subject to the terms and conditions of the GNU
* Lesser General Public License, as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this distribution; if not, write to:
* Free Software Foundation, Inc.
* 51 Franklin Street, Fifth Floor
* Boston, MA 02110-1301 USA
*/
2012-08-08 05:09:11 -04:00
// build a map of the dependency artifacts to use. Allows centralized definition of the version of artifacts to
// use. In that respect it serves a role similar to <dependencyManagement> in Maven
ext {
2012-08-22 14:41:16 -04:00
junitVersion = '4.11'
2012-08-22 14:41:16 -04:00
h2Version = '1.2.145'
2013-02-20 16:54:00 -05:00
bytemanVersion = '2.1.2'
infinispanVersion = '7.1.0.Final'
2012-08-22 14:41:16 -04:00
jnpVersion = '5.0.6.CR1'
libraries = [
// Ant
ant: 'org.apache.ant:ant:1.8.2',
// Antlr
antlr: 'antlr:antlr:2.7.7',
// Annotations
commons_annotations: 'org.hibernate.common:hibernate-commons-annotations:4.0.5.Final',
jandex: 'org.jboss:jandex:1.1.0.Final',
classmate: 'com.fasterxml:classmate:0.8.0',
2012-08-22 14:41:16 -04:00
// Woodstox
woodstox: "org.codehaus.woodstox:woodstox-core-asl:4.3.0",
2012-08-22 14:41:16 -04:00
// Dom4J
dom4j: 'dom4j:dom4j:1.6.1@jar',
// Javassist
javassist: 'org.javassist:javassist:3.18.1-GA',
2012-08-22 14:41:16 -04:00
// javax
2013-07-26 14:00:01 -04:00
jpa: 'org.hibernate.javax.persistence:hibernate-jpa-2.1-api:1.0.0.Final',
jta: 'org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec:1.0.0.Final',
validation: 'javax.validation:validation-api:1.1.0.Final',
2013-01-23 18:22:03 -05:00
jacc: 'org.jboss.spec.javax.security.jacc:jboss-jacc-api_1.4_spec:1.0.2.Final',
2012-08-22 14:41:16 -04:00
// logging
logging: 'org.jboss.logging:jboss-logging:3.2.1.Final',
2015-03-05 09:31:27 -05:00
logging_annotations: 'org.jboss.logging:jboss-logging-annotations:1.2.0.Final',
logging_processor: 'org.jboss.logging:jboss-logging-processor:1.2.0.Final',
2012-08-22 14:41:16 -04:00
slf4j_api: "org.slf4j:slf4j-api:1.7.5",
slf4j_log4j: "org.slf4j:slf4j-log4j12:1.7.5",
2012-08-22 14:41:16 -04:00
// jaxb task
jaxb: 'com.sun.xml.bind:jaxb-xjc:2.2.5',
jaxb2_basics: 'org.jvnet.jaxb2_commons:jaxb2-basics:0.6.3',
jaxb2_ant: 'org.jvnet.jaxb2_commons:jaxb2-basics-ant:0.6.3',
jaxb2_jaxb: 'org.jvnet.jaxb2_commons:jaxb2-basics-jaxb:2.2.4-1',
jaxb2_jaxb_xjc: 'org.jvnet.jaxb2_commons:jaxb2-basics-jaxb-xjc:2.2.4-1',
// Animal Sniffer Ant Task and Java 1.6 API signature file
// not using 1.9 for the time being due to MANIMALSNIFFER-34
animal_sniffer: 'org.codehaus.mojo:animal-sniffer-ant-tasks:1.8',
java16_signature: 'org.codehaus.mojo.signature:java16:1.0@signature',
//Maven plugin framework
maven_plugin: 'org.apache.maven:maven-plugin-api:3.0.5',
maven_plugin_tools: 'org.apache.maven.plugin-tools:maven-plugin-annotations:3.2',
2012-08-22 14:41:16 -04:00
// ~~~~~~~~~~~~~~~~~~~~~~~~~~ testing
// logging for testing
2013-10-09 13:14:26 -04:00
log4j: "log4j:log4j:1.2.17",
2012-08-22 14:41:16 -04:00
junit: "junit:junit:${junitVersion}",
byteman: "org.jboss.byteman:byteman:${bytemanVersion}",
byteman_install: "org.jboss.byteman:byteman-install:${bytemanVersion}",
byteman_bmunit: "org.jboss.byteman:byteman-bmunit:${bytemanVersion}",
shrinkwrap_api: 'org.jboss.shrinkwrap:shrinkwrap-api:1.0.0-beta-6',
shrinkwrap: 'org.jboss.shrinkwrap:shrinkwrap-impl-base:1.0.0-beta-6',
validator: 'org.hibernate:hibernate-validator:5.0.1.Final',
2012-08-22 14:41:16 -04:00
h2: "com.h2database:h2:${h2Version}",
derby: "org.apache.derby:derby:10.9.1.0",
2012-08-22 14:41:16 -04:00
jboss_jta: "org.jboss.jbossts:jbossjta:4.16.4.Final",
xapool: "com.experlog:xapool:1.5.0",
mockito: 'org.mockito:mockito-core:1.9.0',
// required by Hibernate Validator at test runtime
unified_el: "org.glassfish:javax.el:3.0-b07",
2012-08-22 14:41:16 -04:00
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~ infinsipan
infinispan: "org.infinispan:infinispan-core:${infinispanVersion}",
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~ infinispan test
infinispan_test: "org.infinispan:infinispan-core:${infinispanVersion}:tests@jar",
rhq: "org.rhq.helpers:rhq-pluginAnnotations:3.0.4",
jboss_common_core: "org.jboss:jboss-common-core:2.2.16.GA@jar",
jnp_client: "org.jboss.naming:jnp-client:${jnpVersion}",
jnp_server: "org.jboss.naming:jnpserver:${jnpVersion}",
2013-07-03 10:04:40 -04:00
c3p0: "com.mchange:c3p0:0.9.2.1",
2012-08-22 14:41:16 -04:00
ehcache: "net.sf.ehcache:ehcache-core:2.4.3",
proxool: "proxool:proxool:0.8.3",
hikaricp: "com.zaxxer:HikariCP-java6:2.3.3"
2012-08-22 14:41:16 -04:00
]
2012-08-08 05:09:11 -04:00
}