Skip to content
This repository has been archived by the owner on May 18, 2020. It is now read-only.

Commit

Permalink
release 7.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
jx-activiti-cloud committed Dec 12, 2018
1 parent 629c633 commit 9a8a99d
Show file tree
Hide file tree
Showing 7 changed files with 206 additions and 4 deletions.
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
7.0.10
2 changes: 1 addition & 1 deletion charts/runtime-bundle/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ apiVersion: v1
description: A Helm chart for Kubernetes
icon: https://raw.githubusercontent.com/jenkins-x/jenkins-x-platform/master/images/java.png
name: runtime-bundle
version: 0.1.8
version: 7.0.10
4 changes: 2 additions & 2 deletions charts/runtime-bundle/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ javaOpts:
xms: 512m
other: -XX:+UnlockExperimentalVMOptions -XX:+UseCGroupMemoryLimitForHeap -Dsun.zip.disableMemoryMapping=true -XX:+UseParallelGC -XX:MinHeapFreeRatio=5 -XX:MaxHeapFreeRatio=10 -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90
image:
repository: activiti/example-runtime-bundle
tag: latest
repository: docker.io/activiti/runtime-bundle
tag: 7.0.10
pullPolicy: IfNotPresent
service:
name: rb-my-app
Expand Down
5 changes: 5 additions & 0 deletions charts/runtime-bundle@tmp/durable-451f4a1c/jenkins-log.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
+ make tag
sed -i -e "s/version:.*/version: 7.0.10/" Chart.yaml
sed -i -e "s|repository: .*|repository: docker.io/activiti/runtime-bundle|" values.yaml
sed -i -e "s/tag: .*/tag: 7.0.10/" values.yaml
git add --all
2 changes: 2 additions & 0 deletions charts/runtime-bundle@tmp/durable-451f4a1c/script.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/sh -xe
make tag
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>org.activiti.cloud.examples</groupId>
<artifactId>example-runtime-bundle</artifactId>
<name>Activiti Cloud :: Runtime Bundle</name>
<version>1.0.0</version>
<version>7.0.10</version>
<url>http://activiti.org</url>
<scm>
<url>https://github.com/Activiti/${project.artifactId}</url>
Expand Down
194 changes: 194 additions & 0 deletions pom.xml.versionsBackup
Original file line number Diff line number Diff line change
@@ -0,0 +1,194 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.activiti.cloud.examples</groupId>
<artifactId>example-runtime-bundle</artifactId>
<name>Activiti Cloud :: Runtime Bundle</name>
<version>1.0.0</version>
<url>http://activiti.org</url>
<scm>
<url>https://github.com/Activiti/${project.artifactId}</url>
<connection>scm:git:https://github.com/Activiti/${project.artifactId}.git</connection>
<developerConnection>scm:git:https://github.com/Activiti/${project.artifactId}.git</developerConnection>
<tag>HEAD</tag>
</scm>
<properties>
<java.version>1.8</java.version>
<activiti-cloud-dependencies.version>7.0.106</activiti-cloud-dependencies.version>
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
<maven-failsafe-plugin.version>2.18.1</maven-failsafe-plugin.version>
<maven-surefire-plugin.version>2.18.1</maven-surefire-plugin.version>
<spring-boot.version>2.1.0.RELEASE</spring-boot.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.activiti.cloud.dependencies</groupId>
<artifactId>activiti-cloud-dependencies</artifactId>
<version>${activiti-cloud-dependencies.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.activiti.cloud.rb</groupId>
<artifactId>activiti-cloud-starter-runtime-bundle</artifactId>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
<optimize>true</optimize>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring-boot.version}</version>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${maven-surefire-plugin.version}</version>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>integration-test</id>
<activation>
<activeByDefault>false</activeByDefault>
<property>
<name>skipITs</name>
<value>false</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${maven-failsafe-plugin.version}</version>
<configuration>
<forkCount>0</forkCount>
<useSystemClassLoader>false</useSystemClassLoader>
</configuration>
<executions>
<execution>
<id>integration-test</id>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>io.fabric8</groupId>
<artifactId>docker-maven-plugin</artifactId>
<configuration>
<images>
<image>
<name>activiti/activiti-keycloak</name>
<alias>activiti-keycloak</alias>
<run>
<ports>
<port>8180:8180</port>
</ports>
<wait>
<log>Keycloak .* started in</log>
<time>40000</time>
<shutdown>5000</shutdown>
<kill>1000</kill>
</wait>
</run>
</image>
<image>
<name>rabbitmq:management</name>
<alias>activiti-rabbitmq</alias>
<run>
<ports>
<port>5672:5672</port>
<port>15672:15672</port>
</ports>
<wait>
<log>Server startup complete</log>
<time>20000</time>
<shutdown>3000</shutdown>
<kill>1000</kill>
</wait>
</run>
</image>
</images>
<skip>${skipTests}</skip>
</configuration>
<executions>
<execution>
<goals>
<goal>start</goal>
<goal>stop</goal>
<goal>remove</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<repositories>
<repository>
<id>activiti-releases</id>
<name>Activiti Releases</name>
<url>https://artifacts.alfresco.com/nexus/content/repositories/activiti-releases/</url>
</repository>
</repositories>
</project>

0 comments on commit 9a8a99d

Please sign in to comment.