Compare commits

..

No commits in common. "660681ea281c2755c2c3e911769a2fab8e755ff4" and "164bc0e70f8a29707abe0d1218f696c35fcaf327" have entirely different histories.

5 changed files with 0 additions and 37 deletions

View File

@ -23,5 +23,4 @@ pluginManagement {
rootProject.name = 'csde-cordapp-template-java'
include ':workflows'
include ':contracts'
include ':subapp'

View File

@ -1,11 +0,0 @@
plugins {
id 'application'
}
apply plugin: 'application'
mainClassName = 'employee.EmployeeApp'
println 'This is executed during configuration phase'
task configured {
println 'The project is configured'
}

View File

@ -1,7 +0,0 @@
package employee;
public class Employee {
String name;
String emailAddress;
int yearOfBirth;
}

View File

@ -1,16 +0,0 @@
package employee;
public class EmployeeApp {
public static void main(String[] args){
Employee employee = new Employee();
employee.name = "John";
employee.emailAddress = "john@baeldung.com";
employee.yearOfBirth = 1978;
System.out.println("Name: " + employee.name);
System.out.println("Email Address: " + employee.emailAddress);
System.out.println("Year Of Birth:" + employee.yearOfBirth);
}
}

View File

@ -51,8 +51,6 @@ dependencies {
testImplementation "org.mockito.kotlin:mockito-kotlin:$mockitoKotlinVersion"
testImplementation "org.hamcrest:hamcrest-library:$hamcrestVersion"
// testImplementation "net.corda:corda-simulator-api:5.0.0.0-Fox1.1"//:$simulatorVersion"
// testRuntimeOnly "net.corda:corda-simulator-runtime:5.0.0.0-Fox1.1"//:$simulatorVersion"
}
// The CordApp section.