-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #93 from PowerNetworkHub/1.10.9
1.10.9
- Loading branch information
Showing
217 changed files
with
12,973 additions
and
2,536 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
<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"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>nl.svenar</groupId> | ||
<artifactId>powerranks.api</artifactId> | ||
<version>${revision}</version> | ||
<name>PowerRanks API</name> | ||
<description>Rank-based permission manager</description> | ||
|
||
<properties> | ||
<java.version>1.8</java.version> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
<src.dir>src/main/java</src.dir> | ||
<rsc.dir>src/main/resources</rsc.dir> | ||
<skipAPITests>false</skipAPITests> | ||
</properties> | ||
|
||
<parent> | ||
<groupId>nl.svenar</groupId> | ||
<artifactId>powerranks</artifactId> | ||
<version>${revision}</version> | ||
</parent> | ||
|
||
<build> | ||
<defaultGoal>clean compile package</defaultGoal> | ||
<finalName>${project.name}</finalName> | ||
<sourceDirectory>${src.dir}</sourceDirectory> | ||
<resources> | ||
<resource> | ||
<directory>${rsc.dir}</directory> | ||
<filtering>true</filtering> | ||
</resource> | ||
</resources> | ||
<plugins> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.8.0</version> | ||
<configuration> | ||
<source>${java.version}</source> | ||
<target>${java.version}</target> | ||
</configuration> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>2.3.1</version> | ||
</plugin> | ||
|
||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>3.2.1</version> | ||
<configuration> | ||
<skipTests>${skipAPITests}</skipTests> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
<repositories> | ||
<repository> | ||
<id>jitpack.io</id> | ||
<url>https://jitpack.io</url> | ||
</repository> | ||
<repository> | ||
<id>svenar</id> | ||
<url>https://svenar.nl/repo/</url> | ||
</repository> | ||
</repositories> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>nl.svenar</groupId> | ||
<artifactId>powerranks.core</artifactId> | ||
<version>${revision}</version> | ||
</dependency> | ||
</dependencies> | ||
</project> |
Oops, something went wrong.