-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpublish.gradle
More file actions
66 lines (55 loc) · 1.46 KB
/
publish.gradle
File metadata and controls
66 lines (55 loc) · 1.46 KB
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
62
63
64
65
66
apply plugin: 'maven-publish'
def nativeName = wpilibTools.platformMapper.wpilibClassifier;
def artifactGroupId = 'org.photonvision'
def baseArtifactId = "photon-mrcal"
def license = file("$rootDir/LICENSE")
def externalLicenses = file("$rootDir/ExternalLicenses")
task nativeLibraryJar(type: Jar, dependsOn: copyNativeLibrary) {
archiveClassifier = nativeName
from outputsFolder
from license
from externalLicenses
}
build.dependsOn nativeLibraryJar
jar {
from license
from externalLicenses
}
sourcesJar {
from license
from externalLicenses
}
javadocJar {
from license
from externalLicenses
}
publishing {
repositories {
maven {
url ('https://maven.photonvision.org/' + (isDev ? 'snapshots' : 'releases'))
credentials {
username 'ghactions'
password System.getenv("ARTIFACTORY_API_KEY")
}
}
}
publications {
mavenJava(MavenPublication) {
groupId = artifactGroupId
artifactId = "${baseArtifactId}-java"
version = pubVersion;
from components.java
}
mavenJNI(MavenPublication) {
groupId = artifactGroupId
artifactId = "${baseArtifactId}-jni"
version = pubVersion;
artifact nativeLibraryJar
}
}
}
tasks.withType(PublishToMavenRepository) {
doFirst {
println("Publishing mrcal-java to " + repository.url)
}
}