This repository was archived by the owner on Nov 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
56 lines (42 loc) · 1.48 KB
/
build.gradle
File metadata and controls
56 lines (42 loc) · 1.48 KB
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
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java Library project to get you started.
* For more details take a look at the Java Libraries chapter in the Gradle
* user guide available at https://docs.gradle.org/4.5.1/userguide/java_library_plugin.html
*/
plugins {
// Apply the java-library plugin to add support for Java Library
id 'java-library'
}
repositories {
jcenter()
maven {
url cxnMavenRepositoryUrl
credentials {
username = cxnMavenUser
password = cxnMavenPassword
}
}
}
dependencies {
compile("com.chemaxon:jchem-main:17.15.0") {
exclude group:'com.chemaxon',module:'msketch-javahelp'
exclude group:'com.chemaxon',module:'mview-javahelp'
exclude group:'org.apache.poi'
exclude group:'chemaxonlib',module:'poi'
exclude group:'chemaxonlib',module:'ws-commons-util'
exclude group:'org.apache.httpcomponents',module:'httpclient'
exclude group:'org.apache.httpcomponents',module:'httpcore'
exclude group:'mysql'
exclude group:'org.postgresql'
exclude group:'chemaxonlib',module:'db2jcc4'
exclude group:'org.apache.derby'
exclude group:'org.hsqldb'
exclude group:'net.sf.jacob-project'
exclude group:'com.lowagie' // itext stuff
exclude group:'org.mariadb.jdbc'
}
// Use JUnit test framework
testImplementation 'junit:junit:4.12'
}