summaryrefslogtreecommitdiff
path: root/settings.gradle.kts
diff options
context:
space:
mode:
authorvincent van beek <vincent@vlogic.nl>2026-04-24 12:01:41 +0200
committerGitHub <noreply@github.com>2026-04-24 11:01:41 +0100
commitf9aba13b6d0f26d3a2a3f9de788d43aa2f4a82b7 (patch)
tree17f70c4a8713fcfa0492496e1cd2c684ed10b335 /settings.gradle.kts
parentf0ad5da61e40aca737e5aed181426c2ce7a58bbc (diff)
Fix maven (#409)
* attempt to fix the maven publish step * 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")