-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
101 lines (89 loc) · 2.47 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import java.time.Instant
plugins {
id 'maven-publish'
id 'org.javamodularity.moduleplugin' version '1.6.0' apply false
}
subprojects{
apply plugin: 'java'
apply plugin: 'org.javamodularity.moduleplugin'
sourceCompatibility = targetCompatibility = 15
repositories {
mavenLocal()
maven {
url = "https://lightningcreations.github.io/Maven"
name = "Lightning Creations Maven"
}
mavenCentral()
}
task sourceJar(type: Jar){
from sourceSets.main.allJava
archiveClassifier = "sources"
}
task javadocJar(type: Jar){
from javadoc
archiveClassifier = "javadoc"
}
afterEvaluate { Project project ->
publishing {
publications {
"${project.name}"(MavenPublication) {
from components.java
artifact sourceJar
artifact javadocJar
artifactId = project.archivesBaseName
version = project.version
}
"${project.name}Snapshot"(MavenPublication) {
from components.java
artifact sourceJar
artifact javadocJar
artifactId = project.archivesBaseName
version = project.version + "-SNAPSHOT-" + Instant.now().toString()
}
}
}
}
}
group 'github.moditall'
version '1.1'
repositories {
mavenLocal()
maven {
url = "https://lightningcreations.github.io/Maven"
name = "Lightning Creations Maven"
}
mavenCentral()
}
publishing {
repositories {
maven {
def home = System.getProperty("user.home")
url = "$home/Maven"
name = "LightningCreations"
}
}
}
task publishSnapshotsToLocal{
group = 'publishing'
dependsOn tasks.withType(PublishToMavenLocal).matching {
e->e.getName().contains("Snapshot")
}
}
task publishSnapshots{
group = 'publishing'
dependsOn tasks.withType(PublishToMavenRepository).matching{
e->e.getName().contains("Snapshot")
}
}
task publishReleasesToLocal{
group = 'publishing'
dependsOn tasks.withType(PublishToMavenLocal).matching {
e->!e.getName().contains("Snapshot")
}
}
task publishReleases{
group = 'publishing'
dependsOn tasks.withType(PublishToMavenRepository).matching{
e->!e.getName().contains("Snapshot")
}
}