Skip to content

Commit 52cbc0f

Browse files
committed
added settings.gradle.kts in convention plugins, jitpack config
1 parent 0ab215f commit 52cbc0f

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

javascript-build-logic/build.gradle.kts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@ plugins {
33
}
44

55
repositories {
6+
gradlePluginPortal()
67
mavenCentral()
78
google()
8-
9-
gradlePluginPortal()
109
}
1110

1211
dependencies {
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/*
2+
* Copyright 2025 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
3+
*/
4+
5+
rootProject.name = "javascript-build-logic"
6+
7+
dependencyResolutionManagement {
8+
repositories {
9+
mavenCentral()
10+
google()
11+
}
12+
13+
versionCatalogs {
14+
create("libs") {
15+
from(files("../gradle/libs.versions.toml"))
16+
}
17+
}
18+
}

jitpack.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
jdk:
2+
- openjdk17
3+
install:
4+
- ./gradlew clean -Pgroup=$GROUP -Pversion=$VERSION -xtest -xlint -xsignMavenPublication publishToMavenLocal

0 commit comments

Comments
 (0)