Skip to content
This repository was archived by the owner on Mar 17, 2020. It is now read-only.

Commit be4ba6f

Browse files
release 7.1.112
1 parent 09aaba6 commit be4ba6f

File tree

7 files changed

+157
-4
lines changed

7 files changed

+157
-4
lines changed

VERSION

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

charts/activiti-cloud-notifications-graphql/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 Activiti Cloud Notifications GraphQL Application
33
icon: "https://salaboy.files.wordpress.com/2018/01/acitiviti_icon_fullcolor_github_400x400.png"
44
name: activiti-cloud-notifications-graphql
5-
version: 0.0.1-SNAPSHOT
5+
version: 7.1.112

charts/activiti-cloud-notifications-graphql/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ extraEnv: |
5656
# only set this variable if a private registry secret is needed to pull the image
5757
#registryPullSecrets: private-registry-secret
5858
image:
59-
repository: activiti/activiti-cloud-notifications-graphql
60-
tag: 7.0.0.SR1
59+
repository: docker.io/activiti/activiti-cloud-notifications-graphql
60+
tag: 7.1.112
6161
pullPolicy: IfNotPresent
6262

6363
service:
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: 7.1.112/" Chart.yaml
3+
sed -i -e "s|repository: .*|repository: docker.io/activiti/activiti-cloud-notifications-graphql|" values.yaml
4+
sed -i -e "s/tag: .*/tag: 7.1.112/" values.yaml
5+
git add --all
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
make tag

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</parent>
1212
<groupId>org.activiti.cloud.examples</groupId>
1313
<artifactId>activiti-cloud-notifications-graphql</artifactId>
14-
<version>7.1.0-SNAPSHOT</version>
14+
<version>7.1.112</version>
1515
<name>Activiti Cloud :: Notifications GraphQL</name>
1616
<url>http://activiti.org</url>
1717
<scm>

pom.xml.versionsBackup

Lines changed: 146 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<modelVersion>4.0.0</modelVersion>
6+
<parent>
7+
<groupId>org.springframework.boot</groupId>
8+
<artifactId>spring-boot-starter-parent</artifactId>
9+
<version>2.1.2.RELEASE</version>
10+
<relativePath /> <!-- lookup parent from repository -->
11+
</parent>
12+
<groupId>org.activiti.cloud.examples</groupId>
13+
<artifactId>activiti-cloud-notifications-graphql</artifactId>
14+
<version>7.1.0-SNAPSHOT</version>
15+
<name>Activiti Cloud :: Notifications GraphQL</name>
16+
<url>http://activiti.org</url>
17+
<scm>
18+
<url>https://github.com/Activiti/${project.artifactId}</url>
19+
<connection>scm:git:https://github.com/Activiti/${project.artifactId}.git</connection>
20+
<developerConnection>scm:git:https://github.com/Activiti/${project.artifactId}.git</developerConnection>
21+
<tag>HEAD</tag>
22+
</scm>
23+
<properties>
24+
<java.version>11</java.version>
25+
<activiti-cloud-dependencies.version>7.1.87</activiti-cloud-dependencies.version>
26+
<maven-compiler-plugin.version>3.8.0</maven-compiler-plugin.version>
27+
<maven-failsafe-plugin.version>3.0.0-M3</maven-failsafe-plugin.version>
28+
<maven-surefire-plugin.version>3.0.0-M3</maven-surefire-plugin.version>
29+
<maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version> <!-- required for jx -->
30+
</properties>
31+
<dependencyManagement>
32+
<dependencies>
33+
<dependency>
34+
<groupId>org.activiti.cloud.dependencies</groupId>
35+
<artifactId>activiti-cloud-dependencies</artifactId>
36+
<version>${activiti-cloud-dependencies.version}</version>
37+
<scope>import</scope>
38+
<type>pom</type>
39+
</dependency>
40+
</dependencies>
41+
</dependencyManagement>
42+
<dependencies>
43+
<dependency>
44+
<groupId>org.activiti.cloud.notifications.graphql</groupId>
45+
<artifactId>activiti-cloud-starter-notifications-graphql</artifactId>
46+
</dependency>
47+
<dependency>
48+
<groupId>org.activiti.cloud.common</groupId>
49+
<artifactId>activiti-cloud-services-common-security-keycloak</artifactId>
50+
</dependency>
51+
<dependency>
52+
<groupId>org.postgresql</groupId>
53+
<artifactId>postgresql</artifactId>
54+
<scope>runtime</scope>
55+
</dependency>
56+
<dependency>
57+
<groupId>junit</groupId>
58+
<artifactId>junit</artifactId>
59+
<scope>test</scope>
60+
</dependency>
61+
<dependency>
62+
<groupId>org.springframework.boot</groupId>
63+
<artifactId>spring-boot-test</artifactId>
64+
<scope>test</scope>
65+
</dependency>
66+
<dependency>
67+
<groupId>org.springframework</groupId>
68+
<artifactId>spring-test</artifactId>
69+
<scope>test</scope>
70+
</dependency>
71+
<dependency>
72+
<groupId>com.h2database</groupId>
73+
<artifactId>h2</artifactId>
74+
<optional>true</optional>
75+
</dependency>
76+
<dependency>
77+
<groupId>org.springframework.cloud</groupId>
78+
<artifactId>spring-cloud-starter-stream-rabbit</artifactId>
79+
</dependency>
80+
</dependencies>
81+
<build>
82+
<plugins>
83+
<plugin>
84+
<groupId>org.apache.maven.plugins</groupId>
85+
<artifactId>maven-compiler-plugin</artifactId>
86+
<version>${maven-compiler-plugin.version}</version>
87+
<configuration>
88+
<release>${java.version}</release>
89+
<source>${java.version}</source>
90+
<target>${java.version}</target>
91+
<showDeprecation>true</showDeprecation>
92+
<showWarnings>true</showWarnings>
93+
<optimize>true</optimize>
94+
<compilerArgs>
95+
<arg>-parameters</arg>
96+
</compilerArgs>
97+
</configuration>
98+
</plugin>
99+
<plugin>
100+
<groupId>org.springframework.boot</groupId>
101+
<artifactId>spring-boot-maven-plugin</artifactId>
102+
<executions>
103+
<execution>
104+
<goals>
105+
<goal>repackage</goal>
106+
</goals>
107+
</execution>
108+
</executions>
109+
</plugin>
110+
<plugin>
111+
<groupId>org.apache.maven.plugins</groupId>
112+
<artifactId>maven-deploy-plugin</artifactId>
113+
<version>${maven-deploy-plugin.version}</version>
114+
</plugin>
115+
<plugin>
116+
<groupId>org.apache.maven.plugins</groupId>
117+
<artifactId>maven-surefire-plugin</artifactId>
118+
<version>${maven-surefire-plugin.version}</version>
119+
</plugin>
120+
<plugin>
121+
<groupId>org.apache.maven.plugins</groupId>
122+
<artifactId>maven-failsafe-plugin</artifactId>
123+
<version>${maven-failsafe-plugin.version}</version>
124+
<configuration>
125+
<forkCount>0</forkCount>
126+
<useSystemClassLoader>false</useSystemClassLoader>
127+
</configuration>
128+
<executions>
129+
<execution>
130+
<goals>
131+
<goal>integration-test</goal>
132+
<goal>verify</goal>
133+
</goals>
134+
</execution>
135+
</executions>
136+
</plugin>
137+
</plugins>
138+
</build>
139+
<repositories>
140+
<repository>
141+
<id>activiti-releases</id>
142+
<name>Activiti Releases</name>
143+
<url>https://artifacts.alfresco.com/nexus/content/repositories/activiti-releases/</url>
144+
</repository>
145+
</repositories>
146+
</project>

0 commit comments

Comments
 (0)