Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <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">
- <modelVersion>4.0.0</modelVersion>
- <groupId>subscriberAlert</groupId>
- <artifactId>subscriberAlert</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <build>
- <sourceDirectory>src</sourceDirectory>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.1</version>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-assembly-plugin</artifactId>
- <configuration>
- <descriptorRefs>
- <descriptorRef>jar-with-dependencies</descriptorRef>
- </descriptorRefs>
- <archive>
- <manifest>
- <mainClass>subscriberAlert.subscriberAlert</mainClass>
- </manifest>
- </archive>
- </configuration>
- <executions>
- <execution>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <dependency>
- <groupId>net.boreeas</groupId>
- <artifactId>riotapi.loginqueue</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>net.boreeas</groupId>
- <artifactId>riotapi.rest</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>net.boreeas</groupId>
- <artifactId>riotapi.rtmp</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>net.boreeas</groupId>
- <artifactId>riotapi.spectator</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>net.boreeas</groupId>
- <artifactId>riotapi.domain</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.github.theholywaffle</groupId>
- <artifactId>lolchatapi</artifactId>
- <version>1.2.6</version>
- </dependency>
- </dependencies>
- </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement