diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml
new file mode 100644
index 0000000..58e1c59
--- /dev/null
+++ b/.github/workflows/gradle.yml
@@ -0,0 +1,26 @@
+# This workflow will build a Java project with Gradle
+# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
+
+name: Java CI with Gradle
+
+on:
+ push:
+ branches: [ master ]
+ pull_request:
+ branches: [ master ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: Set up JDK 1.8
+ uses: actions/setup-java@v1
+ with:
+ java-version: 1.8
+ - name: Grant execute permission for gradlew
+ run: chmod +x gradlew
+ - name: Build with Gradle
+ run: ./gradlew build
diff --git a/Jenkins_Tweak b/Jenkins_Tweak
new file mode 100644
index 0000000..619e108
--- /dev/null
+++ b/Jenkins_Tweak
@@ -0,0 +1,93 @@
+pipeline {
+
+ //agent any 2
+ agent {
+ kubernetes {
+ label 'SpringBootRestApp'
+ defaultContainer 'jnlp'
+ yaml """
+apiVersion: v1
+kind: Pod
+metadata:
+labels:
+ component: ci
+spec:
+ containers:
+ - name: gradle
+ image: gradle:3.5-jdk8-alpine
+ command:
+ - cat
+ tty: true
+"""
+}
+ }
+
+ stages {
+
+ stage('SCM Checkout') {
+ steps {
+
+
+
+ /* //git branch: 'feature', credentialsId: 'git_creds', url: 'https://github.com/sdgcpsb/SpringBootRestApp.git'
+
+ script {
+ propfile = readProperties(file: './project.properties')
+ println ("reading properties ...")
+println ("branch_name:"+ propfile['deploy'])
+
+ } */
+
+ }
+
+
+
+ }
+
+
+
+ stage ("Deploy") {
+ steps {
+ container ('gradle') {
+ sh '''
+
+ deploy=`cat project.properties | grep "feature_deploy" | cut -d'=' -f2 | awk '{print $1}' `
+
+
+ if test "$deploy" = true
+ then
+ echo " im deploying"
+ else
+ echo "no need"
+ fi
+
+ server_list=`cat project.properties | grep "servers" | cut -d'=' -f2 `
+ echo $server_list
+ for server in $server_list
+
+ do
+
+ echo $server
+ done
+
+
+
+ '''
+
+
+
+ }
+ }
+ }
+ stage ("use env vars") {
+ steps {
+ sh "printenv | sort"
+ echo "BUILD_NUMBER = ${env.BUILD_NUMBER}"
+ echo "BRANCH_NAME = ${env.BRANCH_NAME}"
+ }
+ }
+
+
+ }
+}
+
diff --git a/Jenkinsfile b/Jenkinsfile
new file mode 100644
index 0000000..9c1272e
--- /dev/null
+++ b/Jenkinsfile
@@ -0,0 +1,76 @@
+pipeline {
+ environment {
+ PROJECT_ID = "sd-devops"
+ APP_NAME = "sample-java-app"
+ CLUSTER_NAME = "cluster-1"
+ CLUSTER_ZONE = "us-central1-a"
+ CREDENTIALS_ID = "sd-devops"
+ }
+ //agent any 2
+ agent {
+ kubernetes {
+ label 'SpringBootRestApp'
+ defaultContainer 'jnlp'
+ yaml """
+ apiVersion: v1
+ kind: Pod
+ metadata:
+ labels:
+ component: ci
+ spec:
+ containers:
+ -name: gradle
+ image: gradle: 3.5 - jdk8 - alpine
+ command:
+ -cat
+ tty: true
+ """
+ }
+ }
+ stages {
+ stage('test') {
+ parallel {
+ stage('check_gradle_version') {
+ steps {
+ container('gradle') {
+ sh 'gradle -v'
+ sh 'echo workspace is $WORKSPACE'
+ sh "ls -la ${pwd()}"
+ sh 'chmod 777 * '
+ sh './gradlew compileJava'
+ }
+ }
+ }
+ stage('Unit Test') {
+ steps {
+ container('gradle') {
+ withMaven(maven: 'MAVEN-3.6.3') {
+ withSonarQubeEnv(installationName: 'Sonarqube') {
+ echo 'I am executing unit test'
+ sh "ls -la ${pwd()}"
+ sh 'mvn -f sample-java-app/pom.xml clean package'
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ stage('Code Quality') {
+ steps {
+ container('gradle') {
+ withMaven(maven: 'MAVEN-3.6.3') {
+ withSonarQubeEnv(installationName: 'Sonarqube') {
+ echo 'I am executing code quality using sonarqube'
+ sh 'mvn -f sample-java-app/pom.xml sonar:sonar'
+ }
+ sleep(60)
+ timeout(time: 1, unit: 'MINUTES') {
+ waitForQualityGate abortPipeline: true
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/Jenkinsfile_AIP b/Jenkinsfile_AIP
new file mode 100644
index 0000000..13d061d
--- /dev/null
+++ b/Jenkinsfile_AIP
@@ -0,0 +1,178 @@
+pipeline {
+
+ agent {
+ kubernetes {
+ label 'SpringBootRestApp'
+ defaultContainer 'jnlp'
+ yaml """
+apiVersion: v1
+kind: Pod
+metadata:
+labels:
+ component: ci
+spec:
+ containers:
+ - name: gradle
+ image: gradle:3.5-jdk8-alpine
+ command:
+ - cat
+ tty: true
+"""
+}
+ }
+
+stages {
+ stage('Build & Unit Test') {
+ steps {
+ container('gradle') {
+ withMaven(maven: 'MAVEN-3.6.3') {
+ withSonarQubeEnv(installationName: 'Sonarqube') {
+ echo 'I am executing unit test'
+ // sh 'for i in ESBAuditClient ESBAuditLog ESBErrorTranslator TaxESB FraudESB FulfillmentESB PaymentESB ESBRadial ESBAutomatedQueueRetry AlertESB OrderReconESB;do gradle --no-daemon -p ${i} clean build;done'
+ sh 'mvn -f sample-java-app/pom.xml clean package'
+ }
+ }
+ }
+ }
+ }
+ stage('Code Quality') {
+ steps {
+ container('gradle') {
+ withMaven(maven: 'MAVEN-3.6.3') {
+ withSonarQubeEnv(installationName: 'Sonarqube') {
+ echo 'I am executing code quality using sonarqube'
+ sh 'mvn -f sample-java-app/pom.xml sonar:sonar'
+ }
+ sleep(60)
+ timeout(time: 1, unit: 'MINUTES') {
+ waitForQualityGate abortPipeline: true
+ }
+ }
+ }
+ }
+ }
+ stage("Publish Package") {
+ steps {
+ container('gradle') {
+ script {
+ propfile = readProperties(file: './project.properties')
+ println("deploy:" + propfile['feature_deploy'])
+ println("reading properties ...")
+ if (propfile['feature_deploy'] == "true" || env.BRANCH_NAME == 'dev' || env.BRANCH_NAME == 'release') {
+ withMaven(maven: 'MAVEN-3.6.3') {
+ echo 'I am pushing the artifact with unique name showing the branch from which it is generated, to Archiva'
+ /* echo 'copying the jar and war files from the individual target directorrys and copying it to artifacts directory '
+ sh "mkdir -p $WORKSPACE/artifacts"
+ sh 'for i in ESBAuditClient ESBAuditLog ESBErrorTranslator TaxESB FraudESB FulfillmentESB PaymentESB ESBRadial ESBAutomatedQueueRetry AlertESB OrderReconESB;do cp -rp ${i}/dist/libs/* $WORKSPACE/artifacts/ ;done' */
+ /* echo 'create a tar file on the Jenkins server'
+ sh "cd $WORKSPACE/artifacts/ && tar -cvzf artifact.tar * && md5sum artifact.tar archiveArtifacts artifacts: 'artifacts/*.tar', fingerprint: true */
+ sh 'mv sample-java-app/target/sample-0.0.1-SNAPSHOT.jar sample-java-app/target/sample-build_${BUILD_NUMBER}-branch_${BRANCH_NAME}.jar'
+ sh 'ls -lrt sample-java-app/target/'
+ sh 'mvn -X deploy:deploy-file -Dfile=sample-java-app/target/sample-build_${BUILD_NUMBER}-branch_${BRANCH_NAME}.jar -DpomFile=sample-java-app/pom.xml -DrepositoryId=snapshots -Durl=https://archiva.sgn.devops.accentureanalytics.com/repository/snapshots/'
+ echo "noooooooooooooooooo"
+ }
+ }
+ }
+ }
+ }
+ }
+ stage("Deploy") {
+ steps {
+ container('gradle') {
+ script {
+ propfile = readProperties(file: './project.properties')
+ println("deploy:" + propfile['feature_deploy'])
+ println("reading properties ...")
+ if (propfile['feature_deploy'] == "true" || env.BRANCH_NAME == 'dev' || env.BRANCH_NAME == 'release') {
+ withMaven(maven: 'MAVEN-3.6.3') {
+ echo 'I am deploying the artifact into the target environment'
+ echo 'shutting down the tomcat ESB server'
+ /* sh 'ssh $DEPLOYMENT_USER@$DEPOYMENT_SERVER "$ESB_BIN_PATH stop || sleep 20"'
+ echo 'force stop any remaining mule process'
+ sh 'ssh $DEPLOYMENT_USER@$DEPOYMENT_SERVER "if [[ $(ps aux | grep /opt/mule/latest/ | grep -vc grep) > 0 ]]; then "kill -9 $(ps -ef|pgrep -f "/opt/mule/latest/bin")"; else echo "do nothing"; fi"' */
+ echo 'tomcat server stopped'
+ echo 'copying the tar file from jenkins to deployment directory on app and remove the old folders and untarring the new jar and war files'
+ /* sh 'scp -rp $WORKSPACE/artifacts/artifact.tar $DEPLOYMENT_USER@$DEPOYMENT_SERVER:$DEPLOYMENT_STAGE_DIR/'
+ sh 'ssh $DEPLOYMENT_USER@$DEPOYMENT_SERVER "cd $DEPLOYMENT_STAGE_DIR && rm -rf *.war *.jar"'
+ sh 'ssh $DEPLOYMENT_USER@$DEPOYMENT_SERVER "cd $DEPLOYMENT_STAGE_DIR && tar -xvzf artifact.tar && rm -rf *.jar"'
+ sh 'ssh $DEPLOYMENT_USER@$DEPOYMENT_SERVER "cd $DEPLOYMENT_DIR && rm -rf $ESB_WAR_FOLDERS && cp -rp $DEPLOYMENT_STAGE_DIR/*.war $DEPLOYMENT_DIR"' */
+ echo 'Deployment has been completed'
+ echo 'starting the tomcat ESB server'
+ /* sh 'ssh $DEPLOYMENT_USER@$DEPOYMENT_SERVER "$ESB_BIN_PATH start"'
+ sh 'ssh $DEPLOYMENT_USER@$DEPOYMENT_SERVER "sleep 20"' */
+ echo 'tomcat server started'
+ }
+ } else {
+ echo "no need"
+ }
+ }
+ }
+ }
+ }
+ stage('Post Deploy Tests') {
+ parallel {
+ stage('Smoke Test') {
+ steps {
+ echo "I am executing Smoke Test on target dev environment post deployment"
+ }
+ /*RESP=`curl -X GET "${bamboo.uri}/RequestsRunning" -H "accept: application/xml" -H "authorization: bearer lR0AA2qfq7v9Ry96vDAgqcer1GPVd5yStmv1_aJVFS43rk06EytB7WsS0_owoiXIgpOXmZVEfkY4ST0JwHtRBk7RH0QRaldWtQT8udC0VdimdGx38RddY2sGaeeF0t9Aflr5rh1Jc_EUfkNK8YrKVxQ6kxB05aCe46CD2fkognv7TiJATmht-ycUjEsd_oy8jH5EK9fmn9eL-wXavNTQcEdsUmFm3-2r3IJDzMK7XCa74qu353yOKLvVyZ1yYQBnc1_fY5GS1BDrFLUZprxpAS30lGEu-d_JTTOQ989UJtIEB3cZzDkIQzeqdYBGCsiDdjdHo2DC1FK2kVPyBITTbQ"`
+ echo "The response for current execution status is: $RESP"
+ if [ "$RESP" != "[]" ];
+ then
+ echo "There is a test executing currently in Worksoft. Hence, not proceeding with the execution of Worksoft test cases."
+ exit 1
+ else
+ echo "There are no tests executing right now. Hence, proceeding with Worksoft test execution"
+ fi
+ # To abort the request before attempting to re-run, uncomment and run below line.
+ # abort=$(curl -X PUT -H "Authorization: Bearer $token" -d "" -H "id: ${bamboo.RequestID}" ${bamboo.uri}/Request/${bamboo.RequestID}/abort/)
+ guid=$(curl -X PUT -H "Authorization: Bearer $token" -d "" -H "parameters: {TestEnv}{${bamboo.stage_name}}" -H "id: ${bamboo.RequestID}" ${bamboo.uri}/ExecuteRequest/ | tr -d \")
+ echo "The GUID is: $guid"
+ status=$(curl -X GET -H "Authorization: Bearer $token" -d "" -H "APIRequestID: $guid" ${bamboo.uri}/ExecutionStatus/ | awk -F':' '{print $2}' | tr -d \" | tr -d \})
+ echo "The status is: $status"
+ while [[ $status != *"Completed"* ]]
+ do
+ status=$(curl -X GET -H "Authorization: Bearer $token" -d "" -H "APIRequestID: $guid" ${bamboo.uri}/ExecutionStatus/ | awk -F':' '{print $2}' | tr -d \" | tr -d \})
+ echo "The status is: $status"
+ sleep 15
+ done
+ status=$(curl -X GET -H "Authorization: Bearer $token" -d "" -H "APIRequestID: $guid" ${bamboo.uri}/ExecutionStatus/)
+ echo "The status is: $status"
+ execstatus=$(curl -X GET -H "Authorization: Bearer $token" -d "" -H "APIRequestID: $guid" ${bamboo.uri}/ExecutionStatus/ | awk -F':' '{print $3}' | tr -d \" | tr -d \})
+ echo "The exec status is: $execstatus"
+ if [[ $execstatus != *Passed* ]];
+ then
+ echo "Failed"
+ exit 1
+ else
+ echo "Passed"
+ exit
+ fi
+ exit */
+ }
+ stage('Security Test') {
+ steps {
+ echo 'I am running Security Test here'
+ }
+ }
+ }
+ }
+ }
+ post {
+ failure {
+ /*mail bcc: '',
+ body: "Example \n Project: ${env.JOB_NAME} Build Number: ${env.BUILD_NUMBER} URL de build: ${env.BUILD_URL}",
+ cc: '',
+ charset: 'UTF-8',
+ from: '',
+ mimeType: 'text/html',
+ replyTo: '',
+ subject: "ERROR CI: Project name -> ${env.JOB_NAME}",
+ to: "foo@foomail.com";*/
+ echo 'I am sending a notification with failure'
+ }
+ success {
+ echo 'I am sending a notification with success'
+ }
+ }
+}
diff --git a/build.gradle b/build.gradle
index 7e1d4b6..45f6bef 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,24 +1,37 @@
plugins {
- id 'org.springframework.boot' version '2.3.2.RELEASE'
- id 'io.spring.dependency-management' version '1.0.9.RELEASE'
+ id 'org.springframework.boot' version '2.3.2.RELEASE'
+ id 'io.spring.dependency-management' version '1.0.9.RELEASE'
id 'java'
+
}
group = 'com.kkjavatutorials'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '8'
+
repositories {
mavenCentral()
}
+configurations {
+ // configuration that holds jars to include in the jar
+ extraLibs
+}
+
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
- testImplementation('org.springframework.boot:spring-boot-starter-test') {
+
+ configurations.compile.extendsFrom(configurations.extraLibs)
+ testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'org.junit.vintage', module: 'junit-vintage-engine'
- }
+ }
}
-test {
+ test {
useJUnitPlatform()
-}
+}
+
+
+
+
diff --git a/gradle.yml b/gradle.yml
new file mode 100644
index 0000000..58e1c59
--- /dev/null
+++ b/gradle.yml
@@ -0,0 +1,26 @@
+# This workflow will build a Java project with Gradle
+# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle
+
+name: Java CI with Gradle
+
+on:
+ push:
+ branches: [ master ]
+ pull_request:
+ branches: [ master ]
+
+jobs:
+ build:
+
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: Set up JDK 1.8
+ uses: actions/setup-java@v1
+ with:
+ java-version: 1.8
+ - name: Grant execute permission for gradlew
+ run: chmod +x gradlew
+ - name: Build with Gradle
+ run: ./gradlew build
diff --git a/hello b/hello
new file mode 100644
index 0000000..d0e08a8
--- /dev/null
+++ b/hello
@@ -0,0 +1,2 @@
+hello
+hi
diff --git a/hihello b/hihello
new file mode 100644
index 0000000..ce01362
--- /dev/null
+++ b/hihello
@@ -0,0 +1 @@
+hello
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..045cb13
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,107 @@
+
+
+ 4.0.0
+
+ org.springframework.boot
+ spring-boot-starter-parent
+ 2.1.3.RELEASE
+
+
+ io.buildpacks.example
+ sample
+ 0.0.1-SNAPSHOT
+ sample
+ Sample Java Application
+
+
+ 1.8
+
+
+
+
+ org.springframework.boot
+ spring-boot-starter-thymeleaf
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+ junit
+ junit
+ 4.12
+ test
+
+
+
+
+
+
+
+ internal
+ Archiva Managed Internal Repository
+ http://35.188.92.10/repository/internal/
+
+
+ snapshots
+ Archiva Managed Snapshot Repository
+ http://35.188.92.10/repository/snapshots/
+
+
+
+
+
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
+ org.apache.httpcomponents
+ httpclient
+ 4.5.3
+
+
+
+
+
+ org.apache.maven.wagon
+ wagon-http
+ 2.5
+
+
+
+
+
+
+
+ snapshots
+ Archiva Managed Snapshot Repository
+ http://35.188.92.10/repository/snapshots/
+
+ false
+
+
+ true
+
+
+
+
+
+
+
+
+
+
diff --git a/project.properties b/project.properties
new file mode 100644
index 0000000..76c7318
--- /dev/null
+++ b/project.properties
@@ -0,0 +1,2 @@
+feature_deploy=false
+servers=lxapp.2378 lxapp.656 lxapp.5376
diff --git a/sample-java-app/.mvn/wrapper/MavenWrapperDownloader.java b/sample-java-app/.mvn/wrapper/MavenWrapperDownloader.java
new file mode 100644
index 0000000..72308aa
--- /dev/null
+++ b/sample-java-app/.mvn/wrapper/MavenWrapperDownloader.java
@@ -0,0 +1,114 @@
+/*
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements. See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership. The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License. You may obtain a copy of the License at
+
+ https://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied. See the License for the
+specific language governing permissions and limitations
+under the License.
+*/
+
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.FileOutputStream;
+import java.io.IOException;
+import java.net.URL;
+import java.nio.channels.Channels;
+import java.nio.channels.ReadableByteChannel;
+import java.util.Properties;
+
+public class MavenWrapperDownloader {
+
+ /**
+ * Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided.
+ */
+ private static final String DEFAULT_DOWNLOAD_URL =
+ "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.4.2/maven-wrapper-0.4.2.jar";
+
+ /**
+ * Path to the maven-wrapper.properties file, which might contain a downloadUrl property to
+ * use instead of the default one.
+ */
+ private static final String MAVEN_WRAPPER_PROPERTIES_PATH =
+ ".mvn/wrapper/maven-wrapper.properties";
+
+ /**
+ * Path where the maven-wrapper.jar will be saved to.
+ */
+ private static final String MAVEN_WRAPPER_JAR_PATH =
+ ".mvn/wrapper/maven-wrapper.jar";
+
+ /**
+ * Name of the property which should be used to override the default download url for the wrapper.
+ */
+ private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl";
+
+ public static void main(String args[]) {
+ System.out.println("- Downloader started");
+ File baseDirectory = new File(args[0]);
+ System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath());
+
+ // If the maven-wrapper.properties exists, read it and check if it contains a custom
+ // wrapperUrl parameter.
+ File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH);
+ String url = DEFAULT_DOWNLOAD_URL;
+ if(mavenWrapperPropertyFile.exists()) {
+ FileInputStream mavenWrapperPropertyFileInputStream = null;
+ try {
+ mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile);
+ Properties mavenWrapperProperties = new Properties();
+ mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream);
+ url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url);
+ } catch (IOException e) {
+ System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'");
+ } finally {
+ try {
+ if(mavenWrapperPropertyFileInputStream != null) {
+ mavenWrapperPropertyFileInputStream.close();
+ }
+ } catch (IOException e) {
+ // Ignore ...
+ }
+ }
+ }
+ System.out.println("- Downloading from: : " + url);
+
+ File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH);
+ if(!outputFile.getParentFile().exists()) {
+ if(!outputFile.getParentFile().mkdirs()) {
+ System.out.println(
+ "- ERROR creating output direcrory '" + outputFile.getParentFile().getAbsolutePath() + "'");
+ }
+ }
+ System.out.println("- Downloading to: " + outputFile.getAbsolutePath());
+ try {
+ downloadFileFromURL(url, outputFile);
+ System.out.println("Done");
+ System.exit(0);
+ } catch (Throwable e) {
+ System.out.println("- Error downloading");
+ e.printStackTrace();
+ System.exit(1);
+ }
+ }
+
+ private static void downloadFileFromURL(String urlString, File destination) throws Exception {
+ URL website = new URL(urlString);
+ ReadableByteChannel rbc;
+ rbc = Channels.newChannel(website.openStream());
+ FileOutputStream fos = new FileOutputStream(destination);
+ fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);
+ fos.close();
+ rbc.close();
+ }
+
+}
diff --git a/sample-java-app/.mvn/wrapper/maven-wrapper.properties b/sample-java-app/.mvn/wrapper/maven-wrapper.properties
new file mode 100644
index 0000000..cd0d451
--- /dev/null
+++ b/sample-java-app/.mvn/wrapper/maven-wrapper.properties
@@ -0,0 +1 @@
+distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.0/apache-maven-3.6.0-bin.zip
diff --git a/sample-java-app/Jenkinsfile b/sample-java-app/Jenkinsfile
new file mode 100644
index 0000000..1c10980
--- /dev/null
+++ b/sample-java-app/Jenkinsfile
@@ -0,0 +1,86 @@
+pipeline {
+ /* environment {
+ PROJECT_ID = "sd-devops"
+ APP_NAME = "sample-java-app"
+ CLUSTER_NAME = "cluster-1"
+ CLUSTER_ZONE = "us-central1-a"
+ CREDENTIALS_ID = "sd-devops"
+ } */
+ //agent any 2
+ agent {
+ kubernetes {
+ label 'sample-java-app'
+ defaultContainer 'jnlp'
+ yaml """
+apiVersion: v1
+kind: Pod
+metadata:
+labels:
+ component: ci
+spec:
+ containers:
+ - name: maven
+ image: maven:3.6.1-slim
+ command:
+ - cat
+ tty: true
+"""
+}
+ }
+ stages {
+ stage('Unit Test') {
+ steps {
+ container('maven') {
+ withMaven(maven: 'MAVEN-3.6.3') {
+ withSonarQubeEnv(installationName:'Sonarqube') {
+ echo 'I am executing unit test'
+ sh 'mvn -f sample-java-app/pom.xml clean package'
+ }
+ }
+ }
+ }
+ }
+
+ stage('Code Quality') {
+ steps {
+ container('maven') {
+ withMaven(maven: 'MAVEN-3.6.3') {
+ withSonarQubeEnv(installationName:'Sonarqube') {
+ echo 'I am executing code quality using sonarqube'
+ sh 'mvn -f sample-java-app/pom.xml sonar:sonar'
+ }
+ sleep(60)
+ timeout(time: 1, unit: 'MINUTES') {
+ waitForQualityGate abortPipeline: true
+ }
+ }
+ }
+ }
+ }
+
+ stage('Publish Package') {
+ steps {
+ withMaven(maven: 'MAVEN-3.6.3') {
+ echo 'I am executing build and push the artifact with unique name showing the branch from which it is generated, to Archiva'
+ sh 'mvn -X deploy:deploy-file -Dfile=sample-java-app/target/sample-0.0.1-SNAPSHOT.jar -DpomFile=sample-java-app/pom.xml -DrepositoryId=snapshots -Durl=http://35.188.92.10/repository/snapshots/'
+ }
+ }
+ }
+
+ stage('Deploy Dev') {
+ when { branch 'dev'}
+ steps {
+ echo "I am executing Deploy the artifact from Archiva to target dev environment. My artifact has a unique name which is automatically generated and deployed to target dev environment"
+ echo "Work in progress"
+ }
+ }
+
+ stage('Smoke Test'){
+ when { branch 'dev'}
+ steps {
+ echo "I am executing Smoke Test on target dev environment post deployment"
+ echo 'Work in progress'
+ }
+ }
+ }
+}
diff --git a/sample-java-app/Jenkinsfile1 b/sample-java-app/Jenkinsfile1
new file mode 100644
index 0000000..2c85782
--- /dev/null
+++ b/sample-java-app/Jenkinsfile1
@@ -0,0 +1,86 @@
+pipeline {
+ environment {
+ PROJECT_ID = "sd-devops"
+ APP_NAME = "sample-java-app"
+ CLUSTER_NAME = "cluster-1"
+ CLUSTER_ZONE = "us-central1-a"
+ CREDENTIALS_ID = "sd-devops"
+ }
+ //agent any
+ agent {
+ kubernetes {
+ label 'sample-java-app'
+ defaultContainer 'jnlp'
+ yaml """
+apiVersion: v1
+kind: Pod
+metadata:
+labels:
+ component: ci
+spec:
+ containers:
+ - name: maven
+ image: maven:3.6.1-slim
+ command:
+ - cat
+ tty: true
+"""
+}
+ }
+ stages {
+ stage('Unit Test') {
+ steps {
+ container('maven') {
+ withMaven(maven: 'MAVEN-3.6.3') {
+ withSonarQubeEnv(installationName:'Sonarqube') {
+ sh 'I am executing unit test'
+ sh 'mvn -f sample-java-app/pom.xml clean package'
+ }
+ }
+ }
+ }
+ }
+
+ stage('Code Quality') {
+ steps {
+ container('maven') {
+ withMaven(maven: 'MAVEN-3.6.3') {
+ withSonarQubeEnv(installationName:'Sonarqube') {
+ sh 'I am executing code quality using sonarqube'
+ sh 'mvn -f sample-java-app/pom.xml sonar:sonar'
+ }
+ sleep(60)
+ timeout(time: 1, unit: 'MINUTES') {
+ waitForQualityGate abortPipeline: true
+ }
+ }
+ }
+ }
+ }
+
+ stage('Publish Package') {
+ steps {
+ withMaven(maven: 'MAVEN-3.6.3') {
+ sh 'I am executing build and push the artifact with unique name showing the branch from which it is generated, to Archiva'
+ sh 'mvn -X deploy:deploy-file -Dfile=sample-java-app/target/sample-0.0.1-SNAPSHOT.jar -DpomFile=sample-java-app/pom.xml -DrepositoryId=snapshots -Durl=http://35.188.92.10/repository/snapshots/'
+ }
+ }
+ }
+
+ stage('Deploy Dev') {
+ when { branch 'dev'}
+ steps {
+ echo "I am executing Deploy the artifact from Archiva to target dev environment. My artifact has a unique name which is automatically generated and deployed to target dev environment"
+ echo "Work in progress"
+ }
+ }
+
+ stage('Smoke Test'){
+ when { branch 'dev'}
+ steps {
+ echo "I am executing Smoke Test on target dev environment post deployment"
+ echo 'Work in progress'
+ }
+ }
+ }
+}
diff --git a/sample-java-app/Jenkinsfile2 b/sample-java-app/Jenkinsfile2
new file mode 100644
index 0000000..01c6273
--- /dev/null
+++ b/sample-java-app/Jenkinsfile2
@@ -0,0 +1,61 @@
+podTemplate(containers: [
+ containerTemplate(name: 'maven', image: 'maven:3.3.9-jdk-8-alpine', ttyEnabled: true, command: 'cat'),
+ ]) {
+
+ node(POD_LABEL) {
+ stage('Unit Test') {
+ steps {
+ container('maven') {
+ withMaven(maven: 'MAVEN-3.6.3') {
+ withSonarQubeEnv(installationName:'Sonarqube') {
+ sh 'I am executing unit test'
+ sh 'mvn -f sample-java-app/pom.xml clean package'
+ }
+ }
+ }
+ }
+ }
+
+ stage('Code Quality') {
+ steps {
+ container('maven') {
+ withMaven(maven: 'MAVEN-3.6.3') {
+ withSonarQubeEnv(installationName:'Sonarqube') {
+ sh 'I am executing code quality using sonarqube'
+ sh 'mvn -f sample-java-app/pom.xml sonar:sonar'
+ }
+ sleep(60)
+ timeout(time: 1, unit: 'MINUTES') {
+ waitForQualityGate abortPipeline: true
+ }
+ }
+ }
+ }
+ }
+
+ stage('Publish Package') {
+ steps {
+ withMaven(maven: 'MAVEN-3.6.3') {
+ sh 'I am executing build and push the artifact with unique name showing the branch from which it is generated, to Archiva'
+ sh 'mvn -X deploy:deploy-file -Dfile=sample-java-app/target/sample-0.0.1-SNAPSHOT.jar -DpomFile=sample-java-app/pom.xml -DrepositoryId=snapshots -Durl=http://35.188.92.10/repository/snapshots/'
+ }
+ }
+ }
+
+ stage('Deploy Dev') {
+ when { branch 'dev'}
+ steps {
+ echo "I am executing Deploy the artifact from Archiva to target dev environment. My artifact has a unique name which is automatically generated and deployed to target dev environment"
+ echo "Work in progress"
+ }
+ }
+
+ stage('Smoke Test'){
+ when { branch 'dev'}
+ steps {
+ echo "I am executing Smoke Test on target dev environment post deployment"
+ echo 'Work in progress'
+ }
+ }
+ }
+}
diff --git a/sample-java-app/Jenkinsfile3 b/sample-java-app/Jenkinsfile3
new file mode 100644
index 0000000..490eed4
--- /dev/null
+++ b/sample-java-app/Jenkinsfile3
@@ -0,0 +1,14 @@
+podTemplate(containers: [
+ containerTemplate(name: 'maven', image: 'maven:3.6.0-jdk-8-alpine', ttyEnabled: true, command: 'cat')
+ ], volumes: [
+ ]) {
+
+ node(POD_LABEL) {
+ stage('Build a Maven project') {
+ git 'https://github.com/jenkinsci/kubernetes-plugin.git'
+ container('maven') {
+ sh 'mvn -B clean package'
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/sample-java-app/Jenkinsfile_AIP b/sample-java-app/Jenkinsfile_AIP
new file mode 100644
index 0000000..cfe9652
--- /dev/null
+++ b/sample-java-app/Jenkinsfile_AIP
@@ -0,0 +1,86 @@
+pipeline {
+ /* environment {
+ PROJECT_ID = "sd-devops"
+ APP_NAME = "sample-java-app"
+ CLUSTER_NAME = "cluster-1"
+ CLUSTER_ZONE = "us-central1-a"
+ CREDENTIALS_ID = "sd-devops"
+ } */
+ //agent any 1
+ agent {
+ kubernetes {
+ label 'sample-java-app'
+ defaultContainer 'jnlp'
+ yaml """
+apiVersion: v1
+kind: Pod
+metadata:
+labels:
+ component: ci
+spec:
+ containers:
+ - name: maven
+ image: maven:3.6.1-slim
+ command:
+ - cat
+ tty: true
+"""
+}
+ }
+ stages {
+ stage('Unit Test') {
+ steps {
+ container('maven') {
+ withMaven(maven: 'MAVEN-3.6.3') {
+ withSonarQubeEnv(installationName:'Sonarqube') {
+ echo 'I am executing unit test'
+ sh 'mvn -f sample-java-app/pom.xml clean package'
+ }
+ }
+ }
+ }
+ }
+
+ stage('Code Quality') {
+ steps {
+ container('maven') {
+ withMaven(maven: 'MAVEN-3.6.3') {
+ withSonarQubeEnv(installationName:'Sonarqube') {
+ echo 'I am executing code quality using sonarqube'
+ sh 'mvn -f sample-java-app/pom.xml sonar:sonar'
+ }
+ sleep(60)
+ timeout(time: 1, unit: 'MINUTES') {
+ waitForQualityGate abortPipeline: true
+ }
+ }
+ }
+ }
+ }
+
+ stage('Publish Package') {
+ steps {
+ withMaven(maven: 'MAVEN-3.6.3') {
+ echo 'I am executing build and push the artifact with unique name showing the branch from which it is generated, to Archiva'
+ sh 'mvn -X deploy:deploy-file -Dfile=sample-java-app/target/sample-0.0.1-SNAPSHOT.jar -DpomFile=sample-java-app/pom.xml -DrepositoryId=snapshots -Durl=https://archiva.sgn.devops.accentureanalytics.com/repository/snapshots/'
+ }
+ }
+ }
+
+ stage('Deploy Dev') {
+ when { branch 'dev'}
+ steps {
+ echo "I am executing Deploy the artifact from Archiva to target dev environment. My artifact has a unique name which is automatically generated and deployed to target dev environment"
+ echo "Work in progress"
+ }
+ }
+
+ stage('Smoke Test'){
+ when { branch 'dev'}
+ steps {
+ echo "I am executing Smoke Test on target dev environment post deployment"
+ echo 'Work in progress'
+ }
+ }
+ }
+}
diff --git a/sample-java-app/LICENSE b/sample-java-app/LICENSE
new file mode 100644
index 0000000..f279534
--- /dev/null
+++ b/sample-java-app/LICENSE
@@ -0,0 +1,201 @@
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright 2019 The Cloud Native Buildpacks Authors
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
diff --git a/sample-java-app/New Text Document.txt b/sample-java-app/New Text Document.txt
new file mode 100644
index 0000000..32f95c0
--- /dev/null
+++ b/sample-java-app/New Text Document.txt
@@ -0,0 +1 @@
+hi
\ No newline at end of file
diff --git a/sample-java-app/README.md b/sample-java-app/README.md
new file mode 100644
index 0000000..66965a2
--- /dev/null
+++ b/sample-java-app/README.md
@@ -0,0 +1,3 @@
+> **ARCHIVED**: This repository has been relocated to the [samples](https://github.com/buildpack/samples/) repo.
+
+## sample-java-app
diff --git a/sample-java-app/mvnw b/sample-java-app/mvnw
new file mode 100644
index 0000000..8b9da3b
--- /dev/null
+++ b/sample-java-app/mvnw
@@ -0,0 +1,286 @@
+#!/bin/sh
+# ----------------------------------------------------------------------------
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+# ----------------------------------------------------------------------------
+
+# ----------------------------------------------------------------------------
+# Maven2 Start Up Batch script
+#
+# Required ENV vars:
+# ------------------
+# JAVA_HOME - location of a JDK home dir
+#
+# Optional ENV vars
+# -----------------
+# M2_HOME - location of maven2's installed home dir
+# MAVEN_OPTS - parameters passed to the Java VM when running Maven
+# e.g. to debug Maven itself, use
+# set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
+# MAVEN_SKIP_RC - flag to disable loading of mavenrc files
+# ----------------------------------------------------------------------------
+
+if [ -z "$MAVEN_SKIP_RC" ] ; then
+
+ if [ -f /etc/mavenrc ] ; then
+ . /etc/mavenrc
+ fi
+
+ if [ -f "$HOME/.mavenrc" ] ; then
+ . "$HOME/.mavenrc"
+ fi
+
+fi
+
+# OS specific support. $var _must_ be set to either true or false.
+cygwin=false;
+darwin=false;
+mingw=false
+case "`uname`" in
+ CYGWIN*) cygwin=true ;;
+ MINGW*) mingw=true;;
+ Darwin*) darwin=true
+ # Use /usr/libexec/java_home if available, otherwise fall back to /Library/Java/Home
+ # See https://developer.apple.com/library/mac/qa/qa1170/_index.html
+ if [ -z "$JAVA_HOME" ]; then
+ if [ -x "/usr/libexec/java_home" ]; then
+ export JAVA_HOME="`/usr/libexec/java_home`"
+ else
+ export JAVA_HOME="/Library/Java/Home"
+ fi
+ fi
+ ;;
+esac
+
+if [ -z "$JAVA_HOME" ] ; then
+ if [ -r /etc/gentoo-release ] ; then
+ JAVA_HOME=`java-config --jre-home`
+ fi
+fi
+
+if [ -z "$M2_HOME" ] ; then
+ ## resolve links - $0 may be a link to maven's home
+ PRG="$0"
+
+ # need this for relative symlinks
+ while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG="`dirname "$PRG"`/$link"
+ fi
+ done
+
+ saveddir=`pwd`
+
+ M2_HOME=`dirname "$PRG"`/..
+
+ # make it fully qualified
+ M2_HOME=`cd "$M2_HOME" && pwd`
+
+ cd "$saveddir"
+ # echo Using m2 at $M2_HOME
+fi
+
+# For Cygwin, ensure paths are in UNIX format before anything is touched
+if $cygwin ; then
+ [ -n "$M2_HOME" ] &&
+ M2_HOME=`cygpath --unix "$M2_HOME"`
+ [ -n "$JAVA_HOME" ] &&
+ JAVA_HOME=`cygpath --unix "$JAVA_HOME"`
+ [ -n "$CLASSPATH" ] &&
+ CLASSPATH=`cygpath --path --unix "$CLASSPATH"`
+fi
+
+# For Mingw, ensure paths are in UNIX format before anything is touched
+if $mingw ; then
+ [ -n "$M2_HOME" ] &&
+ M2_HOME="`(cd "$M2_HOME"; pwd)`"
+ [ -n "$JAVA_HOME" ] &&
+ JAVA_HOME="`(cd "$JAVA_HOME"; pwd)`"
+ # TODO classpath?
+fi
+
+if [ -z "$JAVA_HOME" ]; then
+ javaExecutable="`which javac`"
+ if [ -n "$javaExecutable" ] && ! [ "`expr \"$javaExecutable\" : '\([^ ]*\)'`" = "no" ]; then
+ # readlink(1) is not available as standard on Solaris 10.
+ readLink=`which readlink`
+ if [ ! `expr "$readLink" : '\([^ ]*\)'` = "no" ]; then
+ if $darwin ; then
+ javaHome="`dirname \"$javaExecutable\"`"
+ javaExecutable="`cd \"$javaHome\" && pwd -P`/javac"
+ else
+ javaExecutable="`readlink -f \"$javaExecutable\"`"
+ fi
+ javaHome="`dirname \"$javaExecutable\"`"
+ javaHome=`expr "$javaHome" : '\(.*\)/bin'`
+ JAVA_HOME="$javaHome"
+ export JAVA_HOME
+ fi
+ fi
+fi
+
+if [ -z "$JAVACMD" ] ; then
+ if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ else
+ JAVACMD="`which java`"
+ fi
+fi
+
+if [ ! -x "$JAVACMD" ] ; then
+ echo "Error: JAVA_HOME is not defined correctly." >&2
+ echo " We cannot execute $JAVACMD" >&2
+ exit 1
+fi
+
+if [ -z "$JAVA_HOME" ] ; then
+ echo "Warning: JAVA_HOME environment variable is not set."
+fi
+
+CLASSWORLDS_LAUNCHER=org.codehaus.plexus.classworlds.launcher.Launcher
+
+# traverses directory structure from process work directory to filesystem root
+# first directory with .mvn subdirectory is considered project base directory
+find_maven_basedir() {
+
+ if [ -z "$1" ]
+ then
+ echo "Path not specified to find_maven_basedir"
+ return 1
+ fi
+
+ basedir="$1"
+ wdir="$1"
+ while [ "$wdir" != '/' ] ; do
+ if [ -d "$wdir"/.mvn ] ; then
+ basedir=$wdir
+ break
+ fi
+ # workaround for JBEAP-8937 (on Solaris 10/Sparc)
+ if [ -d "${wdir}" ]; then
+ wdir=`cd "$wdir/.."; pwd`
+ fi
+ # end of workaround
+ done
+ echo "${basedir}"
+}
+
+# concatenates all lines of a file
+concat_lines() {
+ if [ -f "$1" ]; then
+ echo "$(tr -s '\n' ' ' < "$1")"
+ fi
+}
+
+BASE_DIR=`find_maven_basedir "$(pwd)"`
+if [ -z "$BASE_DIR" ]; then
+ exit 1;
+fi
+
+##########################################################################################
+# Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
+# This allows using the maven wrapper in projects that prohibit checking in binary data.
+##########################################################################################
+if [ -r "$BASE_DIR/.mvn/wrapper/maven-wrapper.jar" ]; then
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Found .mvn/wrapper/maven-wrapper.jar"
+ fi
+else
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Couldn't find .mvn/wrapper/maven-wrapper.jar, downloading it ..."
+ fi
+ jarUrl="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.4.2/maven-wrapper-0.4.2.jar"
+ while IFS="=" read key value; do
+ case "$key" in (wrapperUrl) jarUrl="$value"; break ;;
+ esac
+ done < "$BASE_DIR/.mvn/wrapper/maven-wrapper.properties"
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Downloading from: $jarUrl"
+ fi
+ wrapperJarPath="$BASE_DIR/.mvn/wrapper/maven-wrapper.jar"
+
+ if command -v wget > /dev/null; then
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Found wget ... using wget"
+ fi
+ wget "$jarUrl" -O "$wrapperJarPath"
+ elif command -v curl > /dev/null; then
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Found curl ... using curl"
+ fi
+ curl -o "$wrapperJarPath" "$jarUrl"
+ else
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo "Falling back to using Java to download"
+ fi
+ javaClass="$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.java"
+ if [ -e "$javaClass" ]; then
+ if [ ! -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo " - Compiling MavenWrapperDownloader.java ..."
+ fi
+ # Compiling the Java class
+ ("$JAVA_HOME/bin/javac" "$javaClass")
+ fi
+ if [ -e "$BASE_DIR/.mvn/wrapper/MavenWrapperDownloader.class" ]; then
+ # Running the downloader
+ if [ "$MVNW_VERBOSE" = true ]; then
+ echo " - Running MavenWrapperDownloader.java ..."
+ fi
+ ("$JAVA_HOME/bin/java" -cp .mvn/wrapper MavenWrapperDownloader "$MAVEN_PROJECTBASEDIR")
+ fi
+ fi
+ fi
+fi
+##########################################################################################
+# End of extension
+##########################################################################################
+
+export MAVEN_PROJECTBASEDIR=${MAVEN_BASEDIR:-"$BASE_DIR"}
+if [ "$MVNW_VERBOSE" = true ]; then
+ echo $MAVEN_PROJECTBASEDIR
+fi
+MAVEN_OPTS="$(concat_lines "$MAVEN_PROJECTBASEDIR/.mvn/jvm.config") $MAVEN_OPTS"
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin; then
+ [ -n "$M2_HOME" ] &&
+ M2_HOME=`cygpath --path --windows "$M2_HOME"`
+ [ -n "$JAVA_HOME" ] &&
+ JAVA_HOME=`cygpath --path --windows "$JAVA_HOME"`
+ [ -n "$CLASSPATH" ] &&
+ CLASSPATH=`cygpath --path --windows "$CLASSPATH"`
+ [ -n "$MAVEN_PROJECTBASEDIR" ] &&
+ MAVEN_PROJECTBASEDIR=`cygpath --path --windows "$MAVEN_PROJECTBASEDIR"`
+fi
+
+WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
+
+exec "$JAVACMD" \
+ $MAVEN_OPTS \
+ -classpath "$MAVEN_PROJECTBASEDIR/.mvn/wrapper/maven-wrapper.jar" \
+ "-Dmaven.home=${M2_HOME}" "-Dmaven.multiModuleProjectDirectory=${MAVEN_PROJECTBASEDIR}" \
+ ${WRAPPER_LAUNCHER} $MAVEN_CONFIG "$@"
diff --git a/sample-java-app/mvnw.cmd b/sample-java-app/mvnw.cmd
new file mode 100644
index 0000000..fef5a8f
--- /dev/null
+++ b/sample-java-app/mvnw.cmd
@@ -0,0 +1,161 @@
+@REM ----------------------------------------------------------------------------
+@REM Licensed to the Apache Software Foundation (ASF) under one
+@REM or more contributor license agreements. See the NOTICE file
+@REM distributed with this work for additional information
+@REM regarding copyright ownership. The ASF licenses this file
+@REM to you under the Apache License, Version 2.0 (the
+@REM "License"); you may not use this file except in compliance
+@REM with the License. You may obtain a copy of the License at
+@REM
+@REM https://www.apache.org/licenses/LICENSE-2.0
+@REM
+@REM Unless required by applicable law or agreed to in writing,
+@REM software distributed under the License is distributed on an
+@REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+@REM KIND, either express or implied. See the License for the
+@REM specific language governing permissions and limitations
+@REM under the License.
+@REM ----------------------------------------------------------------------------
+
+@REM ----------------------------------------------------------------------------
+@REM Maven2 Start Up Batch script
+@REM
+@REM Required ENV vars:
+@REM JAVA_HOME - location of a JDK home dir
+@REM
+@REM Optional ENV vars
+@REM M2_HOME - location of maven2's installed home dir
+@REM MAVEN_BATCH_ECHO - set to 'on' to enable the echoing of the batch commands
+@REM MAVEN_BATCH_PAUSE - set to 'on' to wait for a key stroke before ending
+@REM MAVEN_OPTS - parameters passed to the Java VM when running Maven
+@REM e.g. to debug Maven itself, use
+@REM set MAVEN_OPTS=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
+@REM MAVEN_SKIP_RC - flag to disable loading of mavenrc files
+@REM ----------------------------------------------------------------------------
+
+@REM Begin all REM lines with '@' in case MAVEN_BATCH_ECHO is 'on'
+@echo off
+@REM set title of command window
+title %0
+@REM enable echoing my setting MAVEN_BATCH_ECHO to 'on'
+@if "%MAVEN_BATCH_ECHO%" == "on" echo %MAVEN_BATCH_ECHO%
+
+@REM set %HOME% to equivalent of $HOME
+if "%HOME%" == "" (set "HOME=%HOMEDRIVE%%HOMEPATH%")
+
+@REM Execute a user defined script before this one
+if not "%MAVEN_SKIP_RC%" == "" goto skipRcPre
+@REM check for pre script, once with legacy .bat ending and once with .cmd ending
+if exist "%HOME%\mavenrc_pre.bat" call "%HOME%\mavenrc_pre.bat"
+if exist "%HOME%\mavenrc_pre.cmd" call "%HOME%\mavenrc_pre.cmd"
+:skipRcPre
+
+@setlocal
+
+set ERROR_CODE=0
+
+@REM To isolate internal variables from possible post scripts, we use another setlocal
+@setlocal
+
+@REM ==== START VALIDATION ====
+if not "%JAVA_HOME%" == "" goto OkJHome
+
+echo.
+echo Error: JAVA_HOME not found in your environment. >&2
+echo Please set the JAVA_HOME variable in your environment to match the >&2
+echo location of your Java installation. >&2
+echo.
+goto error
+
+:OkJHome
+if exist "%JAVA_HOME%\bin\java.exe" goto init
+
+echo.
+echo Error: JAVA_HOME is set to an invalid directory. >&2
+echo JAVA_HOME = "%JAVA_HOME%" >&2
+echo Please set the JAVA_HOME variable in your environment to match the >&2
+echo location of your Java installation. >&2
+echo.
+goto error
+
+@REM ==== END VALIDATION ====
+
+:init
+
+@REM Find the project base dir, i.e. the directory that contains the folder ".mvn".
+@REM Fallback to current working directory if not found.
+
+set MAVEN_PROJECTBASEDIR=%MAVEN_BASEDIR%
+IF NOT "%MAVEN_PROJECTBASEDIR%"=="" goto endDetectBaseDir
+
+set EXEC_DIR=%CD%
+set WDIR=%EXEC_DIR%
+:findBaseDir
+IF EXIST "%WDIR%"\.mvn goto baseDirFound
+cd ..
+IF "%WDIR%"=="%CD%" goto baseDirNotFound
+set WDIR=%CD%
+goto findBaseDir
+
+:baseDirFound
+set MAVEN_PROJECTBASEDIR=%WDIR%
+cd "%EXEC_DIR%"
+goto endDetectBaseDir
+
+:baseDirNotFound
+set MAVEN_PROJECTBASEDIR=%EXEC_DIR%
+cd "%EXEC_DIR%"
+
+:endDetectBaseDir
+
+IF NOT EXIST "%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config" goto endReadAdditionalConfig
+
+@setlocal EnableExtensions EnableDelayedExpansion
+for /F "usebackq delims=" %%a in ("%MAVEN_PROJECTBASEDIR%\.mvn\jvm.config") do set JVM_CONFIG_MAVEN_PROPS=!JVM_CONFIG_MAVEN_PROPS! %%a
+@endlocal & set JVM_CONFIG_MAVEN_PROPS=%JVM_CONFIG_MAVEN_PROPS%
+
+:endReadAdditionalConfig
+
+SET MAVEN_JAVA_EXE="%JAVA_HOME%\bin\java.exe"
+set WRAPPER_JAR="%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.jar"
+set WRAPPER_LAUNCHER=org.apache.maven.wrapper.MavenWrapperMain
+
+set DOWNLOAD_URL="https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.4.2/maven-wrapper-0.4.2.jar"
+FOR /F "tokens=1,2 delims==" %%A IN (%MAVEN_PROJECTBASEDIR%\.mvn\wrapper\maven-wrapper.properties) DO (
+ IF "%%A"=="wrapperUrl" SET DOWNLOAD_URL=%%B
+)
+
+@REM Extension to allow automatically downloading the maven-wrapper.jar from Maven-central
+@REM This allows using the maven wrapper in projects that prohibit checking in binary data.
+if exist %WRAPPER_JAR% (
+ echo Found %WRAPPER_JAR%
+) else (
+ echo Couldn't find %WRAPPER_JAR%, downloading it ...
+ echo Downloading from: %DOWNLOAD_URL%
+ powershell -Command "(New-Object Net.WebClient).DownloadFile('%DOWNLOAD_URL%', '%WRAPPER_JAR%')"
+ echo Finished downloading %WRAPPER_JAR%
+)
+@REM End of extension
+
+%MAVEN_JAVA_EXE% %JVM_CONFIG_MAVEN_PROPS% %MAVEN_OPTS% %MAVEN_DEBUG_OPTS% -classpath %WRAPPER_JAR% "-Dmaven.multiModuleProjectDirectory=%MAVEN_PROJECTBASEDIR%" %WRAPPER_LAUNCHER% %MAVEN_CONFIG% %*
+if ERRORLEVEL 1 goto error
+goto end
+
+:error
+set ERROR_CODE=1
+
+:end
+@endlocal & set ERROR_CODE=%ERROR_CODE%
+
+if not "%MAVEN_SKIP_RC%" == "" goto skipRcPost
+@REM check for post script, once with legacy .bat ending and once with .cmd ending
+if exist "%HOME%\mavenrc_post.bat" call "%HOME%\mavenrc_post.bat"
+if exist "%HOME%\mavenrc_post.cmd" call "%HOME%\mavenrc_post.cmd"
+:skipRcPost
+
+@REM pause the script if MAVEN_BATCH_PAUSE is set to 'on'
+if "%MAVEN_BATCH_PAUSE%" == "on" pause
+
+if "%MAVEN_TERMINATE_CMD%" == "on" exit %ERROR_CODE%
+
+exit /B %ERROR_CODE%
diff --git a/sample-java-app/pom.xml b/sample-java-app/pom.xml
new file mode 100644
index 0000000..4b589c0
--- /dev/null
+++ b/sample-java-app/pom.xml
@@ -0,0 +1,101 @@
+
+
+ 4.0.0
+
+ org.springframework.boot
+ spring-boot-starter-parent
+ 2.1.3.RELEASE
+
+
+ io.buildpacks.example
+ sample
+ 0.0.1-SNAPSHOT
+ sample
+ Sample Java Application
+
+
+ 1.8
+
+
+
+
+ org.springframework.boot
+ spring-boot-starter-thymeleaf
+
+
+ org.springframework.boot
+ spring-boot-starter-web
+
+
+
+ org.springframework.boot
+ spring-boot-starter-test
+ test
+
+
+
+
+
+
+
+ internal
+ Archiva Managed Internal Repository
+ http://35.188.92.10/repository/internal/
+
+
+ snapshots
+ Archiva Managed Snapshot Repository
+ http://35.188.92.10/repository/snapshots/
+
+
+
+
+
+
+
+
+
+
+
+ org.springframework.boot
+ spring-boot-maven-plugin
+
+
+
+ org.apache.httpcomponents
+ httpclient
+ 4.5.3
+
+
+
+
+
+ org.apache.maven.wagon
+ wagon-http
+ 2.5
+
+
+
+
+
+
+
+ snapshots
+ Archiva Managed Snapshot Repository
+ http://35.188.92.10/repository/snapshots/
+
+ false
+
+
+ true
+
+
+
+
+
+
+
+
+
+
diff --git a/sample-java-app/src/main/java/io/buildpacks/example/sample/SampleApplication.java b/sample-java-app/src/main/java/io/buildpacks/example/sample/SampleApplication.java
new file mode 100644
index 0000000..9fec2f6
--- /dev/null
+++ b/sample-java-app/src/main/java/io/buildpacks/example/sample/SampleApplication.java
@@ -0,0 +1,16 @@
+package io.buildpacks.example.sample;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class SampleApplication {
+//sdgcpsb - comment added - 12/14/2020
+ //test trigger
+ //testing the trigger again.
+
+ public static void main(String[] args) {
+ SpringApplication.run(SampleApplication.class, args);
+ }
+
+}
diff --git a/sample-java-app/src/main/resources/application.properties b/sample-java-app/src/main/resources/application.properties
new file mode 100644
index 0000000..8b13789
--- /dev/null
+++ b/sample-java-app/src/main/resources/application.properties
@@ -0,0 +1 @@
+
diff --git a/sample-java-app/src/main/resources/banner.txt b/sample-java-app/src/main/resources/banner.txt
new file mode 100644
index 0000000..d73226d
--- /dev/null
+++ b/sample-java-app/src/main/resources/banner.txt
@@ -0,0 +1,10 @@
+ |'-_ _-'| ____ _ _ _ _ _
+ | | | | _ \ (_)| | | | | | (_)
+ '-_|_-' | |_) | _ _ _ | | __| | _ __ __ _ ___ | | __ ___ _ ___
+|'-_ _-'|'-_ _-'| | _ < | | | || || | / _` || '_ \ / _` | / __|| |/ // __| | | / _ \
+| | | | | | |_) || |_| || || || (_| || |_) || (_| || (__ | < \__ \ _ | || (_) |
+ '-_|_-' '-_|_-' |____/ \__,_||_||_| \__,_|| .__/ \__,_| \___||_|\_\|___/(_)|_| \___/
+ | |
+ |_|
+
+:: Built with Spring Boot :: ${spring-boot.version}
diff --git a/sample-java-app/src/main/resources/static/buildpacks-logo.svg b/sample-java-app/src/main/resources/static/buildpacks-logo.svg
new file mode 100644
index 0000000..c6ea17e
--- /dev/null
+++ b/sample-java-app/src/main/resources/static/buildpacks-logo.svg
@@ -0,0 +1,110 @@
+
+
+
diff --git a/sample-java-app/src/main/resources/static/favicon.png b/sample-java-app/src/main/resources/static/favicon.png
new file mode 100644
index 0000000..e286ec3
Binary files /dev/null and b/sample-java-app/src/main/resources/static/favicon.png differ
diff --git a/sample-java-app/src/main/resources/templates/index.html b/sample-java-app/src/main/resources/templates/index.html
new file mode 100644
index 0000000..431ffb1
--- /dev/null
+++ b/sample-java-app/src/main/resources/templates/index.html
@@ -0,0 +1,28 @@
+
+
+