From 9ab266ee717bd458ad2d77b5c6cdb7ab316df3ea Mon Sep 17 00:00:00 2001 From: bbortt Date: Thu, 1 Dec 2016 23:18:45 +0100 Subject: [PATCH] working tree clean --- .gitignore | 7 ++ dependency-reduced-pom.xml | 231 ------------------------------------- start_linux.sh | 29 ----- start_windows.bat | 26 ----- 4 files changed, 7 insertions(+), 286 deletions(-) delete mode 100644 dependency-reduced-pom.xml delete mode 100644 start_linux.sh delete mode 100644 start_windows.bat diff --git a/.gitignore b/.gitignore index 99f7e9c..de19649 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,10 @@ log/ target/ /bin/ + +# lib folders +lib/apache-maven-3.3.9 +lib/jdk1.8.0_101 + +# start scripts +start_* \ No newline at end of file diff --git a/dependency-reduced-pom.xml b/dependency-reduced-pom.xml deleted file mode 100644 index 3e9bda7..0000000 --- a/dependency-reduced-pom.xml +++ /dev/null @@ -1,231 +0,0 @@ - - - - spring-boot-starter-parent - org.springframework.boot - 1.4.2.RELEASE - ../pom.xml/pom.xml - - 4.0.0 - ch.gibb.iet.modul306 - vmlauncher - VMLauncher - 0.2.0 - Project in Modul 306. - - - default-profile - - - - true - C:\dev\workspace\GibbiX_Launcher_2.0\src\main\resources - - - GibbiX Launcher 2.0 - - - maven-compiler-plugin - 3.5.1 - - - default-compile - compile - - compile - - - - default-testCompile - test-compile - - testCompile - - - - - - maven-resources-plugin - 3.0.1 - - - default-testResources - process-test-resources - - testResources - - - - @ - - false - - - - default-resources - process-resources - - resources - - - - @ - - false - - - - - - @ - - false - - - - maven-shade-plugin - 2.4.3 - - - package - - shade - - - - - META-INF/spring.handlers - - - META-INF/spring.factories - - - META-INF/spring.schemas - - - - ch.gibb.iet.modul306.vmlauncher.app.app - - - - - *:* - - META-INF/*.SF - META-INF/*.DSA - META-INF/*.RSA - - - - true - true - - - - - - org.springframework.boot - spring-boot-maven-plugin - 1.4.2.RELEASE - compile - - - - true - true - - - *:* - - META-INF/*.SF - META-INF/*.DSA - META-INF/*.RSA - - - - - - - org.codehaus.mojo - exec-maven-plugin - 1.5.0 - - ch.gibb.iet.modul306.vmlauncher.app.app - true - - - - - - - - - maven-javadoc-plugin - 2.10.4 - - public - true - - - - - - - - - org.springframework.boot - spring-boot-starter - 1.4.2.RELEASE - provided - - - spring-boot-starter-logging - org.springframework.boot - - - - - org.springframework.boot - spring-boot-starter-log4j - 1.3.8.RELEASE - provided - - - org.springframework - spring-context - 4.3.4.RELEASE - provided - - - net.lingala.zip4j - zip4j - 1.3.2 - provided - - - org.apache.commons - commons-io - 1.3.2 - compile - - - com.oracle - javafx - 2.2.3 - provided - C:\dev\workspace\GibbiX_Launcher_2.0/lib/jfxrt.jar - - - com.oracle - javafx - 2.2.3 - system - ${project.basedir}/lib/jfxrt.jar - - - - 1.8 - 1.8 - - - diff --git a/start_linux.sh b/start_linux.sh deleted file mode 100644 index 7115e3f..0000000 --- a/start_linux.sh +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/bash -# This script launches VMLauncher 2.0 as long as the maven-shade-plugin does not work properly! -# @author: Timon Borter -# @version: 1.0.0 - -cat << "EOF" --------------------------------------------------------------- ---------------------------------------------------------------- - __ ____ __ _ _ ___ __ - \ \ / / \/ | | __ _ _ _ _ _ __| |_ ___ _ _ |_ ) / \ - \ V /| |\/| | |__/ _` | || | ' \/ _| ' \/ -_) '_| / / | () | - \_/ |_| |_|____\__,_|\_,_|_||_\__|_||_\___|_| /___(_)__/ ---------------------------------------------------------------- -EOF - -echo "---------------------------------------------------------------" -echo "Setting temporary environment variables.." - -echo "M2_HOME to "$( cd "$( dirname "${BASH_SOURCE[0]}" )" && PWD )"/apache-maven-3.3.9" -set M2_HOME="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && PWD )"/lib/apache-maven-3.3.9 - -echo "JAVA_HOME to "$( cd "$( dirname "${BASH_SOURCE[0]}" )" && PWD )"/jdklib/1.8.0_101" -set JAVA_HOME="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && PWD )"/lib/jdk1.8.0_101 - -echo "---------------------------------------------------------------" -echo "Launching maven with temporal properties.." -./lib/apache-maven-3.3.9/bin/mvn clean install exec:java - -exit 0 \ No newline at end of file diff --git a/start_windows.bat b/start_windows.bat deleted file mode 100644 index 14aeac5..0000000 --- a/start_windows.bat +++ /dev/null @@ -1,26 +0,0 @@ -@ECHO off - -TITLE VMLauncher 2.0 - -ECHO "---------------------------------------------------------------" -ECHO "--------------- WELCOME TO VM-LAUNCHER 2.0 --------------------" -ECHO "---------------------------------------------------------------" - -:: This script launches VMLauncher 2.0 as long as the maven-shade-plugin does not work properly! -:: @author: Timon Borter -:: @version: 1.0.0 - -ECHO "---------------------------------------------------------------" -ECHO Setting temporary environment variables - -ECHO M2_HOME to %~dp0lib\apache-maven-3.3.9 -SET M2_HOME=%~dp0lib\apache-maven-3.3.9 - -ECHO JAVA_HOME to %~dp0jdklib\1.8.0_101 -SET JAVA_HOME=%~dp0lib\jdk1.8.0_101 - -ECHO "---------------------------------------------------------------" -ECHO Launching maven with temporal properties -call %~dp0lib\apache-maven-3.3.9\bin\mvn clean install exec:java - -:: EXIT \ No newline at end of file