File: build.gradle

package info (click to toggle)
deepboof 0.5.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,880 kB
  • sloc: java: 14,249; python: 50; makefile: 12; sh: 3
file content (23 lines) | stat: -rw-r--r-- 752 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
dependencies {
    implementation project(':modules:main')
//    implementation 'org.jfree:jfreechart:1.0.19'

    implementation group: 'de.erichseifert.gral', name: 'gral-core', version: '0.11'
    implementation "com.beust:jcommander:1.48"
}

// Create a jar which contains all the applications
task resultsPlotJar(type: Jar) {
    manifest {
        attributes 'Implementation-Title': 'Results Plotting Jar',
                'Implementation-Version': version,
                'Main-Class': 'deepboof.visualization.GridParameterResultsApp'
    }
    archiveName = 'ResultsPlot.jar'
    from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
    with jar

    doLast {
        archivePath.renameTo(file(archiveName))
    }
}