-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathbuild.gradle
44 lines (39 loc) · 899 Bytes
/
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
buildscript {
repositories {
google()
jcenter()
}
}
plugins {
id('maven-publish')
id('java-library')
}
publishing {
repositories {
maven {
name = "GitHubPackages"
url = uri("https://maven.pkg.github.com/nfl/scte35")
credentials {
username = project.findProperty("gpr.user") ?: System.getenv("USERNAME")
password = project.findProperty("gpr.key") ?: System.getenv("TOKEN")
}
}
}
publications {
gpr(MavenPublication) {
groupId 'com.nfl.dm.scte35'
version = '1.0.33'
from components.java
}
}
}
targetCompatibility = '1.7'
sourceCompatibility = '1.7'
repositories {
google()
jcenter()
}
dependencies {
compile 'commons-codec:commons-codec:1.10'
testCompile 'org.testng:testng:6.8.8'
}