more setup
This commit is contained in:
parent
1b176c43f2
commit
f100d2332a
4
.gitignore
vendored
4
.gitignore
vendored
@ -3,3 +3,7 @@
|
|||||||
|
|
||||||
# Ignore Gradle build output directory
|
# Ignore Gradle build output directory
|
||||||
build
|
build
|
||||||
|
bin
|
||||||
|
.project
|
||||||
|
.settings
|
||||||
|
.classpath
|
@ -1,14 +1,17 @@
|
|||||||
/*
|
buildscript {
|
||||||
* This file was generated by the Gradle 'init' task.
|
repositories {
|
||||||
*
|
jcenter()
|
||||||
* This generated file contains a sample Java application project to get you started.
|
mavenCentral()
|
||||||
* For more details take a look at the 'Building Java & JVM projects' chapter in the Gradle
|
}
|
||||||
* User Manual available at https://docs.gradle.org/6.8.2/userguide/building_java_projects.html
|
}
|
||||||
*/
|
|
||||||
|
|
||||||
plugins {
|
plugins {
|
||||||
// Apply the application plugin to add support for building a CLI application in Java.
|
// Apply the application plugin to add support for building a CLI application in Java.
|
||||||
id 'application'
|
id 'application'
|
||||||
|
|
||||||
|
id 'io.freefair.lombok' version '5.3.0'
|
||||||
|
id 'com.github.johnrengelman.shadow' version '6.1.0'
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
@ -42,9 +45,25 @@ dependencies {
|
|||||||
implementation "dev.rsninja:gamej:1.+"
|
implementation "dev.rsninja:gamej:1.+"
|
||||||
implementation "dev.rsninja:gamej:1.+-sources"
|
implementation "dev.rsninja:gamej:1.+-sources"
|
||||||
implementation "dev.rsninja:gamej:1.+-javadoc"
|
implementation "dev.rsninja:gamej:1.+-javadoc"
|
||||||
|
|
||||||
|
// JSON
|
||||||
|
implementation 'com.google.code.gson:gson:2.8.6'
|
||||||
|
|
||||||
|
// Logging
|
||||||
|
compile group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.13.3'
|
||||||
|
compile group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.13.3'
|
||||||
|
compile group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.13.3'
|
||||||
|
implementation "org.slf4j:slf4j-log4j12:1.8.0-alpha2"
|
||||||
|
|
||||||
|
// Lombok
|
||||||
|
compileOnly 'org.projectlombok:lombok:1.18.16'
|
||||||
|
annotationProcessor 'org.projectlombok:lombok:1.18.16'
|
||||||
|
testCompileOnly 'org.projectlombok:lombok:1.18.16'
|
||||||
|
testAnnotationProcessor 'org.projectlombok:lombok:1.18.16'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mainClassName = "ca.retrylife.ldjam48.App"
|
||||||
application {
|
application {
|
||||||
// Define the main class for the application.
|
// Define the main class for the application.
|
||||||
mainClass = 'ca.retrylife.ldjam48.App'
|
mainClass = mainClassName
|
||||||
}
|
}
|
||||||
|
2
app/lombok.config
Normal file
2
app/lombok.config
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
# This file is generated by the 'io.freefair.lombok' Gradle plugin
|
||||||
|
config.stopBubbling = true
|
@ -1,14 +1,9 @@
|
|||||||
/*
|
|
||||||
* This Java source file was generated by the Gradle 'init' task.
|
|
||||||
*/
|
|
||||||
package ca.retrylife.ldjam48;
|
package ca.retrylife.ldjam48;
|
||||||
|
|
||||||
public class App {
|
public class App {
|
||||||
public String getGreeting() {
|
|
||||||
return "Hello World!";
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
System.out.println(new App().getGreeting());
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
10
app/src/main/resources/log4j.properties
Normal file
10
app/src/main/resources/log4j.properties
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
log4j.rootLogger = INFO,console
|
||||||
|
|
||||||
|
log4j.appender.console=org.apache.log4j.ConsoleAppender
|
||||||
|
log4j.appender.console.target=System.out
|
||||||
|
log4j.appender.console.immediateFlush=true
|
||||||
|
log4j.appender.console.encoding=UTF-8
|
||||||
|
#log4j.appender.console.threshold=warn
|
||||||
|
|
||||||
|
log4j.appender.console.layout=org.apache.log4j.PatternLayout
|
||||||
|
log4j.appender.console.layout.conversionPattern=%d [%t] %-5p %c - %m%n
|
@ -1,14 +0,0 @@
|
|||||||
/*
|
|
||||||
* This Java source file was generated by the Gradle 'init' task.
|
|
||||||
*/
|
|
||||||
package ca.retrylife.ldjam48;
|
|
||||||
|
|
||||||
import org.junit.Test;
|
|
||||||
import static org.junit.Assert.*;
|
|
||||||
|
|
||||||
public class AppTest {
|
|
||||||
@Test public void testAppHasAGreeting() {
|
|
||||||
App classUnderTest = new App();
|
|
||||||
assertNotNull("app should have a greeting", classUnderTest.getGreeting());
|
|
||||||
}
|
|
||||||
}
|
|
Reference in New Issue
Block a user