Compare commits
5 Commits
Author | SHA1 | Date |
---|---|---|
|
4263c8c85c | |
|
3ee0bc95bd | |
|
6da1bde969 | |
|
2cb172971a | |
|
241a7ddd2c |
|
@ -41,7 +41,7 @@
|
|||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.8.1</version>
|
||||
<version>3.13.0</version>
|
||||
<configuration>
|
||||
<source>${maven.compiler.source}</source>
|
||||
<target>${maven.compiler.target}</target>
|
||||
|
@ -52,7 +52,10 @@
|
|||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-shade-plugin</artifactId>
|
||||
<version>3.2.4</version>
|
||||
<version>3.6.0</version>
|
||||
<configuration>
|
||||
<createDependencyReducedPom>false</createDependencyReducedPom>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>package</phase>
|
||||
|
@ -63,8 +66,7 @@
|
|||
<transformers>
|
||||
<transformer
|
||||
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
|
||||
<mainClass>
|
||||
de.hs_mannheim.informatik.mvn.Main</mainClass>
|
||||
<mainClass>de.hs_mannheim.informatik.mvn.Main</mainClass>
|
||||
</transformer>
|
||||
</transformers>
|
||||
</configuration>
|
||||
|
@ -97,7 +99,11 @@
|
|||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-pmd-plugin</artifactId>
|
||||
<version>3.22.0</version>
|
||||
<version>3.26.0</version>
|
||||
<configuration>
|
||||
<failOnViolation>false</failOnViolation>
|
||||
<printFailingErrors>true</printFailingErrors>
|
||||
</configuration>
|
||||
<executions>
|
||||
<execution>
|
||||
<phase>verify</phase>
|
||||
|
@ -113,15 +119,12 @@
|
|||
</build>
|
||||
|
||||
<reporting>
|
||||
|
||||
<plugins>
|
||||
|
||||
<!-- generate Javadocs via "mvn site" and find them in the site
|
||||
folder-->
|
||||
<!-- generate Javadocs via "mvn site" and find them in the sie folder-->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-javadoc-plugin</artifactId>
|
||||
<version>3.11.1</version>
|
||||
<version>3.11.2</version>
|
||||
<configuration>
|
||||
<show>private</show>
|
||||
<nohelp>true</nohelp>
|
||||
|
@ -131,7 +134,7 @@
|
|||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-checkstyle-plugin</artifactId>
|
||||
<version>3.0.0</version>
|
||||
<version>3.6.0</version>
|
||||
</plugin>
|
||||
|
||||
</plugins>
|
||||
|
|
|
@ -1,20 +1,41 @@
|
|||
package de.hs_mannheim.informatik.mvn;
|
||||
|
||||
import org.apache.logging.log4j.Logger;
|
||||
import java.io.BufferedReader;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.io.InputStreamReader;
|
||||
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
import org.apache.logging.log4j.Logger;
|
||||
|
||||
public class Main {
|
||||
private static final Logger LOG = LogManager.getLogger();
|
||||
// Aufruf mit externer Log-Config im gleichen Pfad wie das JAR:
|
||||
// java -Dlog4j.configurationFile=log4j2.xml -jar MvnDemo-0.0.1-SNAPSHOT.jar
|
||||
private static final Logger LOG = LogManager.getLogger(Main.class);
|
||||
|
||||
public static void main(String[] args) {
|
||||
LOG.info("Hallo Maven!");
|
||||
LOG.info("Hallo Log4J");
|
||||
|
||||
System.out.println("Hello!");
|
||||
System.out.println(loadText("someText.txt"));
|
||||
System.out.println(new Main().add(3, 4));
|
||||
}
|
||||
|
||||
public int add(int a, int b) {
|
||||
LOG.info("a = {}, b = {}", a, b);
|
||||
|
||||
|
||||
return a + b;
|
||||
}
|
||||
|
||||
public static String loadText(String filename) {
|
||||
try (InputStream in = Main.class.getClassLoader().getResourceAsStream(filename);
|
||||
BufferedReader reader = new BufferedReader(new InputStreamReader(in))) {
|
||||
|
||||
return reader.readLine();
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,17 +1,18 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Configuration status="WARN">
|
||||
<Configuration xmlns="https://logging.apache.org/xml/ns"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="https://logging.apache.org/xml/ns https://logging.apache.org/xml/ns/log4j-config-2.xsd">
|
||||
<Appenders>
|
||||
<!-- Konsole Appender -->
|
||||
<Console name="Console" target="SYSTEM_OUT">
|
||||
<!-- Console appender configuration -->
|
||||
<Console name="console" target="SYSTEM_OUT">
|
||||
<PatternLayout
|
||||
pattern="%d{yyyy-MM-dd HH:mm:ss} [%t] %-5level %C{1} - %msg%n" />
|
||||
pattern="%d{yyyy-MM-dd HH:mm:ss} %-5p %c{1}:%L - %m%n" />
|
||||
</Console>
|
||||
</Appenders>
|
||||
|
||||
<Loggers>
|
||||
<!-- Root Logger -->
|
||||
<Root level="info">
|
||||
<AppenderRef ref="Console" />
|
||||
<!-- Root logger referring to console appender -->
|
||||
<Root level="INFO" additivity="false">
|
||||
<AppenderRef ref="console" />
|
||||
</Root>
|
||||
</Loggers>
|
||||
</Configuration>
|
|
@ -0,0 +1 @@
|
|||
Hallo Maven!
|
|
@ -6,8 +6,13 @@ import org.junit.jupiter.api.Test;
|
|||
class AddTest {
|
||||
|
||||
@Test
|
||||
void test() {
|
||||
void testAdd() {
|
||||
assertEquals(7, new Main().add(3, 4));
|
||||
}
|
||||
|
||||
@Test
|
||||
void testLoader() {
|
||||
assertEquals("Test Text", Main.loadText("test.txt"));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
Test Text
|
Loading…
Reference in New Issue