Skip to content
This repository has been archived by the owner on May 13, 2020. It is now read-only.

Commit

Permalink
Fixed Dependencies (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelCoding committed Oct 15, 2019
1 parent c9be939 commit 5e36c2a
Showing 1 changed file with 69 additions and 62 deletions.
131 changes: 69 additions & 62 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,70 +1,77 @@
<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>
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>net.cryptic_game.microservice</groupId>
<artifactId>chat</artifactId>
<version>0.0.3-SNAPSHOT</version>
<packaging>jar</packaging>
<groupId>net.cryptic_game.microservice</groupId>
<artifactId>chat</artifactId>
<version>0.0.3-SNAPSHOT</version>
<packaging>jar</packaging>

<name>cryptic-game-chat</name>
<description>offical chat microservice of cryptic-game</description>
<url>https://cryptic-game.net</url>
<name>cryptic-game-chat</name>
<description>offical chat microservice of cryptic-game</description>
<url>https://cryptic-game.net</url>

<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<archive>
<manifest>
<mainClass>net.cryptic_game.microservice.chat.App</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<archive>
<manifest>
<mainClass>net.cryptic_game.microservice.chat.App</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>

<dependencies>
<dependency>
<groupId>com.github.cryptic-game</groupId>
<artifactId>java-lib</artifactId>
<version>experimental-SNAPSHOT</version>
</dependency>
</dependencies>
<dependencies>
<dependency>
<groupId>com.github.cryptic-game</groupId>
<artifactId>java-lib</artifactId>
<version>experimental-SNAPSHOT</version>
</dependency>

<!-- TODO: Dependency is temporally to prevent crash, it will be added to com.github.cryptic-game:java-lib in the future. -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.26</version>
</dependency>
</dependencies>
</project>

0 comments on commit 5e36c2a

Please sign in to comment.