Skip to content

GeorgeV220/MartexLibrary

Folders and files

NameName
Last commit message
Last commit date
Jan 6, 2023
Sep 10, 2023
Sep 10, 2023
Sep 10, 2023
Sep 22, 2023
Nov 11, 2023
Sep 10, 2023
Nov 11, 2023
Jun 11, 2023
May 30, 2023
Jun 9, 2023
Nov 11, 2023
Apr 7, 2022
Apr 7, 2022
Jun 9, 2023
Sep 10, 2023
Apr 7, 2022
Nov 11, 2023
Jun 6, 2023
Apr 7, 2022
Apr 7, 2022
Apr 7, 2022
Apr 7, 2022
Jan 21, 2023
Jan 23, 2023

Repository files navigation

MartexLibrary

Adding MartexLibrary as a dependency to your build system

Maven

You can have your project depend on MartexLibrary as a dependency through the following code snippets:

<project>
    <repositories>
        <repository>
            <id>reposilite-repository</id>
            <name>GeorgeV22 Repository</name>
            <url>https://repo.georgev22.com/releases</url>
        </repository>
    </repositories>

    <dependencies>
        <dependency>
            <groupId>com.georgev22.library</groupId>
            <artifactId>{artifact}</artifactId>
            <version>10.0.0</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>
</project>

Gradle

You can include MartexLibrary into your gradle project using the following lines:

repositories {
    maven {
        url "https://repo.georgev22.com/releases"
    }
}

dependencies {
    compileOnly "com.georgev22.library:{artifact}:10.0.0:all"
}

Building MartexLibrary

Gradle

MartexLibrary can be built by running the following: gradle clean build shadowJar. The resultant jar is built and written to {artifact}/build/libs/{artifact}-{version}.jar.

The build directories can be cleaned instead using the gradle clean command.

If you want to clean (install) and build the plugin use gradle clean build shadowJar command.

Contributing

MartexLibrary is an open source GNU General Public License v3.0 licensed project. I accept contributions through pull requests, and will make sure to credit you for your awesome contribution.