Skip to content

Commit

Permalink
release 1.0.55
Browse files Browse the repository at this point in the history
  • Loading branch information
pow-devops2020 committed Jul 18, 2018
1 parent 85f48ac commit 08c6a33
Show file tree
Hide file tree
Showing 7 changed files with 188 additions and 4 deletions.
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1.0.55
2 changes: 1 addition & 1 deletion charts/activiti-cloud-gateway/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-gateway
version: 0.1.0-SNAPSHOT
version: 1.0.55
4 changes: 2 additions & 2 deletions charts/activiti-cloud-gateway/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,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.51.248.112:5000/ryandawsonuk/activiti-cloud-gateway
tag: 1.0.55
pullPolicy: IfNotPresent
service:
name: activiti-cloud-gateway
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
+ make tag
sed -i -e "s/version:.*/version: 1.0.55/" Chart.yaml
sed -i -e "s/repository: .*/repository: 10.51.248.112:5000\/ryandawsonuk\/activiti-cloud-gateway/" values.yaml
sed -i -e "s/tag: .*/tag: 1.0.55/" values.yaml
git add --all
2 changes: 2 additions & 0 deletions charts/activiti-cloud-gateway@tmp/durable-016092c3/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 @@ -9,7 +9,7 @@
</parent>
<groupId>org.activiti.cloud.examples</groupId>
<artifactId>infra-gateway</artifactId>
<version>1.0-SNAPSHOT</version>
<version>1.0.55</version>
<name>Activiti Cloud :: Infrastructure Gateway</name>
<properties>
<java.version>1.8</java.version>
Expand Down
176 changes: 176 additions & 0 deletions pom.xml.versionsBackup
Original file line number Diff line number Diff line change
@@ -0,0 +1,176 @@
<?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>
<parent>
<groupId>org.activiti.cloud</groupId>
<artifactId>activiti-cloud-uservices-parent</artifactId>
<version>7-201803-EA-SNAPSHOT</version>
</parent>
<groupId>org.activiti.cloud.examples</groupId>
<artifactId>infra-gateway</artifactId>
<version>1.0-SNAPSHOT</version>
<name>Activiti Cloud :: Infrastructure Gateway</name>
<properties>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven-compiler-plugin.version>3.7.0</maven-compiler-plugin.version>
<spring-cloud.version>Finchley.RC2</spring-cloud.version>
<spring.cloud.k8s.version>0.3.0.RC1</spring.cloud.k8s.version>
<spring.boot.version>2.0.2.RELEASE</spring.boot.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring.boot.version}</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-kubernetes-dependencies</artifactId>
<version>${spring.cloud.k8s.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-autoconfigure</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-kubernetes-discovery</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-kubernetes-ribbon</artifactId>
</dependency>
<!--
<dependency>
<groupId>org.activiti.cloud</groupId>
<artifactId>activiti-cloud-app-service</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-config</artifactId>
</dependency>
-->
<!--
<dependency>
<groupId>org.activiti.cloud</groupId>
<artifactId>activiti-cloud-services-query-graphql-ws</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</exclusion>
<exclusion>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-jpa</artifactId>
</exclusion>
<exclusion>
<groupId>org.activiti.cloud</groupId>
<artifactId>activiti-cloud-services-query-graphql</artifactId>
</exclusion>
</exclusions>
</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>
</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>alfresco-snapshots</id>
<name>Alfresco 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 08c6a33

Please sign in to comment.