Advertisement
Guest User

Untitled

a guest
Sep 18th, 2014
262
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.25 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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2.   <modelVersion>4.0.0</modelVersion>
  3.   <groupId>subscriberAlert</groupId>
  4.   <artifactId>subscriberAlert</artifactId>
  5.   <version>0.0.1-SNAPSHOT</version>
  6.   <build>
  7.     <sourceDirectory>src</sourceDirectory>
  8.     <plugins>
  9.       <plugin>
  10.         <artifactId>maven-compiler-plugin</artifactId>
  11.         <version>3.1</version>
  12.         <configuration>
  13.           <source>1.8</source>
  14.           <target>1.8</target>
  15.         </configuration>
  16.       </plugin>
  17.       <plugin>
  18.         <groupId>org.apache.maven.plugins</groupId>
  19.         <artifactId>maven-assembly-plugin</artifactId>
  20.     <configuration>
  21.       <descriptorRefs>
  22.         <descriptorRef>jar-with-dependencies</descriptorRef>
  23.       </descriptorRefs>
  24.       <archive>
  25.         <manifest>
  26.           <mainClass>subscriberAlert.subscriberAlert</mainClass>
  27.         </manifest>
  28.       </archive>
  29.     </configuration>
  30.     <executions>
  31.       <execution>
  32.         <phase>package</phase>
  33.         <goals>
  34.           <goal>single</goal>
  35.         </goals>
  36.       </execution>
  37.     </executions>
  38.       </plugin>
  39.     </plugins>
  40.   </build>
  41.   <dependencies>
  42.     <dependency>
  43.         <groupId>net.boreeas</groupId>
  44.         <artifactId>riotapi.loginqueue</artifactId>
  45.         <version>1.0.0</version>
  46.     </dependency>
  47.     <dependency>
  48.         <groupId>net.boreeas</groupId>
  49.         <artifactId>riotapi.rest</artifactId>
  50.         <version>1.0.0</version>
  51.     </dependency>
  52.     <dependency>
  53.         <groupId>net.boreeas</groupId>
  54.         <artifactId>riotapi.rtmp</artifactId>
  55.         <version>1.0.0</version>
  56.     </dependency>
  57.     <dependency>
  58.         <groupId>net.boreeas</groupId>
  59.         <artifactId>riotapi.spectator</artifactId>
  60.         <version>1.0.0</version>
  61.     </dependency>
  62.     <dependency>
  63.         <groupId>net.boreeas</groupId>
  64.         <artifactId>riotapi.domain</artifactId>
  65.         <version>1.0.0</version>
  66.     </dependency>
  67.     <dependency>
  68.         <groupId>com.github.theholywaffle</groupId>
  69.         <artifactId>lolchatapi</artifactId>
  70.         <version>1.2.6</version>
  71.     </dependency>
  72.   </dependencies>
  73. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement