-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/ToolBox' into ToolBox
# Conflicts: # .github/workflows/maven.yml
- Loading branch information
Showing
3 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
--- | ||
- name: "Playing with Ansible and Git" | ||
hosts: localhost | ||
connection: local | ||
tasks: | ||
|
||
- name: "Download Apache Maven" | ||
get_url: url=http://apache.claz.org/maven/maven-3/3.1.1/binaries/apache-maven--bin.tar.gz dest=/tmp/apache-maven-3.1.1-bin.tar.gz | ||
|
||
- name: "Untar Maven " | ||
shell: chdir=/tmp creates=/opt/apache-maven-3.1.1 tar -zxf apache-maven-3.1.1-bin.tar.gz -C /opt | ||
|
||
- name: "Update path for maven use" | ||
shell: export PATH=/opt/apache-maven-3.1.1/bin:$PATH | ||
|
||
- name: "Make Maven Wrapper" | ||
shell: mvn wrapper:wrapper | ||
|
||
- name: "Build with Maven" | ||
shell: "mvn -B clean package --file Hearty-Levels/pom.xml" | ||
register: "output" | ||
|
||
- name: "Update GIT" | ||
shell: git add * && git commit -m "Ansible is WORKING" && git push origin | ||
|
||
- debug: var=output.stdout_lines | ||
|
||
|
Binary file modified
BIN
+0 Bytes
(100%)
target/classes/me/thegoldenmine/levelhearts/levelhearts/Checker.class
Binary file not shown.
Binary file modified
BIN
+43 Bytes
(100%)
target/classes/me/thegoldenmine/levelhearts/levelhearts/LevelHearts.class
Binary file not shown.