Skip to content

Files

Latest commit

 

History

History
65 lines (61 loc) · 2.46 KB

README.md

File metadata and controls

65 lines (61 loc) · 2.46 KB

Because the structure of the project is too confusing, the project will stop updating until major errors are discovered. Reset the project when Insinuate completes development and testing.


About

Support multiple scripting languages, use scripts to change Minecraft!

At present, the project is still unfinished and cannot be used.


Build

In the project root directory:

./gradle shadowJar
  or
./gradle

Developer

Maven usage

<repositories>
    <repository>
        <id>roselle-repo</id>
        <url>http://repo.iroselle.com/snapshots/</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>me.scoretwo</groupId>
        <artifactId>FastScript</artifactId>
        <version>1.0.1-SNAPSHOT</version>
        <scope>provided</scope>
    </dependency>
</dependencies>

Gradle

repositories {
    maven {url 'http://repo.iroselle.com/snapshots/'}
}
dependencies {
    implementation 'me.scoretwo:FastScript:1.0.1-SNAPSHOT'
}

Gradle Kotlin DSL

repositories {
    maven("http://repo.iroselle.com/snapshots/")
}
dependencies {
    implementation("me.scoretwo:FastScript-common:1.0.1-SNAPSHOT")
}

Links