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

Commit fb190b2

Browse files
jx-activiti-cloudpow-devops2020
authored andcommitted
release 7.0.24
1 parent 20af17f commit fb190b2

File tree

7 files changed

+153
-4
lines changed

7 files changed

+153
-4
lines changed

VERSION

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

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ extraEnv: |
5050
# key: expose-keycloak-service-key
5151
5252
image:
53-
repository: activiti/activiti-cloud-notifications-graphql
54-
tag: latest
53+
repository: docker.io/activiti/activiti-cloud-notifications-graphql
54+
tag: 7.0.24
5555
pullPolicy: IfNotPresent
5656

5757
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.0.24/" 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.0.24/" 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.0.0-SNAPSHOT</version>
14+
<version>7.0.24</version>
1515
<name>Activiti Cloud :: Notifications GraphQL</name>
1616
<url>http://activiti.org</url>
1717
<scm>

pom.xml.versionsBackup

Lines changed: 142 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
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.0.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.0.176</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+
</dependencies>
77+
<build>
78+
<plugins>
79+
<plugin>
80+
<groupId>org.apache.maven.plugins</groupId>
81+
<artifactId>maven-compiler-plugin</artifactId>
82+
<version>${maven-compiler-plugin.version}</version>
83+
<configuration>
84+
<release>${java.version}</release>
85+
<source>${java.version}</source>
86+
<target>${java.version}</target>
87+
<showDeprecation>true</showDeprecation>
88+
<showWarnings>true</showWarnings>
89+
<optimize>true</optimize>
90+
<compilerArgs>
91+
<arg>-parameters</arg>
92+
</compilerArgs>
93+
</configuration>
94+
</plugin>
95+
<plugin>
96+
<groupId>org.springframework.boot</groupId>
97+
<artifactId>spring-boot-maven-plugin</artifactId>
98+
<executions>
99+
<execution>
100+
<goals>
101+
<goal>repackage</goal>
102+
</goals>
103+
</execution>
104+
</executions>
105+
</plugin>
106+
<plugin>
107+
<groupId>org.apache.maven.plugins</groupId>
108+
<artifactId>maven-deploy-plugin</artifactId>
109+
<version>${maven-deploy-plugin.version}</version>
110+
</plugin>
111+
<plugin>
112+
<groupId>org.apache.maven.plugins</groupId>
113+
<artifactId>maven-surefire-plugin</artifactId>
114+
<version>${maven-surefire-plugin.version}</version>
115+
</plugin>
116+
<plugin>
117+
<groupId>org.apache.maven.plugins</groupId>
118+
<artifactId>maven-failsafe-plugin</artifactId>
119+
<version>${maven-failsafe-plugin.version}</version>
120+
<configuration>
121+
<forkCount>0</forkCount>
122+
<useSystemClassLoader>false</useSystemClassLoader>
123+
</configuration>
124+
<executions>
125+
<execution>
126+
<goals>
127+
<goal>integration-test</goal>
128+
<goal>verify</goal>
129+
</goals>
130+
</execution>
131+
</executions>
132+
</plugin>
133+
</plugins>
134+
</build>
135+
<repositories>
136+
<repository>
137+
<id>activiti-releases</id>
138+
<name>Activiti Releases</name>
139+
<url>https://artifacts.alfresco.com/nexus/content/repositories/activiti-releases/</url>
140+
</repository>
141+
</repositories>
142+
</project>

0 commit comments

Comments
 (0)