mirror of
https://github.com/games647/ColorConsole.git
synced 2024-11-27 12:55:58 +01:00
Update bungee proxy repo
This commit is contained in:
parent
7797472526
commit
ea153652d1
16
pom.xml
16
pom.xml
@ -41,10 +41,10 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-compiler-plugin</artifactId>
|
<artifactId>maven-compiler-plugin</artifactId>
|
||||||
<version>3.5.1</version>
|
<version>3.6.0</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<source>1.7</source>
|
<source>1.8</source>
|
||||||
<target>1.7</target>
|
<target>1.8</target>
|
||||||
<showWarnings>true</showWarnings>
|
<showWarnings>true</showWarnings>
|
||||||
<showDeprecation>true</showDeprecation>
|
<showDeprecation>true</showDeprecation>
|
||||||
</configuration>
|
</configuration>
|
||||||
@ -53,7 +53,7 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<groupId>org.apache.maven.plugins</groupId>
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
<artifactId>maven-jar-plugin</artifactId>
|
<artifactId>maven-jar-plugin</artifactId>
|
||||||
<version>2.6</version>
|
<version>3.0.2</version>
|
||||||
<configuration>
|
<configuration>
|
||||||
<outputDirectory>${outputDir}</outputDirectory>
|
<outputDirectory>${outputDir}</outputDirectory>
|
||||||
</configuration>
|
</configuration>
|
||||||
@ -86,8 +86,8 @@
|
|||||||
|
|
||||||
<!--BungeeCord with also the part outside the API-->
|
<!--BungeeCord with also the part outside the API-->
|
||||||
<repository>
|
<repository>
|
||||||
<id>myplayplanet-REPO</id>
|
<id>bungee-repo</id>
|
||||||
<url>http://maven.myplayplanet.net/</url>
|
<url>http://maven.addstar.com.au/artifactory/ext-snapshot-local/</url>
|
||||||
</repository>
|
</repository>
|
||||||
|
|
||||||
<!--Sponge-API-->
|
<!--Sponge-API-->
|
||||||
@ -110,14 +110,14 @@
|
|||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.md-5</groupId>
|
<groupId>net.md-5</groupId>
|
||||||
<artifactId>bungeecord-proxy</artifactId>
|
<artifactId>bungeecord-proxy</artifactId>
|
||||||
<version>1.8-SNAPSHOT</version>
|
<version>1.11-SNAPSHOT</version>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>org.spongepowered</groupId>
|
<groupId>org.spongepowered</groupId>
|
||||||
<artifactId>spongeapi</artifactId>
|
<artifactId>spongeapi</artifactId>
|
||||||
<version>5.0.0-SNAPSHOT</version>
|
<version>5.0.0</version>
|
||||||
<type>jar</type>
|
<type>jar</type>
|
||||||
<scope>provided</scope>
|
<scope>provided</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
@ -61,7 +61,7 @@ public class ColorLogFormatter extends Formatter {
|
|||||||
|
|
||||||
formatted.append(levelColor);
|
formatted.append(levelColor);
|
||||||
|
|
||||||
formatted.append(this.date.format(Long.valueOf(record.getMillis())));
|
formatted.append(this.date.format(record.getMillis()));
|
||||||
formatted.append(" [");
|
formatted.append(" [");
|
||||||
formatted.append(record.getLevel().getName());
|
formatted.append(record.getLevel().getName());
|
||||||
formatted.append("] ");
|
formatted.append("] ");
|
||||||
|
Loading…
Reference in New Issue
Block a user