Advertisement
Guest User

pom core

a guest
Feb 13th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.87 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.     <modelVersion>4.0.0</modelVersion>
  6.  
  7.     <groupId>groupId</groupId>
  8.     <artifactId>AlkaCore</artifactId>
  9.     <version>1.0-SNAPSHOT</version>
  10.  
  11.  
  12.     <build>
  13.         <plugins>
  14.             <plugin>
  15.                 <groupId>org.apache.maven.plugins</groupId>
  16.                 <artifactId>maven-compiler-plugin</artifactId>
  17.                 <version>3.7.0</version>
  18.                 <configuration>
  19.                     <source>1.8</source>
  20.                     <target>1.8</target>
  21.                 </configuration>
  22.             </plugin>
  23.  
  24.             <plugin>
  25.                 <groupId>org.apache.maven.plugins</groupId>
  26.                 <artifactId>maven-shade-plugin</artifactId>
  27.                 <version>3.1.0</version>
  28.                 <executions>
  29.                     <execution>
  30.                         <phase>package</phase>
  31.                         <goals>
  32.                             <goal>shade</goal>
  33.                         </goals>
  34.                         <configuration>
  35.                             <artifactSet>
  36.                                 <includes>
  37.                                     <include>AlkAPI:AlkAPI:jar:1.0-SNAPSHOT:system</include>
  38.                                 </includes>
  39.                             </artifactSet>
  40.                         </configuration>
  41.                     </execution>
  42.                 </executions>
  43.             </plugin>
  44.  
  45.         </plugins>
  46.     </build>
  47.  
  48.  
  49.  
  50.     <dependencies>
  51.  
  52.         <dependency>
  53.             <groupId>Spigot</groupId>
  54.             <artifactId>Spigot</artifactId>
  55.             <version>1.12.2</version>
  56.             <scope>system</scope>
  57.             <systemPath>/home/sebastien/Bureau/jar/spigot-1.12.2.jar</systemPath>
  58.             <optional>true</optional>
  59.         </dependency>
  60.  
  61.         <dependency>
  62.             <groupId>AlkAPI</groupId>
  63.             <artifactId>AlkAPI</artifactId>
  64.             <version>1.0-SNAPSHOT</version>
  65.             <scope>system</scope>
  66.             <systemPath>/home/sebastien/Bureau/Plugins/Alkamc/AlkAPI-1.0-SNAPSHOT.jar</systemPath>
  67.         </dependency>
  68.  
  69.         <dependency>
  70.             <groupId>com.zaxxer</groupId>
  71.             <artifactId>HikariCP</artifactId>
  72.             <version>2.7.2</version>
  73.         </dependency>
  74.  
  75.         <dependency>
  76.             <groupId>org.slf4j</groupId>
  77.             <artifactId>slf4j-api</artifactId>
  78.             <version>1.7.25</version>
  79.         </dependency>
  80.  
  81.         <dependency>
  82.             <groupId>org.redisson</groupId>
  83.             <artifactId>redisson</artifactId>
  84.             <version>3.6.0</version>
  85.         </dependency>
  86.     </dependencies>
  87.  
  88.    
  89. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement