Skip to content

Commit abc269d

Browse files
release 1.0.3
1 parent 14933da commit abc269d

File tree

7 files changed

+92
-4
lines changed

7 files changed

+92
-4
lines changed

VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1.0.3

charts/spring-boot-watch-pipeline-activity/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ apiVersion: v1
22
description: A Helm chart for Kubernetes
33
icon: https://raw.githubusercontent.com/jenkins-x/jenkins-x-platform/master/images/java.png
44
name: spring-boot-watch-pipeline-activity
5-
version: 0.1.0-SNAPSHOT
5+
version: 1.0.3

charts/spring-boot-watch-pipeline-activity/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
# Declare variables to be passed into your templates.
44
replicaCount: 1
55
image:
6-
repository: draft
7-
tag: dev
6+
repository: 10.35.240.138:5000/pmuir/spring-boot-watch-pipeline-activity
7+
tag: 1.0.3
88
pullPolicy: IfNotPresent
99
service:
1010
name: spring-boot-watch-pipeline-activity
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
+ make tag
2+
sed -i -e "s/version:.*/version: 1.0.3/" Chart.yaml
3+
sed -i -e "s|repository: .*|repository: 10.35.240.138:5000\/pmuir\/spring-boot-watch-pipeline-activity|" values.yaml
4+
sed -i -e "s/tag: .*/tag: 1.0.3/" values.yaml
5+
git add --all
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#!/bin/sh -xe
2+
make tag

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<packaging>war</packaging>
99
<name>Spring Boot Web Example</name>
1010
<description>Spring Boot Web Example</description>
11-
<version>1.0</version>
11+
<version>1.0.3</version>
1212

1313
<parent>
1414
<groupId>org.springframework.boot</groupId>

pom.xml.versionsBackup

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<groupId>com.example</groupId>
7+
<artifactId>spring-boot-web</artifactId>
8+
<packaging>war</packaging>
9+
<name>Spring Boot Web Example</name>
10+
<description>Spring Boot Web Example</description>
11+
<version>1.0</version>
12+
13+
<parent>
14+
<groupId>org.springframework.boot</groupId>
15+
<artifactId>spring-boot-starter-parent</artifactId>
16+
<version>2.0.0.RELEASE</version>
17+
</parent>
18+
19+
<properties>
20+
<java.version>1.8</java.version>
21+
</properties>
22+
23+
<dependencies>
24+
<dependency>
25+
<groupId>org.springframework.boot</groupId>
26+
<artifactId>spring-boot-starter-actuator</artifactId>
27+
</dependency>
28+
<dependency>
29+
<groupId>org.springframework.boot</groupId>
30+
<artifactId>spring-boot-starter-web</artifactId>
31+
</dependency>
32+
<dependency>
33+
<groupId>org.springframework.boot</groupId>
34+
<artifactId>spring-boot-starter-tomcat</artifactId>
35+
</dependency>
36+
<dependency>
37+
<groupId>org.springframework.boot</groupId>
38+
<artifactId>spring-boot-starter-freemarker</artifactId>
39+
</dependency>
40+
<dependency>
41+
<groupId>javax.servlet</groupId>
42+
<artifactId>jstl</artifactId>
43+
</dependency>
44+
<dependency>
45+
<groupId>org.apache.tomcat.embed</groupId>
46+
<artifactId>tomcat-embed-jasper</artifactId>
47+
<scope>provided</scope>
48+
</dependency>
49+
<dependency>
50+
<groupId>org.eclipse.jdt.core.compiler</groupId>
51+
<artifactId>ecj</artifactId>
52+
<version>4.6.1</version>
53+
<scope>provided</scope>
54+
</dependency>
55+
<dependency>
56+
<groupId>org.webjars</groupId>
57+
<artifactId>bootstrap</artifactId>
58+
<version>3.3.7</version>
59+
</dependency>
60+
<dependency>
61+
<groupId>io.jenkins-x.client</groupId>
62+
<artifactId>jx-java-client</artifactId>
63+
<version>1.0.4</version>
64+
</dependency>
65+
66+
</dependencies>
67+
<build>
68+
<plugins>
69+
<plugin>
70+
<groupId>org.springframework.boot</groupId>
71+
<artifactId>spring-boot-maven-plugin</artifactId>
72+
</plugin>
73+
<plugin>
74+
<groupId>org.apache.maven.plugins</groupId>
75+
<artifactId>maven-deploy-plugin</artifactId>
76+
<version>2.8.2</version>
77+
</plugin>
78+
</plugins>
79+
</build>
80+
</project>

0 commit comments

Comments
 (0)