More build fixes
This commit is contained in:
parent
0510ea8601
commit
0d0432d8d8
1 changed files with 23 additions and 10 deletions
33
build.gradle
33
build.gradle
|
@ -29,7 +29,6 @@ dependencies{
|
||||||
bundledLibs group: 'org.apache.jena', name: 'jena-arq', version: '3.15.0'
|
bundledLibs group: 'org.apache.jena', name: 'jena-arq', version: '3.15.0'
|
||||||
bundledLibs group: 'org.slf4j', name: 'slf4j-api', version: '1.7.30'
|
bundledLibs group: 'org.slf4j', name: 'slf4j-api', version: '1.7.30'
|
||||||
bundledLibs group: 'com.opencsv', name: 'opencsv', version: '5.1'
|
bundledLibs group: 'com.opencsv', name: 'opencsv', version: '5.1'
|
||||||
bundledLibs files('idl')
|
|
||||||
configurations.compile.extendsFrom(configurations.bundledLibs)
|
configurations.compile.extendsFrom(configurations.bundledLibs)
|
||||||
}
|
}
|
||||||
jar {
|
jar {
|
||||||
|
@ -72,6 +71,7 @@ task xhtml(type: Jar) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
from sourceSets.main.output
|
from sourceSets.main.output
|
||||||
|
exclude '.gradle'
|
||||||
exclude '**/*Test.class'
|
exclude '**/*Test.class'
|
||||||
exclude '**/AllTests.class'
|
exclude '**/AllTests.class'
|
||||||
exclude '**/*.java'
|
exclude '**/*.java'
|
||||||
|
@ -107,6 +107,15 @@ task xhtml2(type: Jar) {
|
||||||
baseName = "writer2phtml"
|
baseName = "writer2phtml"
|
||||||
from {
|
from {
|
||||||
configurations.bundledLibs.collect {
|
configurations.bundledLibs.collect {
|
||||||
|
exclude 'module-info.class'
|
||||||
|
exclude '.gradle'
|
||||||
|
exclude '**/LICENSE*'
|
||||||
|
exclude '**/DEPENDENCIES'
|
||||||
|
exclude '**/NOTICE*'
|
||||||
|
exclude '**/pom.xml'
|
||||||
|
exclude 'steps.txt'
|
||||||
|
exclude 'META-INF/services'
|
||||||
|
|
||||||
it.isDirectory() ? it : zipTree(it)
|
it.isDirectory() ? it : zipTree(it)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -114,13 +123,13 @@ task xhtml2(type: Jar) {
|
||||||
exclude '**/*Test.class'
|
exclude '**/*Test.class'
|
||||||
exclude '**/AllTests.class'
|
exclude '**/AllTests.class'
|
||||||
exclude '**/*.java'
|
exclude '**/*.java'
|
||||||
|
include '**/*.classes'
|
||||||
include 'etc/*'
|
include 'etc/*'
|
||||||
include 'com/*'
|
include 'com/**'
|
||||||
include 'com/**/*'
|
include 'com/**/*'
|
||||||
include 'w2phtml/pageSplitters/**/*.class'
|
include 'w2phtml/pageSplitters/**/*.class'
|
||||||
include 'pro/litvinovg/**/*.class'
|
include 'pro/litvinovg/**/*.class'
|
||||||
include 'pro/litvinovg/**/*.png'
|
include 'pro/litvinovg/**/*.png'
|
||||||
include 'pro/litvinovg/**/*.classes'
|
|
||||||
include 'w2phtml/api/**/*.class'
|
include 'w2phtml/api/**/*.class'
|
||||||
include 'w2phtml/*.class'
|
include 'w2phtml/*.class'
|
||||||
include 'w2phtml/*.properties'
|
include 'w2phtml/*.properties'
|
||||||
|
@ -132,20 +141,24 @@ task xhtml2(type: Jar) {
|
||||||
include 'w2phtml/xhtml/**/*.class'
|
include 'w2phtml/xhtml/**/*.class'
|
||||||
include 'w2phtml/xhtml/**/*.xml'
|
include 'w2phtml/xhtml/**/*.xml'
|
||||||
include 'w2phtml/xmerge/**/*.class'
|
include 'w2phtml/xmerge/**/*.class'
|
||||||
}
|
|
||||||
from ('src/main/java'){
|
|
||||||
include 'w2phtml/xhtml/**/*.properties'
|
|
||||||
include 'w2phtml/xhtml/**/**/*.properties'
|
|
||||||
exclude 'w2phtml/project.properties'
|
|
||||||
}
|
|
||||||
from (sourceSets.main.output){
|
|
||||||
include 'org/**/*'
|
include 'org/**/*'
|
||||||
include 'net/**/*'
|
include 'net/**/*'
|
||||||
include 'logback.xml'
|
include 'logback.xml'
|
||||||
include 'ch/**/*'
|
include 'ch/**/*'
|
||||||
include '**/*.properties'
|
include '**/*.properties'
|
||||||
|
exclude '.gradle'
|
||||||
|
}
|
||||||
|
from ('src/main/java'){
|
||||||
|
exclude '.gradle'
|
||||||
|
include 'w2phtml/xhtml/**/*.properties'
|
||||||
|
include 'w2phtml/xhtml/**/**/*.properties'
|
||||||
|
include 'pro/litvinovg/**/*.classes'
|
||||||
|
include 'logback.xml'
|
||||||
|
include '**/*.png'
|
||||||
|
exclude 'w2phtml/project.properties'
|
||||||
}
|
}
|
||||||
from('src/main/tmp') {
|
from('src/main/tmp') {
|
||||||
|
exclude '.gradle'
|
||||||
include 'w2phtml/project.properties'
|
include 'w2phtml/project.properties'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue