Skip to content

Commit 00e3f6a

Browse files
authored
Merge branch 'code-differently:main' into DavidSmith-Lesson16
2 parents e8ae7f4 + d46c282 commit 00e3f6a

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

lesson_16/objects/objects_app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ plugins {
33
application
44
eclipse
55
jacoco
6+
id("io.freefair.lombok") version "8.10.2"
67
id("com.diffplug.spotless") version "6.25.0"
78
id("org.springframework.boot") version "3.2.2"
89
id("com.adarshr.test-logger") version "4.0.0"
@@ -25,7 +26,6 @@ dependencies {
2526
// This dependency is used by the application.
2627
implementation("com.google.guava:guava:31.1-jre")
2728
implementation("com.google.code.gson:gson:2.10.1")
28-
implementation("org.projectlombok:lombok:1.18.30")
2929
implementation("org.springframework.boot:spring-boot-starter")
3030
}
3131

lesson_17/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Your task for this assignment is add enhancements to an ATM simulator. The [Bank
2929
* We want the `BankAtm` class to support the concept of a `BusinessCheckingAccount`. A business account requires that at least one of the owning accounts is a business.
3030
* In addition to supporting checks and cash, we also want to support the concept of another monetary instrument called a `MoneyOrder`. Unlike a `Check`, a `MoneyOrder` withdraws funds from a source account immediately on creation for the purposes of this simulation..
3131
* For traceability, all of the transactions in the `BankAtm` class should logged. Create an `AuditLog` class that keeps a record of all debits and credits to any account and integrate it with the `BankAtm` class.
32-
* For the `depositFunds` method that accepts a cash amount, we'd like the ability to deposit funds in a variety of currencies. Add a parameter that accepts a currency type and a new object that encapsulates the currency converter logic for converting a cash amount to the account currency type.
32+
* ~~For the `depositFunds` method that accepts a cash amount, we'd like the ability to deposit funds in a variety of currencies. Add a parameter that accepts a currency type and a new object that encapsulates the currency converter logic for converting a cash amount to the account currency type.~~
3333

3434
### Technical Requirements
3535

lesson_17/bank/bank_app/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ plugins {
33
application
44
eclipse
55
jacoco
6+
id("io.freefair.lombok") version "8.10.2"
67
id("com.diffplug.spotless") version "6.25.0"
78
id("org.springframework.boot") version "3.2.2"
89
id("com.adarshr.test-logger") version "4.0.0"

0 commit comments

Comments
 (0)