27 lines
725 B
Groovy
27 lines
725 B
Groovy
/*
|
|
* Hibernate, Relational Persistence for Idiomatic Java
|
|
*
|
|
* License: GNU Lesser General Public License (LGPL), version 2.1 or later
|
|
* See the lgpl.txt file in the root directory or http://www.gnu.org/licenses/lgpl-2.1.html
|
|
*/
|
|
|
|
apply plugin: 'base'
|
|
apply plugin: 'org.hibernate.orm.build.env-project'
|
|
|
|
buildscript {
|
|
dependencies {
|
|
constraints {
|
|
classpath("org.apache.logging.log4j:log4j-core") {
|
|
version {
|
|
strictly("[2.17.1, 3[")
|
|
prefer("2.17.1")
|
|
}
|
|
because('CVE-2021-44228, CVE-2021-45046, CVE-2021-45105, CVE-2021-44832: Log4j vulnerable to remote code execution and other critical security vulnerabilities')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
group = 'org.hibernate.orm'
|
|
version = project.ormVersion.fullName
|