Skip to content

Commit 1992884

Browse files
committed
fixed typos and did minor polish
1 parent 7ec1db8 commit 1992884

3 files changed

Lines changed: 4 additions & 8 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# CloudBees Core Pipeline Templates Plugin
2-
This repository includes a sample template catalog and demos of how to use parameters in pipeline templates.
2+
This repository includes a sample Pipeline Template Catalog. The demos folder includes examples of how to customize a template.yaml file.

pipeline-template-examples/templates/simple-java-maven-app/Jenkinsfile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
pipeline {
2-
agent {
3-
docker {
4-
image 'maven:3-alpine'
5-
args '-v /root/.m2:/root/.m2'
6-
}
2+
agent any
73
}
84
stages {
95
stage('Build') {

pipeline-template-examples/templates/simple-java-maven-app/template.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
version: 1
22
type: pipeline-template
33

4-
name: Maven App Pipeline Job
5-
description: Run browser compat tests in the dev environment.
4+
name: Java Maven App Pipeline Job
5+
description: Simple Java App With Maven
66
parameters:
77
- name: emailRecipient
88
type: string

0 commit comments

Comments
 (0)