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.21
Browse files Browse the repository at this point in the history
  • Loading branch information
jx-activiti-cloud committed Jan 15, 2019
1 parent 7b5cee1 commit 7d4f2b7
Show file tree
Hide file tree
Showing 7 changed files with 146 additions and 3 deletions.
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
7.0.21
2 changes: 1 addition & 1 deletion charts/activiti-cloud-modeling/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: activiti-cloud-modeling
version: 0.4.0
version: 7.0.21
2 changes: 1 addition & 1 deletion charts/activiti-cloud-modeling/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ backend:
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/activiti-cloud-modeling
tag: 7.0.1
tag: 7.0.21
pullPolicy: Always
resources:
limits:
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.21/" Chart.yaml
#sed -i -e "s/tag: 7\.0\.[1-9]\d*/tag: 7.0.21/" values.yaml
export RELEASE_VERSION=7.0.21 && perl -0777 -pi -e '$version = $ENV{'RELEASE_VERSION'};s/repository: activiti\/activiti-cloud-modeling\n\s*tag: ([0-9]|[a-zA-Z]|\.)*/repository: activiti\/activiti-cloud-modeling\n tag: $version/' values.yaml
git add --all
2 changes: 2 additions & 0 deletions charts/activiti-cloud-modeling@tmp/durable-18191ebd/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>activiti-cloud-modeling</artifactId>
<version>1.0.0</version>
<version>7.0.21</version>
<name>Activiti Cloud :: Modeling</name>
<url>http://activiti.org</url>
<scm>
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>activiti-cloud-modeling</artifactId>
<version>1.0.0</version>
<name>Activiti Cloud :: Modeling</name>
<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-modeling-dependencies.version>7.0.44</activiti-cloud-modeling-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-deploy-plugin.version>2.8.2</maven-deploy-plugin.version> <!-- required for jx -->
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.activiti.cloud.dependencies</groupId>
<artifactId>activiti-cloud-modeling-dependencies</artifactId>
<version>${activiti-cloud-modeling-dependencies.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.activiti.cloud.process.model</groupId>
<artifactId>activiti-cloud-starter-process-model</artifactId>
</dependency>
<dependency>
<groupId>org.activiti.cloud.modeling</groupId>
<artifactId>activiti-cloud-starter-org</artifactId>
</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>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-contract-verifier</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>${maven-deploy-plugin.version}</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>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M1</version></plugin>
</plugins>
</build>
<repositories>
<repository>
<id>activiti-releases</id>
<name>Activiti Releases</name>
<url>https://artifacts.alfresco.com/nexus/content/repositories/activiti-releases/</url>
</repository>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone/</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</project>

0 comments on commit 7d4f2b7

Please sign in to comment.