Advertisement
Guest User

Untitled

a guest
Jul 17th, 2023
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.20 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  2.   <modelVersion>4.0.0</modelVersion>
  3.   <groupId>it.tristana</groupId>
  4.   <artifactId>Homes</artifactId>
  5.   <version>1.0.0</version>
  6.   <properties>
  7.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  8.         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  9.     </properties>
  10.  
  11.     <repositories>
  12.         <repository>
  13.             <id>spigot-repo</id>
  14.             <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  15.         </repository>
  16.     </repositories>
  17.  
  18.     <dependencies>
  19.         <dependency>
  20.             <groupId>org.spigotmc</groupId>
  21.             <artifactId>spigot-api</artifactId>
  22.             <version>1.20-R0.1-SNAPSHOT</version>
  23.             <scope>provided</scope>
  24.         </dependency>
  25.     </dependencies>
  26.  
  27.     <build>
  28.         <plugins>
  29.             <plugin>
  30.                 <groupId>org.apache.maven.plugins</groupId>
  31.                 <artifactId>maven-compiler-plugin</artifactId>
  32.                 <version>3.10.1</version>
  33.                 <configuration>
  34.                     <source>19</source>
  35.                     <target>19</target>
  36.                 </configuration>
  37.             </plugin>
  38.         </plugins>
  39.     </build>
  40. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement