Skip to content
This repository has been archived by the owner on Jan 18, 2025. It is now read-only.

Latest commit

 

History

History
90 lines (73 loc) · 1.7 KB

README.md

File metadata and controls

90 lines (73 loc) · 1.7 KB

Project kapregh(Unfinished projects)


Version: 1.1.0-SNAPSHOT

This is a build tool for Kappa server.

Related Projects:

  • Kappa-server
  • Kappa-api

Credit

1, Kappa developer
2, Frish2021

Thanks

1, Kercute
2, ECUICU


How to use it?

step 1. (Add a maven repository.)

settings.gradle.kts

pluginManagement {
    repositories {
        maven("https://smbServer.github.io/") {
            name = "sun moon bay"
        }
    }
}

settings.gradle

pluginManagement {
    repositories {
        maven {
            url = "https://smbServer.github.io/"
            name = "sun moon bay"
        }
    }
}

step 2. (Add the plugin and enable it.)

build.gradle.kts

plugins {
    id("net.kappamc.kapregh") version "1.1.0-SNAPSHOT"
}

build.gradle

plugins {
    id "net.kappamc.kapregh" version "1.1.0-SNAPSHOT"
}

How to build it.

step 1.

Clone a repository via git.

Git bash enters the following command to clone the repository.

git clone https://github.com/smbServer/Kapregh.git

step 2. (Check the JDK version)

Enter the following command to check if the JDK version is higher than JDK 17.

java -version

If the JDK version is earlier than 17, upgrade the JDK version.

step 3. (Start building)

Enter the following command to build the project.

Microsoft Windows

.\gradlew.bat publish

Linux or MacOSX

.\gradlew publish