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.5
Browse files Browse the repository at this point in the history
  • Loading branch information
pow-devops2020 committed Aug 15, 2018
1 parent 8ad8367 commit a9a45a5
Show file tree
Hide file tree
Showing 7 changed files with 147 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.5
2 changes: 1 addition & 1 deletion charts/example-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: example-runtime-bundle
version: 0.1.0-SNAPSHOT
version: 7.0.5
4 changes: 2 additions & 2 deletions charts/example-runtime-bundle/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,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: draft
tag: dev
repository: 10.31.252.191:5000/activiti/example-runtime-bundle
tag: 7.0.5
pullPolicy: IfNotPresent
service:
name: example-runtime-bundle
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
+ make tag
sed -i -e "s/version:.*/version: 7.0.5/" Chart.yaml
sed -i -e "s|repository: .*|repository: 10.31.252.191:5000\/activiti\/example-runtime-bundle|" values.yaml
sed -i -e "s/tag: .*/tag: 7.0.5/" values.yaml
git add --all
2 changes: 2 additions & 0 deletions charts/example-runtime-bundle@tmp/durable-a3826f85/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.5</version>
<url>http://activiti.org</url>
<scm>
<url>https://github.com/Activiti/${project.artifactId}</url>
Expand Down
135 changes: 135 additions & 0 deletions pom.xml.versionsBackup
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
<?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.version>7.0.0-SNAPSHOT</activiti.cloud.version>
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
<maven-failsafe-plugin.version>2.18.1</maven-failsafe-plugin.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.activiti.cloud</groupId>
<artifactId>activiti-cloud-dependencies</artifactId>
<version>${activiti.cloud.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.activiti.cloud</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>
<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-failsafe-plugin</artifactId>
<version>${maven-failsafe-plugin.version}</version>
<executions>
<execution>
<id>integration-test</id>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
<repository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/snapshot/</url>
<releases>
<enabled>false</enabled>
</releases>
</repository>
<repository>
<id>activiti-snapshots</id>
<name>Activiti Snapshots</name>
<url>https://artifacts.alfresco.com/nexus/content/repositories/activiti-snapshots/</url>
<releases>
<enabled>false</enabled>
</releases>
</repository>
</repositories>
</project>

0 comments on commit a9a45a5

Please sign in to comment.