30 lines
535 B
Text
30 lines
535 B
Text
![]() |
plugins {
|
||
|
id 'java'
|
||
|
}
|
||
|
|
||
|
group = 'it.unibs.fp'
|
||
|
version = '1.0'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation 'com.google.code.gson:gson:2.10.1'
|
||
|
|
||
|
implementation files('lib/kibofplib-1.0.jar')
|
||
|
}
|
||
|
|
||
|
jar {
|
||
|
manifest {
|
||
|
attributes(
|
||
|
'Main-Class': 'it.unibs.fp.patenteelibbrettopregoh.PatenteELibbrettoPregohMain'
|
||
|
)
|
||
|
}
|
||
|
|
||
|
from {
|
||
|
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
|
||
|
}
|
||
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
||
|
}
|