more setup

This commit is contained in:
Evan Pratten 2021-04-05 14:30:59 -04:00
parent 1b176c43f2
commit f100d2332a
6 changed files with 45 additions and 29 deletions

4
.gitignore vendored
View File

@ -3,3 +3,7 @@
# Ignore Gradle build output directory
build
bin
.project
.settings
.classpath

View File

@ -1,14 +1,17 @@
/*
* This file was generated by the Gradle 'init' task.
*
* This generated file contains a sample Java application project to get you started.
* 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
*/
buildscript {
repositories {
jcenter()
mavenCentral()
}
}
plugins {
// Apply the application plugin to add support for building a CLI application in Java.
id 'application'
id 'io.freefair.lombok' version '5.3.0'
id 'com.github.johnrengelman.shadow' version '6.1.0'
}
repositories {
@ -42,9 +45,25 @@ dependencies {
implementation "dev.rsninja:gamej:1.+"
implementation "dev.rsninja:gamej:1.+-sources"
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 {
// Define the main class for the application.
mainClass = 'ca.retrylife.ldjam48.App'
mainClass = mainClassName
}

2
app/lombok.config Normal file
View File

@ -0,0 +1,2 @@
# This file is generated by the 'io.freefair.lombok' Gradle plugin
config.stopBubbling = true

View File

@ -1,14 +1,9 @@
/*
* This Java source file was generated by the Gradle 'init' task.
*/
package ca.retrylife.ldjam48;
public class App {
public String getGreeting() {
return "Hello World!";
}
public static void main(String[] args) {
System.out.println(new App().getGreeting());
}
}

View 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

View File

@ -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());
}
}