-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.gradle
61 lines (53 loc) · 1.26 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
apply plugin: 'com.android.library'
apply plugin: 'maven-publish'
android {
defaultConfig {
minSdkVersion 24
//noinspection ExpiredTargetSdkVersion
targetSdkVersion 28
}
compileSdkVersion 29
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
namespace 'org.swerverobotics.ftc'
publishing {
publishing {
singleVariant('release') {
withSourcesJar()
withJavadocJar()
}
}
}
}
buildscript {
repositories {
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.0'
}
}
repositories {
mavenCentral()
google() // Needed for androidx
maven { url "https://jitpack.io" }
}
dependencies {
implementation 'org.firstinspires.ftc:RobotCore:10.1.0'
implementation 'org.firstinspires.ftc:Hardware:10.1.0'
}
publishing {
publications {
release(MavenPublication) {
groupId = 'com.github.SwerveRobotics'
artifactId = 'UltrasonicDistanceSensor'
version = '0.0.1'
afterEvaluate {
from components.release
}
}
}
}