19 lines
639 B
Groovy
19 lines
639 B
Groovy
plugins {
|
|
id 'java-library'
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly group: 'jakarta.platform',
|
|
name: 'jakarta.jakartaee-api',
|
|
version: getProperty('jakarta.ee.version')
|
|
|
|
implementation group: 'org.tukaani', name: 'xz'
|
|
implementation group: 'org.slf4j', name: 'slf4j-api'
|
|
implementation group: 'net.woggioni', name: 'jzstd', version: getProperty('jzstd.version')
|
|
implementation group: 'net.woggioni', name: 'jwo'
|
|
implementation group: 'org.apache.commons',
|
|
name: 'commons-compress',
|
|
version: getProperty('apache.commons.compress.version')
|
|
|
|
api project(':jpacrepo-api')
|
|
} |