Skip to content

Commit

Permalink
Merge pull request #25 from anweisen/development
Browse files Browse the repository at this point in the history
Release v2.1.3
  • Loading branch information
DomiIRL authored Apr 24, 2022
2 parents fdd156e + f07c0ae commit bc202c4
Show file tree
Hide file tree
Showing 302 changed files with 8,957 additions and 7,381 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# Challenges

Free minecraft challenges plugin to play with friends

## Information
For more information you can visit our [SpigotMC-Site](https://www.spigotmc.org/resources/80548/), our [Website](https://coding-area.net) or our [Discord-Server](https://discord.gg/74Ay5zF)

For more information you can visit our [SpigotMC-Site](https://www.spigotmc.org/resources/80548/),
our [Website](https://coding-area.net) or our [Discord-Server](https://discord.gg/74Ay5zF)

## API
Help for the API can be found at the [Example Repository](https://github.com/KxmischesDomi/Challenges-Example)

Help for the API can be found at
the [Example Repository](https://github.com/KxmischesDomi/Challenges-Example)
3,122 changes: 1,574 additions & 1,548 deletions language/files/de.json

Large diffs are not rendered by default.

3,055 changes: 1,541 additions & 1,514 deletions language/files/en.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions language/languages.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[
"en",
"de"
"en",
"de"
]
258 changes: 129 additions & 129 deletions mongo-connector/pom.xml
Original file line number Diff line number Diff line change
@@ -1,133 +1,133 @@
<?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">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>net.codingarea.challenges</groupId>
<artifactId>root</artifactId>
<version>2.1.2</version>
</parent>

<artifactId>mongo-connector</artifactId>

<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>

<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>${spigot.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver</artifactId>
<version>3.12.7</version>
</dependency>

<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
</dependency>

<dependency>
<groupId>net.codingarea.challenges</groupId>
<artifactId>plugin</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>com.github.anweisen.Utility</groupId>
<artifactId>database-mongodb</artifactId>
<version>${utilities.version}</version>
</dependency>

</dependencies>

<repositories>

<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>

<!-- Jitpack for Utilities Dependencies -->
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>

</repositories>

<build>
<finalName>Challenges-MongoConnector</finalName>
<sourceDirectory>src/main/java</sourceDirectory>

<plugins>

<!-- Compiler declaration -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>

<!-- Plugin for sources -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>

<!-- Include Dependencies -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>com.github.anweisen.Utility:database-mongodb</include>
<include>org.mongodb:mongodb-driver</include>
<include>org.mongodb:mongodb-driver-core</include>
<include>org.mongodb:bson</include>
</includes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>

</plugins>

</build>
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>

<parent>
<groupId>net.codingarea.challenges</groupId>
<artifactId>root</artifactId>
<version>2.1.3</version>
</parent>

<artifactId>mongo-connector</artifactId>

<properties>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>

<dependency>
<groupId>org.spigotmc</groupId>
<artifactId>spigot-api</artifactId>
<version>${spigot.version}</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver</artifactId>
<version>3.12.7</version>
</dependency>

<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
</dependency>

<dependency>
<groupId>net.codingarea.challenges</groupId>
<artifactId>plugin</artifactId>
<version>${project.version}</version>
</dependency>

<dependency>
<groupId>com.github.anweisen.Utility</groupId>
<artifactId>database-mongodb</artifactId>
<version>${utilities.version}</version>
</dependency>

</dependencies>

<repositories>

<repository>
<id>spigot-repo</id>
<url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
</repository>

<!-- Jitpack for Utilities Dependencies -->
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>

</repositories>

<build>

<finalName>Challenges-MongoConnector</finalName>
<sourceDirectory>src/main/java</sourceDirectory>

<plugins>

<!-- Compiler declaration -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>

<!-- Plugin for sources -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.2.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>

<!-- Include Dependencies -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>com.github.anweisen.Utility:database-mongodb</include>
<include>org.mongodb:mongodb-driver</include>
<include>org.mongodb:mongodb-driver-core</include>
<include>org.mongodb:bson</include>
</includes>
</artifactSet>
</configuration>
</execution>
</executions>
</plugin>

</plugins>

</build>

</project>
Loading

0 comments on commit bc202c4

Please sign in to comment.