HHH-5616 - Switch to Gradle for builds .. incorrect .gitignore
This commit is contained in:
parent
b5f4f8aebc
commit
2443fede65
|
@ -1,7 +1,6 @@
|
||||||
.gradle
|
.gradle
|
||||||
target
|
target
|
||||||
build
|
build
|
||||||
local
|
|
||||||
.idea
|
.idea
|
||||||
.idea/*
|
.idea/*
|
||||||
*.ipr
|
*.ipr
|
||||||
|
@ -13,5 +12,4 @@ atlassian-ide-plugin.xml
|
||||||
.settings
|
.settings
|
||||||
.nbattrs
|
.nbattrs
|
||||||
*.log
|
*.log
|
||||||
*.properties
|
|
||||||
.clover
|
.clover
|
||||||
|
|
20
build.gradle
20
build.gradle
|
@ -88,7 +88,7 @@ subprojects { subProject ->
|
||||||
if ( ! subProject.name.startsWith( 'hibernate-release' ) ) {
|
if ( ! subProject.name.startsWith( 'hibernate-release' ) ) {
|
||||||
apply plugin: 'java'
|
apply plugin: 'java'
|
||||||
apply plugin: 'maven' // for install task as well as deploy dependencies
|
apply plugin: 'maven' // for install task as well as deploy dependencies
|
||||||
// apply plugin: org.hibernate.build.gradle.upload.UploadManager
|
apply plugin: org.hibernate.build.gradle.upload.UploadManager
|
||||||
|
|
||||||
configurations {
|
configurations {
|
||||||
provided {
|
provided {
|
||||||
|
@ -205,15 +205,15 @@ subprojects { subProject ->
|
||||||
name = 'jbossDeployer'
|
name = 'jbossDeployer'
|
||||||
configuration = configurations.deployerJars
|
configuration = configurations.deployerJars
|
||||||
pom.project pomConfig
|
pom.project pomConfig
|
||||||
// repository(url: "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/")
|
repository(url: "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/")
|
||||||
// snapshotRepository(url: "https://repository.jboss.org/nexus/content/repositories/snapshots")
|
snapshotRepository(url: "https://repository.jboss.org/nexus/content/repositories/snapshots")
|
||||||
credentials = [userName: JBOSS_NEXUS_USERNAME, password: JBOSS_NEXUS_PASSWORD]
|
// credentials = [userName: JBOSS_NEXUS_USERNAME, password: JBOSS_NEXUS_PASSWORD]
|
||||||
repository(url: "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/") {
|
// repository(url: "https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/") {
|
||||||
authentication(credentials)
|
// authentication(credentials)
|
||||||
}
|
// }
|
||||||
snapshotRepository(url: "https://repository.jboss.org/nexus/content/repositories/snapshots") {
|
// snapshotRepository(url: "https://repository.jboss.org/nexus/content/repositories/snapshots") {
|
||||||
authentication(credentials)
|
// authentication(credentials)
|
||||||
}
|
// }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,36 @@
|
||||||
|
#
|
||||||
|
# Hibernate, Relational Persistence for Idiomatic Java
|
||||||
|
#
|
||||||
|
# Copyright (c) 2010, 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
|
||||||
|
#
|
||||||
|
hibernate.dialect org.hibernate.dialect.H2Dialect
|
||||||
|
hibernate.connection.driver_class org.h2.Driver
|
||||||
|
hibernate.connection.url jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE
|
||||||
|
hibernate.connection.username sa
|
||||||
|
|
||||||
|
hibernate.connection.pool_size 5
|
||||||
|
|
||||||
|
hibernate.show_sql true
|
||||||
|
|
||||||
|
hibernate.max_fetch_depth 5
|
||||||
|
|
||||||
|
hibernate.cache.region_prefix hibernate.test
|
||||||
|
hibernate.cache.provider_class org.hibernate.cache.HashtableCacheProvider
|
|
@ -0,0 +1,16 @@
|
||||||
|
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
|
||||||
|
log4j.appender.stdout.Target=System.out
|
||||||
|
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
|
||||||
|
log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n
|
||||||
|
|
||||||
|
|
||||||
|
log4j.rootLogger=info, stdout
|
||||||
|
|
||||||
|
log4j.logger.org.hibernate.test=info
|
||||||
|
log4j.logger.org.hibernate.tool.hbm2ddl=debug
|
||||||
|
log4j.logger.org.hibernate.hql.ast.QueryTranslatorImpl=trace
|
||||||
|
log4j.logger.org.hibernate.hql.ast.HqlSqlWalker=trace
|
||||||
|
log4j.logger.org.hibernate.hql.ast.SqlGenerator=trace
|
||||||
|
log4j.logger.org.hibernate.hql.ast.AST=trace
|
||||||
|
log4j.logger.org.hibernate.type.descriptor.sql.BasicBinder=trace
|
||||||
|
log4j.logger.org.hibernate.type.BasicTypeRegistry=trace
|
|
@ -0,0 +1,31 @@
|
||||||
|
#
|
||||||
|
# Hibernate, Relational Persistence for Idiomatic Java
|
||||||
|
#
|
||||||
|
# Copyright (c) 2010, 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
|
||||||
|
#
|
||||||
|
hibernate.dialect org.hibernate.dialect.H2Dialect
|
||||||
|
hibernate.connection.driver_class org.h2.Driver
|
||||||
|
hibernate.connection.url jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE
|
||||||
|
hibernate.connection.username sa
|
||||||
|
|
||||||
|
hibernate.connection.pool_size 5
|
||||||
|
|
||||||
|
hibernate.cache.region_prefix hibernate.test
|
|
@ -0,0 +1,32 @@
|
||||||
|
################################################################################
|
||||||
|
# Hibernate, Relational Persistence for Idiomatic Java #
|
||||||
|
# #
|
||||||
|
# Copyright (c) 2007, Red Hat Middleware LLC 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 Middleware LLC. #
|
||||||
|
# #
|
||||||
|
# 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 #
|
||||||
|
################################################################################
|
||||||
|
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
|
||||||
|
log4j.appender.stdout.Target=System.out
|
||||||
|
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
|
||||||
|
log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n
|
||||||
|
|
||||||
|
|
||||||
|
log4j.rootLogger=info, stdout
|
||||||
|
|
||||||
|
log4j.logger.org.hibernate.test=info
|
|
@ -0,0 +1,5 @@
|
||||||
|
hibernate.connection.driver_class ${jdbc.driver}
|
||||||
|
hibernate.connection.url ${jdbc.url}
|
||||||
|
hibernate.connection.username ${jdbc.user}
|
||||||
|
hibernate.connection.password ${jdbc.pass}
|
||||||
|
hibernate.connection.isolation ${jdbc.isolation}
|
|
@ -0,0 +1,38 @@
|
||||||
|
#
|
||||||
|
# Hibernate, Relational Persistence for Idiomatic Java
|
||||||
|
#
|
||||||
|
# Copyright (c) 2010, 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
|
||||||
|
#
|
||||||
|
hibernate.dialect org.hibernate.dialect.H2Dialect
|
||||||
|
hibernate.connection.driver_class org.h2.Driver
|
||||||
|
hibernate.connection.url jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE
|
||||||
|
hibernate.connection.username sa
|
||||||
|
|
||||||
|
hibernate.connection.pool_size 5
|
||||||
|
|
||||||
|
hibernate.show_sql true
|
||||||
|
|
||||||
|
hibernate.max_fetch_depth 5
|
||||||
|
|
||||||
|
hibernate.cache.region_prefix hibernate.test
|
||||||
|
hibernate.cache.provider_class org.hibernate.cache.HashtableCacheProvider
|
||||||
|
|
||||||
|
hibernate.jdbc.batch_size 0
|
|
@ -0,0 +1,39 @@
|
||||||
|
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
|
||||||
|
log4j.appender.stdout.Target=System.out
|
||||||
|
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
|
||||||
|
log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n
|
||||||
|
|
||||||
|
log4j.rootLogger=warn, stdout
|
||||||
|
|
||||||
|
log4j.logger.org.hibernate=debug
|
||||||
|
#log4j.logger.org.hibernate=debug
|
||||||
|
|
||||||
|
log4j.logger.org.hibernate.ejb=debug
|
||||||
|
log4j.logger.org.hibernate.ejb.packaging=debug
|
||||||
|
log4j.logger.org.hibernate.reflection=debug
|
||||||
|
|
||||||
|
#log4j.logger.org.hibernate.engine.Cascades=debug
|
||||||
|
#log4j.logger.org.hibernate.hql=debug
|
||||||
|
|
||||||
|
### log just the SQL
|
||||||
|
log4j.logger.org.hibernate.SQL=debug
|
||||||
|
|
||||||
|
### log JDBC bind parameters ###
|
||||||
|
#log4j.logger.org.hibernate.type=info
|
||||||
|
log4j.logger.org.hibernate.type=trace
|
||||||
|
|
||||||
|
### log schema export/update ###
|
||||||
|
log4j.logger.org.hibernate.tool.hbm2ddl=debug
|
||||||
|
|
||||||
|
### log HQL parse trees
|
||||||
|
#log4j.logger.org.hibernate.hql=debug
|
||||||
|
|
||||||
|
### log cache activity ###
|
||||||
|
#log4j.logger.org.hibernate.cache=debug
|
||||||
|
|
||||||
|
### log JDBC resource acquisition
|
||||||
|
#log4j.logger.org.hibernate.jdbc=debug
|
||||||
|
|
||||||
|
### enable the following line if you want to track down connection ###
|
||||||
|
### leakages when using DriverManagerConnectionProvider ###
|
||||||
|
#log4j.logger.org.hibernate.connection.DriverManagerConnectionProvider=trace
|
|
@ -0,0 +1,32 @@
|
||||||
|
#
|
||||||
|
# Hibernate, Relational Persistence for Idiomatic Java
|
||||||
|
#
|
||||||
|
# Copyright (c) 2008, Red Hat Middleware LLC 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 Middleware LLC.
|
||||||
|
#
|
||||||
|
# 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
|
||||||
|
#
|
||||||
|
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
|
||||||
|
log4j.appender.stdout.Target=System.out
|
||||||
|
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
|
||||||
|
log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} %5p %c{1}:%L - %m%n
|
||||||
|
|
||||||
|
log4j.rootLogger=info, stdout
|
||||||
|
|
||||||
|
log4j.logger.org.hibernate.test=info
|
||||||
|
log4j.logger.org.hibernate.tool.hbm2ddl=debug
|
|
@ -0,0 +1,36 @@
|
||||||
|
################################################################################
|
||||||
|
# Hibernate, Relational Persistence for Idiomatic Java #
|
||||||
|
# #
|
||||||
|
# Copyright (c) 2007, Red Hat, Inc. and/or it's affiliates 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. and/or it's affiliates. #
|
||||||
|
# #
|
||||||
|
# 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 #
|
||||||
|
################################################################################
|
||||||
|
hibernate.dialect org.hibernate.dialect.HSQLDialect
|
||||||
|
hibernate.connection.driver_class org.hsqldb.jdbcDriver
|
||||||
|
hibernate.connection.url jdbc:hsqldb:mem:/test
|
||||||
|
hibernate.connection.username sa
|
||||||
|
hibernate.connection.password
|
||||||
|
|
||||||
|
hibernate.connection.pool_size 5
|
||||||
|
|
||||||
|
hibernate.format_sql true
|
||||||
|
|
||||||
|
hibernate.max_fetch_depth 5
|
||||||
|
|
||||||
|
hibernate.generate_statistics true
|
|
@ -0,0 +1,37 @@
|
||||||
|
################################################################################
|
||||||
|
# Hibernate, Relational Persistence for Idiomatic Java #
|
||||||
|
# #
|
||||||
|
# Copyright (c) 2007, Red Hat, Inc. and/or it's affiliates 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. and/or it's affiliates. #
|
||||||
|
# #
|
||||||
|
# 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 #
|
||||||
|
################################################################################
|
||||||
|
log4j.appender.stdout=org.apache.log4j.ConsoleAppender
|
||||||
|
log4j.appender.stdout.Target=System.out
|
||||||
|
log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
|
||||||
|
log4j.appender.stdout.layout.ConversionPattern=%d{ABSOLUTE} %5p [%t] %c{1}:%L - %m%n
|
||||||
|
|
||||||
|
|
||||||
|
log4j.rootLogger=info, stdout
|
||||||
|
|
||||||
|
#log4j.logger.org.hibernate.test=info
|
||||||
|
log4j.logger.org.hibernate.test=info
|
||||||
|
log4j.logger.org.hibernate.cache=info
|
||||||
|
log4j.logger.org.hibernate.SQL=info
|
||||||
|
#log4j.logger.org.jgroups=info
|
||||||
|
#log4j.logger.org.infinispan=trace
|
|
@ -0,0 +1,9 @@
|
||||||
|
#Mon Oct 11 07:41:33 CDT 2010
|
||||||
|
distributionBase=GRADLE_USER_HOME
|
||||||
|
distributionPath=wrapper/dists
|
||||||
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
distributionVersion=0.9-rc-1
|
||||||
|
zipStorePath=wrapper/dists
|
||||||
|
urlRoot=http\://dist.codehaus.org/gradle
|
||||||
|
distributionName=gradle
|
||||||
|
distributionClassifier=bin
|
Loading…
Reference in New Issue