Advertisement
videosambo

Untitled

Jul 24th, 2019
573
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.33 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.     <modelVersion>4.0.0</modelVersion>
  5.     <groupId>com.videosambo.motimaa</groupId>
  6.     <artifactId>cellsystem</artifactId>
  7.     <version>0.0.1-SNAPSHOT</version>
  8.     <name>CellSystem</name>
  9.     <build>
  10.         <sourceDirectory>src</sourceDirectory>
  11.         <resources>
  12.             <resource>
  13.                 <directory>src</directory>
  14.                 <excludes>
  15.                     <exclude>**/*.java</exclude>
  16.                 </excludes>
  17.             </resource>
  18.         </resources>
  19.         <plugins>
  20.             <plugin>
  21.                 <artifactId>maven-compiler-plugin</artifactId>
  22.                 <version>3.7.0</version>
  23.                 <configuration>
  24.                     <source>1.8</source>
  25.                     <target>1.8</target>
  26.                 </configuration>
  27.             </plugin>
  28.            
  29.         </plugins>
  30.     </build>
  31.     <repositories>
  32.         <repository>
  33.             <id>spigot-repo</id>
  34.             <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  35.         </repository>
  36.         <repository>
  37.             <id>jitpack.io</id>
  38.             <url>https://jitpack.io</url>
  39.         </repository>
  40.         <repository>
  41.             <id>sk89q-repo</id>
  42.             <url>http://maven.sk89q.com/repo</url>
  43.         </repository>
  44.     </repositories>
  45.  
  46.     <dependencies>
  47.         <dependency>
  48.             <groupId>org.spigotmc</groupId>
  49.             <artifactId>spigot-api</artifactId>
  50.             <version>1.12.2-R0.1-SNAPSHOT</version>
  51.             <scope>provided</scope>
  52.         </dependency>
  53.         <dependency>
  54.             <groupId>com.github.MilkBowl</groupId>
  55.             <artifactId>VaultAPI</artifactId>
  56.             <version>1.7</version>
  57.             <scope>provided</scope>
  58.         </dependency>
  59.         <dependency>
  60.             <groupId>com.sk89q.worldguard</groupId>
  61.             <artifactId>worldguard-legacy</artifactId>
  62.             <version>6.2</version>
  63.         </dependency>
  64.         <dependency>
  65.             <groupId>com.sk89q.worldedit</groupId>
  66.             <artifactId>worldedit-bukkit</artifactId> <!-- here you see it -->
  67.             <version>6.0.0-SNAPSHOT</version>
  68.             <scope>provided</scope>
  69.         </dependency>
  70.         <dependency>
  71.             <groupId>com.zaxxer</groupId>
  72.             <artifactId>HikariCP</artifactId>
  73.             <version>3.1.0</version>
  74.         </dependency>
  75.         <dependency>
  76.             <groupId>mysql</groupId>
  77.             <artifactId>mysql-connector-java</artifactId>
  78.             <version>5.1.32</version>
  79.         </dependency>
  80.         <dependency>
  81.             <groupId>commons-io</groupId>
  82.             <artifactId>commons-io</artifactId>
  83.             <version>2.6</version>
  84.         </dependency>
  85.     </dependencies>
  86.  
  87. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement