build.gradle 377 字节
Newer Older
J
Jake Wharton 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
apply plugin: 'java-library'
apply plugin: 'com.vanniktech.maven.publish'

dependencies {
  api project(':retrofit')
  api deps.moshi
  compileOnly deps.findBugsAnnotations

  testImplementation deps.junit
  testImplementation deps.assertj
  testImplementation deps.mockwebserver
}

jar {
  manifest {
    attributes  'Automatic-Module-Name': 'retrofit2.converter.moshi'
  }
}