I imFel New member Apr 22, 2024 2 0 1 Apr 22, 2024 #1 this happens consistently whenever I make a new project. I'm new to java development and spigot/paper so i dont know how to fix. how do i fix this? I don't have this issue in projects created previously.
this happens consistently whenever I make a new project. I'm new to java development and spigot/paper so i dont know how to fix. how do i fix this? I don't have this issue in projects created previously.
S stefvanschie Moderator Staff member Dec 17, 2021 126 7 22 18 Apr 22, 2024 #2 Could you share the build file of the build tool you're using? Upvote 0 Downvote
I imFel New member Apr 22, 2024 2 0 1 Apr 23, 2024 #3 stefvanschie said: Could you share the build file of the build tool you're using? Click to expand... using Maven <repositories> <repository> <id>papermc-repo</id> <url>https://repo.papermc.io/repository/maven-public/</url> </repository> <repository> <id>sonatype</id> <url>https://oss.sonatype.org/content/groups/public/</url> </repository> </repositories> <dependencies> <dependency> <groupId>io.papermc.paper</groupId> <artifactId>paper-api</artifactId> <version>1.20.1-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> </dependencies> assuming this is what you mean Upvote 0 Downvote
stefvanschie said: Could you share the build file of the build tool you're using? Click to expand... using Maven <repositories> <repository> <id>papermc-repo</id> <url>https://repo.papermc.io/repository/maven-public/</url> </repository> <repository> <id>sonatype</id> <url>https://oss.sonatype.org/content/groups/public/</url> </repository> </repositories> <dependencies> <dependency> <groupId>io.papermc.paper</groupId> <artifactId>paper-api</artifactId> <version>1.20.1-R0.1-SNAPSHOT</version> <scope>provided</scope> </dependency> </dependencies> assuming this is what you mean