-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle
80 lines (69 loc) · 3.38 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java project to get you started.
* For more details take a look at the Java Quickstart chapter in the Gradle
* user guide available at https://docs.gradle.org/5.0/userguide/tutorial_java_projects.html
*/
plugins {
// Apply the java plugin to add support for Java
id 'java'
// Apply the application plugin to add support for building an application
id 'application'
id 'idea'
}
repositories {
// Use jcenter for resolving your dependencies.
// You can declare any Maven/Ivy/file repository here.
mavenCentral()
maven { url "https://clojars.org/repo" }
maven { url 'https://jitpack.io' }
}
dependencies {
// This dependency is found on compile classpath of this component and consumers.
// implementation 'com.google.guava:guava:26.0-jre'
implementation 'net.sf.barcode4j:barcode4j:2.1'
implementation group: 'commons-cli', name: 'commons-cli', version: '1.2'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.4'
implementation group: 'org.apache.commons', name: 'commons-math3', version: '3.5'
implementation group: 'commons-net', name: 'commons-net', version: '3.3'
implementation group: 'dom4j', name: 'dom4j', version: '1.6'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.2.3'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.2.3'
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.2.3'
implementation group: 'joda-time', name: 'joda-time', version: '2.4'
// A forked version of: implementation group: 'org.jsoup', name: 'jsoup', version: '1.15.3'
implementation 'com.github.b123400:jsoup:f4442be649'
implementation group: 'junit', name: 'junit', version: '4.12'
implementation group: 'com.aliasi', name: 'lingpipe', version: '4.0.1'
implementation group: 'com.opencsv', name: 'opencsv', version: '3.4'
implementation group: 'org.apache.poi', name: 'poi', version: '3.9'
implementation group: 'org.apache.poi', name: 'poi-ooxml', version: '3.9'
implementation group: 'org.apache.poi', name: 'poi-ooxml-schemas', version: '3.9'
implementation group: 'org.apache.poi', name: 'poi-scratchpad', version: '3.9'
implementation group: 'org.simpleframework', name: 'simple-xml', version: '2.6.9'
implementation group: 'org.yaml', name: 'snakeyaml', version: '1.16'
implementation group: 'org.xerial', name: 'sqlite-jdbc', version: '3.7.2'
implementation group: 'org.apache.xmlbeans', name: 'xmlbeans', version: '2.6.0'
implementation group: 'net.sourceforge.htmlunit', name: 'htmlunit', version: '2.66.0'
implementation 'jakarta.xml.bind:jakarta.xml.bind-api:4.0.0'
implementation 'jakarta.xml.soap:jakarta.xml.soap-api:3.0.0'
implementation group: 'com.sun.xml.messaging.saaj', name: 'saaj-impl', version: '3.0.0'
implementation group: 'org.glassfish.jaxb', name: 'jaxb-runtime', version: '4.0.1'
}
sourceSets {
main {
java {
srcDirs 'src'
}
}
}
jar {
manifest {
attributes 'Main-Class': 'com.maxl.java.aips2sqlite.Aips2Sqlite'
}
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
}
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}