diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4202f39 --- /dev/null +++ b/.gitignore @@ -0,0 +1,117 @@ +# Created by .ignore support plugin (hsz.mobi) +### Java template +# Compiled class file +*.class + +# Log file +*.log + +# BlueJ files +*.ctxt + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.jar +*.war +*.ear +*.zip +*.tar.gz +*.rar + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* +### Eclipse template + +.metadata +bin/ +tmp/ +*.tmp +*.bak +*.swp +*~.nib +local.properties +.settings/ +.loadpath +.recommenders + +# Eclipse Core +.project + +# External tool builders +.externalToolBuilders/ + +# Locally stored "Eclipse launch configurations" +*.launch + +# PyDev specific (Python IDE for Eclipse) +*.pydevproject + +# CDT-specific (C/C++ Development Tooling) +.cproject + +# JDT-specific (Eclipse Java Development Tools) +.classpath + +# Java annotation processor (APT) +.factorypath + +# PDT-specific (PHP Development Tools) +.buildpath + +# sbteclipse plugin +.target + +# Tern plugin +.tern-project + +# TeXlipse plugin +.texlipse + +# STS (Spring Tool Suite) +.springBeans + +# Code Recommenders +.recommenders/ + +# Scala IDE specific (Scala & Java development for Eclipse) +.cache-main +.scala_dependencies +.worksheet +### macOS template +*.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon + + +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +#Intellij files +.idea +*.iml + +.mvn/* +mvnw* +#maven build target +target/ \ No newline at end of file diff --git a/Instructions.pdf b/Instructions.pdf new file mode 100644 index 0000000..2e814c7 Binary files /dev/null and b/Instructions.pdf differ diff --git a/README.md b/README.md new file mode 100644 index 0000000..44864b8 --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +# TC-ZCWBank +[Instructions](https://github.com/Zipcoder/TCUK-Bank-App/blob/master/Instructions.pdf) diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..0a99788 --- /dev/null +++ b/pom.xml @@ -0,0 +1,64 @@ + + + 4.0.0 + + io.zipcoder + zcwbank + 0.0.1-SNAPSHOT + jar + + zcwbank + Banking application + + + org.springframework.boot + spring-boot-starter-parent + 1.5.4.RELEASE + + + + + UTF-8 + UTF-8 + 1.7 + + + + + org.springframework.boot + spring-boot-starter-web + + + org.springframework.boot + spring-boot-starter-data-jpa + + + org.springframework.boot + spring-boot-starter-test + test + + + org.hsqldb + hsqldb + runtime + + + + javax.inject + javax.inject + 1 + + + + + + + org.springframework.boot + spring-boot-maven-plugin + + + + + + diff --git a/src/main/java/io/zipcoder/ZcwbankApplication.java b/src/main/java/io/zipcoder/ZcwbankApplication.java new file mode 100644 index 0000000..60df46b --- /dev/null +++ b/src/main/java/io/zipcoder/ZcwbankApplication.java @@ -0,0 +1,12 @@ +package io.zipcoder; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class ZcwbankApplication { + + public static void main(String[] args) { + SpringApplication.run(ZcwbankApplication.class, args); + } +} diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties new file mode 100644 index 0000000..e69de29 diff --git a/src/test/java/io/zipcoder/ZcwbankApplicationTests.java b/src/test/java/io/zipcoder/ZcwbankApplicationTests.java new file mode 100644 index 0000000..846d527 --- /dev/null +++ b/src/test/java/io/zipcoder/ZcwbankApplicationTests.java @@ -0,0 +1,16 @@ +package io.zipcoder; + +import org.junit.Test; +import org.junit.runner.RunWith; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.test.context.junit4.SpringRunner; + +@RunWith(SpringRunner.class) +@SpringBootTest +public class ZcwbankApplicationTests { + + @Test + public void contextLoads() { + } + +}