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

Commit ed40c88

Browse files
release 7.1.294
1 parent d00f47d commit ed40c88

File tree

7 files changed

+173
-4
lines changed

7 files changed

+173
-4
lines changed

VERSION

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

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.294

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.294
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.294/" 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.294/" 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.294</version>
1515
<name>Activiti Cloud :: Notifications GraphQL</name>
1616
<url>http://activiti.org</url>
1717
<scm>

pom.xml.versionsBackup

Lines changed: 162 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,162 @@
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.10.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-notifications-service-graphql.version>7.1.187</activiti-cloud-notifications-service-graphql.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.notifications.graphql</groupId>
35+
<artifactId>activiti-cloud-notifications-graphql-dependencies</artifactId>
36+
<version>${activiti-cloud-notifications-service-graphql.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+
<!-- Marker Pom for Dependency Conversion Validation -->
81+
<dependency>
82+
<groupId>org.activiti.cloud.notifications.graphql</groupId>
83+
<artifactId>activiti-cloud-notifications-graphql-dependencies</artifactId>
84+
<version>${activiti-cloud-notifications-service-graphql.version}</version>
85+
<type>pom</type>
86+
</dependency>
87+
88+
<dependency>
89+
<groupId>org.springframework.boot</groupId>
90+
<artifactId>spring-boot-starter-parent</artifactId>
91+
<version>${project.parent.version}</version>
92+
<type>pom</type>
93+
</dependency>
94+
<!-- Marker Pom for Dependency Conversion Validation -->
95+
96+
</dependencies>
97+
<build>
98+
<plugins>
99+
<plugin>
100+
<groupId>org.apache.maven.plugins</groupId>
101+
<artifactId>maven-compiler-plugin</artifactId>
102+
<version>${maven-compiler-plugin.version}</version>
103+
<configuration>
104+
<release>${java.version}</release>
105+
<source>${java.version}</source>
106+
<target>${java.version}</target>
107+
<showDeprecation>true</showDeprecation>
108+
<showWarnings>true</showWarnings>
109+
<optimize>true</optimize>
110+
<compilerArgs>
111+
<arg>-parameters</arg>
112+
</compilerArgs>
113+
</configuration>
114+
</plugin>
115+
<plugin>
116+
<groupId>org.springframework.boot</groupId>
117+
<artifactId>spring-boot-maven-plugin</artifactId>
118+
<executions>
119+
<execution>
120+
<goals>
121+
<goal>repackage</goal>
122+
</goals>
123+
</execution>
124+
</executions>
125+
</plugin>
126+
<plugin>
127+
<groupId>org.apache.maven.plugins</groupId>
128+
<artifactId>maven-deploy-plugin</artifactId>
129+
<version>${maven-deploy-plugin.version}</version>
130+
</plugin>
131+
<plugin>
132+
<groupId>org.apache.maven.plugins</groupId>
133+
<artifactId>maven-surefire-plugin</artifactId>
134+
<version>${maven-surefire-plugin.version}</version>
135+
</plugin>
136+
<plugin>
137+
<groupId>org.apache.maven.plugins</groupId>
138+
<artifactId>maven-failsafe-plugin</artifactId>
139+
<version>${maven-failsafe-plugin.version}</version>
140+
<configuration>
141+
<forkCount>0</forkCount>
142+
<useSystemClassLoader>false</useSystemClassLoader>
143+
</configuration>
144+
<executions>
145+
<execution>
146+
<goals>
147+
<goal>integration-test</goal>
148+
<goal>verify</goal>
149+
</goals>
150+
</execution>
151+
</executions>
152+
</plugin>
153+
</plugins>
154+
</build>
155+
<repositories>
156+
<repository>
157+
<id>activiti-releases</id>
158+
<name>Activiti Releases</name>
159+
<url>https://artifacts.alfresco.com/nexus/content/repositories/activiti-releases/</url>
160+
</repository>
161+
</repositories>
162+
</project>

0 commit comments

Comments
 (0)