Skip to content

Commit 2cf7afb

Browse files
release 1.0.4
1 parent 387b989 commit 2cf7afb

File tree

7 files changed

+128
-4
lines changed

7 files changed

+128
-4
lines changed

VERSION

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

charts/wordsmith-api/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: wordsmith-api
5-
version: 0.1.0-SNAPSHOT
5+
version: 1.0.4

charts/wordsmith-api/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.43.243.163:5000/cloudbeers/wordsmith-api
7+
tag: 1.0.4
88
pullPolicy: IfNotPresent
99
service:
1010
name: wordsmith-api
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.4/" Chart.yaml
3+
sed -i -e "s|repository: .*|repository: 10.43.243.163:5000\/cloudbeers\/wordsmith-api|" values.yaml
4+
sed -i -e "s/tag: .*/tag: 1.0.4/" 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
@@ -5,7 +5,7 @@
55

66
<groupId>com.cloudbeers.wordsmith</groupId>
77
<artifactId>wordsmith-api</artifactId>
8-
<version>1.0.0-SNAPSHOT</version>
8+
<version>1.0.4</version>
99

1010
<parent>
1111
<groupId>org.springframework.boot</groupId>

pom.xml.versionsBackup

Lines changed: 116 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
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.cloudbeers.wordsmith</groupId>
7+
<artifactId>wordsmith-api</artifactId>
8+
<version>1.0.0-SNAPSHOT</version>
9+
10+
<parent>
11+
<groupId>org.springframework.boot</groupId>
12+
<artifactId>spring-boot-starter-parent</artifactId>
13+
<version>2.0.4.RELEASE</version>
14+
</parent>
15+
16+
<dependencies>
17+
<dependency>
18+
<groupId>org.springframework.boot</groupId>
19+
<artifactId>spring-boot-starter-web</artifactId>
20+
</dependency>
21+
22+
<dependency>
23+
<groupId>org.springframework.boot</groupId>
24+
<artifactId>spring-boot-starter-actuator</artifactId>
25+
</dependency>
26+
27+
<dependency>
28+
<groupId>org.springframework.boot</groupId>
29+
<artifactId>spring-boot-starter-jdbc</artifactId>
30+
</dependency>
31+
32+
<dependency>
33+
<groupId>org.postgresql</groupId>
34+
<artifactId>postgresql</artifactId>
35+
<version>${postgres.version}</version>
36+
</dependency>
37+
38+
<dependency>
39+
<groupId>org.springframework.boot</groupId>
40+
<artifactId>spring-boot-starter-test</artifactId>
41+
<scope>test</scope>
42+
</dependency>
43+
44+
<dependency>
45+
<groupId>org.mockito</groupId>
46+
<artifactId>mockito-core</artifactId>
47+
<version>2.21.0</version>
48+
<scope>test</scope>
49+
</dependency>
50+
51+
<dependency>
52+
<groupId>com.h2database</groupId>
53+
<artifactId>h2</artifactId>
54+
<version>1.4.194</version>
55+
<scope>test</scope>
56+
</dependency>
57+
</dependencies>
58+
59+
<properties>
60+
<java.version>1.8</java.version>
61+
<postgres.version>42.1.4</postgres.version>
62+
<project.scm.id>github</project.scm.id>
63+
</properties>
64+
65+
66+
<build>
67+
<plugins>
68+
<plugin>
69+
<groupId>org.springframework.boot</groupId>
70+
<artifactId>spring-boot-maven-plugin</artifactId>
71+
</plugin>
72+
<plugin>
73+
<groupId>org.apache.maven.plugins</groupId>
74+
<artifactId>maven-release-plugin</artifactId>
75+
<version>2.5.3</version>
76+
</plugin>
77+
78+
<plugin>
79+
<groupId>org.apache.maven.plugins</groupId>
80+
<artifactId>maven-deploy-plugin</artifactId>
81+
<version>2.8.2</version></plugin>
82+
</plugins>
83+
</build>
84+
85+
<dependencyManagement>
86+
<dependencies>
87+
<dependency>
88+
<groupId>org.flywaydb</groupId>
89+
<artifactId>flyway-core</artifactId>
90+
<version>4.2.0</version>
91+
</dependency>
92+
</dependencies>
93+
</dependencyManagement>
94+
<repositories>
95+
<repository>
96+
<id>nexus.beescloud.com</id>
97+
<url>https://nexus3.beescloud.com/repository/maven-snapshots/</url>
98+
<releases>
99+
<enabled>false</enabled>
100+
</releases>
101+
<snapshots>
102+
<enabled>true</enabled>
103+
</snapshots>
104+
</repository>
105+
</repositories>
106+
<distributionManagement>
107+
<snapshotRepository>
108+
<id>nexus.beescloud.com</id>
109+
<url>https://nexus3.beescloud.com/repository/maven-snapshots/</url>
110+
</snapshotRepository>
111+
<repository>
112+
<id>nexus.beescloud.com</id>
113+
<url>https://nexus3.beescloud.com/repository/maven-releases/</url>
114+
</repository>
115+
</distributionManagement>
116+
</project>

0 commit comments

Comments
 (0)