Skip to content

Commit

Permalink
Upload Project
Browse files Browse the repository at this point in the history
  • Loading branch information
mupezzuol committed Feb 24, 2020
1 parent 5bed2c5 commit 8064ca3
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 0 deletions.
69 changes: 69 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
HELP.md
target/
.mvn/wrapper
mvnw
mvnw.cmd
!.mvn/wrapper/maven-wrapper.jar
!**/src/main/**
!**/src/test/**

.project
.classpath
factoryConfiguration.json

### Eclipse ###
.metadata
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.settings/
.loadpath
.recommenders

# External tool builders
.externalToolBuilders/

# Locally stored "Eclipse launch configurations"
*.launch

# Java annotation processor (APT)
.factorypath

# sbteclipse plugin
.target

# Tern plugin
.tern-project

# TeXlipse plugin
.texlipse

# STS (Spring Tool Suite)
.springBeans

*.class

# Log file
*.log

# Package Files #
*.jar
*.war
*.nar
*.ear
*.zip
*.tar.gz
*.rar

### Java-Web ###
## ignoring target file
target/

### macOS ###
# General
.DS_Store
.AppleDouble
9 changes: 9 additions & 0 deletions src/strategy/StrategyMain.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package strategy;

public class StrategyMain {

public static void main(String[] args) {
System.out.println("Begin Test Strategy");
}

}

0 comments on commit 8064ca3

Please sign in to comment.