Skip to content
Snippets Groups Projects
Commit 35e77026 authored by Goik Martin's avatar Goik Martin
Browse files

Update dependencies

parent e39a6572
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@
<version>1.1</version>
<packaging>jar</packaging>
<distributionManagement>
<distributionManagement> <!-- mvn deploy -->
<!-- This requires configurations in ~/.m2/settings.xml, see local settings.xml.template
example file in overall git project root. -->
<repository>
......
......@@ -9,7 +9,7 @@
<name>${artifactId}</name>
<url>http://www.mi.hdm-stuttgart.de/freedocs/topic/de.hdm_stuttgart.mi.lectures/sd1SectUsingMaven.html</url>
<url>https://freedocs.mi.hdm-stuttgart.de/sd1SectToolsOfTheTrade2.html</url>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
......@@ -26,7 +26,7 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.7</version>
<version>2.9.1</version>
</dependency>
</dependencies>
......@@ -37,7 +37,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.0</version>
<version>3.7.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
......@@ -54,7 +54,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.3</version>
<version>3.1.0</version>
<configuration>
<transformers>
<transformer
......
......@@ -6,14 +6,17 @@ import org.apache.logging.log4j.Logger;
/**
* A simple http://logging.apache.org/log4j/2.x demo,
* see file log4j2.xml for configuration options.
*
* see file resources/log4j2.xml for configuration options
* and A1.log containing debugging output.
*/
public class App {
private static Logger log = LogManager.getLogger(App.class);
/**
* @param args Unused
* Your application's main entry point.
*
* @param args Yet unused
*/
public static void main( String[] args ) {
System.out.println( "Hello World!" );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment