2017-02-06 16:16:04 +00:00
|
|
|
plugins {
|
2018-05-25 17:08:05 +00:00
|
|
|
id 'java-library'
|
2017-02-06 16:16:04 +00:00
|
|
|
id 'net.ltgt.apt' version '0.9'
|
|
|
|
}
|
|
|
|
|
|
|
|
description = 'Master Password Site Model'
|
|
|
|
|
|
|
|
dependencies {
|
2018-05-25 17:08:05 +00:00
|
|
|
implementation group: 'com.lyndir.lhunath.opal', name: 'opal-system', version: '1.7-p1'
|
2018-06-04 05:43:46 +00:00
|
|
|
implementation group: 'com.fasterxml.jackson.core', name: 'jackson-core', version: '2.9.5'
|
2018-05-25 17:08:05 +00:00
|
|
|
|
|
|
|
api project( ':masterpassword-algorithm' )
|
2018-06-04 05:43:46 +00:00
|
|
|
api group: 'joda-time', name: 'joda-time', version: '2.4'
|
|
|
|
api group: 'com.fasterxml.jackson.core', name: 'jackson-annotations', version: '2.9.5'
|
|
|
|
api group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version: '2.9.5'
|
|
|
|
api group: 'com.google.code.findbugs', name: 'findbugs-annotations', version: '3.0.1'
|
2018-05-25 17:08:05 +00:00
|
|
|
|
2018-06-04 05:43:46 +00:00
|
|
|
compileOnly group: 'com.google.auto.value', name: 'auto-value', version: '1.2'
|
2018-04-26 17:05:45 +00:00
|
|
|
apt group: 'com.google.auto.value', name: 'auto-value', version: '1.2'
|
2018-05-25 17:08:05 +00:00
|
|
|
|
2018-06-04 05:43:46 +00:00
|
|
|
testCompile group: 'org.testng', name: 'testng', version: '6.8.5'
|
|
|
|
testCompile group: 'ch.qos.logback', name: 'logback-classic', version: '1.1.2'
|
2017-02-06 16:16:04 +00:00
|
|
|
}
|
|
|
|
test.useTestNG()
|