source: gs2-extensions/tipple-bridge/trunk/src/build.gradle@ 34881

Last change on this file since 34881 was 34881, checked in by davidb, 3 years ago

Adding in the gradle files and settings for the program

File size: 630 bytes
Line 
1plugins {
2 id 'java'
3}
4
5group 'org.greenstone.tipplebridge'
6version '1.0-SNAPSHOT'
7
8sourceCompatibility = 1.8
9
10repositories {
11 mavenCentral()
12}
13
14dependencies {
15 testCompile group: 'junit', name: 'junit', version: '4.12'
16 implementation 'org.mariadb.jdbc:mariadb-java-client:2.1.2'
17 implementation 'info.picocli:picocli:4.6.1'
18 // https://mvnrepository.com/artifact/mysql/mysql-connector-java
19 compile group: 'mysql', name: 'mysql-connector-java', version: '8.0.23'
20 // https://mvnrepository.com/artifact/com.google.code.gson/gson
21 compile group: 'com.google.code.gson', name: 'gson', version: '2.7'
22
23}
24
Note: See TracBrowser for help on using the repository browser.