File tree 2 files changed +30
-2
lines changed
2 files changed +30
-2
lines changed Original file line number Diff line number Diff line change @@ -4,15 +4,35 @@ import org.labkey.gradle.util.PomFileHelper
4
4
5
5
buildscript {
6
6
repositories {
7
- mavenCentral()
7
+ mavenCentral {
8
+ content {
9
+ excludeGroupByRegex " org\\ .labkey.*"
10
+ }
11
+ }
8
12
maven {
9
13
url " ${ artifactory_contextUrl} /plugins-release-no-proxy"
14
+ mavenContent {
15
+ releasesOnly()
16
+ }
17
+ content {
18
+ includeGroup " org.labkey.build"
19
+ includeGroup " org.labkey.versioning"
20
+ }
10
21
}
11
22
if (gradlePluginsVersion. contains(" SNAPSHOT" ))
12
23
{
24
+ mavenLocal()
13
25
maven {
14
26
url " ${ artifactory_contextUrl} /plugins-snapshot-local"
27
+ mavenContent {
28
+ snapshotsOnly()
29
+ }
30
+ content {
31
+ includeGroup " org.labkey.build"
32
+ includeGroup " org.labkey.versioning"
33
+ }
15
34
}
35
+
16
36
}
17
37
}
18
38
dependencies {
@@ -43,6 +63,9 @@ repositories {
43
63
// enable preemptive authentication to get around https://www.jfrog.com/jira/browse/RTFACT-4434
44
64
}
45
65
}
66
+ mavenContent {
67
+ releasesOnly()
68
+ }
46
69
}
47
70
}
48
71
@@ -206,6 +229,11 @@ project.publishing {
206
229
basic(BasicAuthentication )
207
230
// enable preemptive authentication to get around https://www.jfrog.com/jira/browse/RTFACT-4434
208
231
}
232
+ content {
233
+ includeGroup " org.labkey"
234
+ includeGroup " org.labkey.api"
235
+ includeGroup " org.labkey.module"
236
+ }
209
237
}
210
238
}
211
239
}
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ artifactory_contextUrl=https://labkey.jfrog.io/artifactory
7
7
sourceCompatibility =17
8
8
targetCompatibility =17
9
9
10
- gradlePluginsVersion =1.40.1
10
+ gradlePluginsVersion =1.41.0
11
11
12
12
commonsCodecVersion =1.15
13
13
commonsLoggingVersion =1.2
You can’t perform that action at this time.
0 commit comments