Skip to content

Commit 9e7c744

Browse files
committed
Merge branch 'step-03' of https://github.com/MasterBlaze9/java-bank into step-03
2 parents 4f5536a + 96748b4 commit 9e7c744

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+1515
-468
lines changed

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
## JavaBank
2+
3+
This is a read only repository. You can only pull from this repo, not push.
4+
5+
On your local machine, inside of your local repository, add this repo using `git remote add ac <github-url>` where `<github-url>` is the url of this repo.
6+
7+
At each step, you will make sure to:
8+
9+
1. add and commit local changes
10+
2. `git checkout master`
11+
3. `git pull origin master`
12+
4. `git checkout -b <branchname>`
13+
5. work on your local branch

pom.xml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>io.codeforall.bootcamp.javabank</groupId>
8+
<artifactId>javabank-step02-mvc</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
<properties>
12+
<maven.compiler.source>21</maven.compiler.source>
13+
<maven.compiler.target>21</maven.compiler.target>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
</properties>
16+
17+
<dependencies>
18+
<dependency>
19+
<groupId>org.academiadecodigo.bootcamp</groupId>
20+
<artifactId>prompt-view</artifactId>
21+
<version>0.2.1-SNAPSHOT</version>
22+
</dependency>
23+
</dependencies>
24+
25+
<build>
26+
<plugins>
27+
<plugin>
28+
<artifactId>maven-assembly-plugin</artifactId>
29+
<configuration>
30+
<archive>
31+
<manifest>
32+
<mainClass>io.codeforall.bootcamp.javabank.javabank.App</mainClass>
33+
</manifest>
34+
</archive>
35+
<descriptorRefs>
36+
<descriptorRef>jar-with-dependencies</descriptorRef>
37+
</descriptorRefs>
38+
</configuration>
39+
<executions>
40+
<execution>
41+
<phase>package</phase>
42+
<goals>
43+
<goal>single</goal>
44+
</goals>
45+
</execution>
46+
</executions>
47+
</plugin>
48+
</plugins>
49+
</build>
50+
51+
</project>

src/io/codeforall/bootcamp/javabank/domain/Bank.java

Lines changed: 0 additions & 60 deletions
This file was deleted.

src/io/codeforall/bootcamp/javabank/domain/Customer.java

Lines changed: 0 additions & 123 deletions
This file was deleted.

src/io/codeforall/bootcamp/javabank/test/AccountManagerTest.java

Lines changed: 0 additions & 58 deletions
This file was deleted.

src/io/codeforall/bootcamp/javabank/test/BankTest.java

Lines changed: 0 additions & 42 deletions
This file was deleted.

src/io/codeforall/bootcamp/javabank/test/CheckingAccountTest.java

Lines changed: 0 additions & 32 deletions
This file was deleted.

0 commit comments

Comments
 (0)