BenCodez / VotifierPlus

Fork of votifier
8 stars 6 forks source link

Quick Question #35

Closed avaoffiziell closed 7 months ago

avaoffiziell commented 1 year ago

Hello there, before it worked but something is wrong with my dependecy

    <dependency>
        <groupId>com.github.BenCodez</groupId>
        <artifactId>VotifierPlus</artifactId>
        <version>LATEST</version>
        <scope>provided</scope>
    </dependency>

    And can i get the <repository></repository>?

    I'm using VotifierPlus 1.0.7 with Spigot 1.19.2
avaoffiziell commented 1 year ago

Dependency 'com.github.BenCodez:VotifierPlus:LATEST' not found

BenCodez commented 1 year ago

try this:

<repository>
    <id>BenCodez Repo</id>
    <url>https://nexus.bencodez.com/repository/maven-public/</url>
</repository>

<dependency>
    <groupId>com.bencodez</groupId>
    <artifactId>votifierplus</artifactId>
    <version>LATEST</version>
    <scope>provided</scope>
</dependency>
BenCodez commented 1 year ago

or this:

<repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
</repository>

<dependency>
    <groupId>com.github.BenCodez</groupId>
    <artifactId>VotifierPlus</artifactId>
    <version>LATEST</version>
    <scope>provided</scope>
</dependency>