Skip to content

Commit

Permalink
Merge pull request #12 from Chickenpowerrr/develop
Browse files Browse the repository at this point in the history
1.3.2 Update
  • Loading branch information
Chickenpowerrr authored Aug 19, 2019
2 parents c658333 + 769d59d commit c6165f1
Show file tree
Hide file tree
Showing 16 changed files with 500 additions and 508 deletions.
76 changes: 38 additions & 38 deletions api/pom.xml
Original file line number Diff line number Diff line change
@@ -1,46 +1,46 @@
<?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<artifactId>ranksync</artifactId>
<groupId>com.gmail.chickenpowerrr</groupId>
<version>1.3.1</version>
</parent>
<modelVersion>4.0.0</modelVersion>
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">
<parent>
<artifactId>ranksync</artifactId>
<groupId>com.gmail.chickenpowerrr</groupId>
<version>1.3.2</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<groupId>com.gmail.chickenpowerrr.ranksync</groupId>
<artifactId>api</artifactId>
<groupId>com.gmail.chickenpowerrr.ranksync</groupId>
<artifactId>api</artifactId>

<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.0</version>
<scope>provided</scope>
</dependency>
<dependencies>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.6</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>com.gmail.chickenpowerrr</groupId>
<artifactId>languagehelper</artifactId>
<version>0.0.2</version>
<scope>compile</scope>
</dependency>
</dependencies>
<dependency>
<groupId>com.gmail.chickenpowerrr</groupId>
<artifactId>languagehelper</artifactId>
<version>0.0.2</version>
<scope>compile</scope>
</dependency>
</dependencies>

<build>
<defaultGoal>clean package</defaultGoal>
<build>
<defaultGoal>clean package</defaultGoal>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>
156 changes: 78 additions & 78 deletions bungee/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,90 @@
<parent>
<artifactId>ranksync</artifactId>
<groupId>com.gmail.chickenpowerrr</groupId>
<version>1.3.1</version>
<version>1.3.2</version>
</parent>

<groupId>com.gmail.chickenpowerrr.ranksync</groupId>
<artifactId>bungee</artifactId>
<description>Sync your ranks Minecraft ranks between services</description>

<repositories>
<repository>
<id>sonatype-oss-repo</id>
<url>https://oss.sonatype.org/content/groups/public/</url>
</repository>

<repository>
<id>CodeMC</id>
<url>https://repo.codemc.org/repository/maven-public</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>net.md-5</groupId>
<artifactId>bungeecord-api</artifactId>
<version>1.12-SNAPSHOT</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.6</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>com.gmail.chickenpowerrr.ranksync</groupId>
<artifactId>manager</artifactId>
<version>${project.parent.version}</version>
<scope>compile</scope>

<exclusions>
<exclusion>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>com.gmail.chickenpowerrr.ranksync</groupId>
<artifactId>server</artifactId>
<version>${project.parent.version}</version>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>com.gmail.chickenpowerrr.ranksync</groupId>
<artifactId>api</artifactId>
<version>${project.parent.version}</version>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.5</version>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bungeecord</artifactId>
<version>1.5</version>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>me.lucko.luckperms</groupId>
<artifactId>luckperms-api</artifactId>
<version>4.4</version>
<scope>provided</scope>
</dependency>
</dependencies>

<build>
<defaultGoal>clean package</defaultGoal>
<plugins>
Expand Down Expand Up @@ -105,81 +182,4 @@
</resource>
</resources>
</build>

<repositories>
<repository>
<id>sonatype-oss-repo</id>
<url>https://oss.sonatype.org/content/groups/public/</url>
</repository>

<repository>
<id>CodeMC</id>
<url>https://repo.codemc.org/repository/maven-public</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>net.md-5</groupId>
<artifactId>bungeecord-api</artifactId>
<version>1.12-SNAPSHOT</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>com.gmail.chickenpowerrr.ranksync</groupId>
<artifactId>manager</artifactId>
<version>${project.parent.version}</version>
<scope>compile</scope>

<exclusions>
<exclusion>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>com.gmail.chickenpowerrr.ranksync</groupId>
<artifactId>server</artifactId>
<version>${project.parent.version}</version>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>com.gmail.chickenpowerrr.ranksync</groupId>
<artifactId>api</artifactId>
<version>${project.parent.version}</version>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>me.lucko.luckperms</groupId>
<artifactId>luckperms-api</artifactId>
<version>4.3</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.0</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.5</version>
<scope>compile</scope>
</dependency>

<dependency>
<groupId>org.bstats</groupId>
<artifactId>bstats-bungeecord</artifactId>
<version>1.5</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
Loading

0 comments on commit c6165f1

Please sign in to comment.