-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
29 lines (26 loc) · 925 Bytes
/
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
plugins {
id 'java'
}
repositories {
mavenCentral()
flatDir dirs: "${rootDir}/lib"
}
dependencies {
implementation 'junit:junit:4.13.2'
implementation 'com.microsoft.sqlserver:mssql-jdbc:11.2.1.jre18'
implementation group: 'com.intellij', name: 'forms_rt', version: '7.0.3'
implementation 'org.ojalgo:ojalgo-yahoofinance:1.0.1'
implementation 'com.github.kedarkulk7:yahooFinanceAPI:1.0.0'
implementation group: 'com.yahoofinance-api', name: 'YahooFinanceAPI', version: '3.17.0'
implementation group: 'mysql', name: 'mysql-connector-java', version: '8.0.31'
testImplementation 'junit:junit:4.13.2'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.9.0'
testImplementation 'org.junit.jupiter:junit-jupiter-engine:5.9.0'
}
test {
useJUnitPlatform()
testLogging.showStandardStreams(true)
testLogging {
events "passed", "skipped", "failed"
}
}