summaryrefslogtreecommitdiff
path: root/settings.gradle.kts
diff options
context:
space:
mode:
authorvincent van beek <vincent@vlogic.nl>2026-04-23 20:07:10 +0200
committervincent van beek <vincent@vlogic.nl>2026-04-23 20:07:10 +0200
commit7fcce6ee2f9a76f2a8ad56d444ed0e904a613552 (patch)
tree17f70c4a8713fcfa0492496e1cd2c684ed10b335 /settings.gradle.kts
parentbdd372e1224522aa1fe4485b78dcd76dd19343e5 (diff)
fix publishing to maven central
Diffstat (limited to 'settings.gradle.kts')
-rw-r--r--settings.gradle.kts12
1 files changed, 12 insertions, 0 deletions
diff --git a/settings.gradle.kts b/settings.gradle.kts
index 38478afe..c75f183d 100644
--- a/settings.gradle.kts
+++ b/settings.gradle.kts
@@ -19,8 +19,20 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
+plugins {
+ id("com.gradleup.nmcp.settings").version("1.4.4")
+}
+
rootProject.name = "opendc"
+nmcpSettings {
+ centralPortal {
+ username = providers.gradleProperty("centralPortalUsername").orNull
+ password = providers.gradleProperty("centralPortalPassword").orNull
+ publishingType = "AUTOMATIC"
+ }
+}
+
include(":opendc-common")
include(":opendc-compute:opendc-compute-api")