mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 21:14:14 +08:00
Test Plan: sandcastle CI. Differential Revision: D38056789 Pull Request resolved: https://github.com/pytorch/pytorch/pull/81946 Approved by: https://github.com/kit1980
41 lines
910 B
Groovy
41 lines
910 B
Groovy
allprojects {
|
|
buildscript {
|
|
ext {
|
|
minSdkVersion = 21
|
|
targetSdkVersion = 28
|
|
compileSdkVersion = 28
|
|
buildToolsVersion = '28.0.3'
|
|
|
|
coreVersion = "1.2.0"
|
|
extJUnitVersion = "1.1.1"
|
|
runnerVersion = "1.2.0"
|
|
rulesVersion = "1.2.0"
|
|
junitVersion = "4.12"
|
|
|
|
fbjniJavaOnlyVersion = "0.2.2"
|
|
soLoaderNativeLoaderVersion = "0.10.4"
|
|
}
|
|
|
|
repositories {
|
|
google()
|
|
mavenLocal()
|
|
mavenCentral()
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:4.1.2'
|
|
classpath 'com.vanniktech:gradle-maven-publish-plugin:0.14.2'
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
}
|
|
|
|
ext.deps = [
|
|
jsr305: 'com.google.code.findbugs:jsr305:3.0.1',
|
|
]
|