Skip to content

Instantly share code, notes, and snippets.

@jsuwo
Last active August 29, 2015 13:55
Show Gist options
  • Save jsuwo/8706027 to your computer and use it in GitHub Desktop.
Save jsuwo/8706027 to your computer and use it in GitHub Desktop.
Snippets from lab 2 files allowing you to copy/paste them, rather than typing them all in yourselves.
<?xml version="1.0" encoding="UTF-8"?>
<Configuration status="WARN">
<Appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"/>
</Console>
<File name="File1" fileName="target/app.log" bufferedIO="false"></File>
</Appenders>
<Loggers>
<Root level="trace" additivity="true">
<AppenderRef ref="Console"/>
<AppenderRef ref="File1" level="warn"/>
</Root>
</Loggers>
</Configuration>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>ENTER CURRENT VERSION HERE</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>ca.uwo.csd.cs2212.USERNAME.App</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment