Created
July 24, 2016 18:39
-
-
Save g0t4/12d888d0ce9e40b79d8454dabdad7033 to your computer and use it in GitHub Desktop.
Module 2 - What am I? Get this job loaded into Jenkins and running, there are two problems you'll encounter. Raw
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
<?xml version='1.0' encoding='UTF-8'?> | |
<project> | |
<actions/> | |
<description></description> | |
<keepDependencies>false</keepDependencies> | |
<properties/> | |
<scm class="hudson.plugins.git.GitSCM" plugin="[email protected]"> | |
<configVersion>2</configVersion> | |
<userRemoteConfigs> | |
<hudson.plugins.git.UserRemoteConfig> | |
<url>ttps://github.com/g0t4/jenkins2-course-spring-boot.git</url> | |
</hudson.plugins.git.UserRemoteConfig> | |
</userRemoteConfigs> | |
<branches> | |
<hudson.plugins.git.BranchSpec> | |
<name>*/master</name> | |
</hudson.plugins.git.BranchSpec> | |
</branches> | |
<doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations> | |
<submoduleCfg class="list"/> | |
<extensions/> | |
</scm> | |
<canRoam>true</canRoam> | |
<disabled>false</disabled> | |
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding> | |
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding> | |
<triggers/> | |
<concurrentBuild>false</concurrentBuild> | |
<builders> | |
<hudson.tasks.Maven> | |
<targets>clean compile</targets> | |
<pom>spring-boot-samples/spring-boot-sample-atmosphere/pom.xml</pom> | |
<usePrivateRepository>false</usePrivateRepository> | |
<settings class="jenkins.mvn.DefaultSettingsProvider"/> | |
<globalSettings class="jenkins.mvn.DefaultGlobalSettingsProvider"/> | |
</hudson.tasks.Maven> | |
</builders> | |
<publishers> | |
<hudson.tasks.ArtifactArchiver> | |
<artifacts>spring-boot-samples/spring-boot-sample-atmosphere/target/*.jar</artifacts> | |
<allowEmptyArchive>false</allowEmptyArchive> | |
<onlyIfSuccessful>false</onlyIfSuccessful> | |
<fingerprint>false</fingerprint> | |
<defaultExcludes>true</defaultExcludes> | |
<caseSensitive>true</caseSensitive> | |
</hudson.tasks.ArtifactArchiver> | |
</publishers> | |
<buildWrappers/> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment