Revert to snapshots

This commit is contained in:
Dave Syer
2018-02-20 19:25:58 +00:00
parent 72efd58675
commit a2a2932715
43 changed files with 75 additions and 75 deletions

View File

@@ -28,7 +28,7 @@ apply plugin: 'spring-boot'
apply plugin: 'org.springframework.boot.experimental.thin-launcher'
group = 'io.spring.sample'
version = '1.0.0.M4'
version = '1.0.0.BUILD-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
@@ -40,7 +40,7 @@ repositories {
}
ext {
springCloudFunctionVersion = "1.0.0.M4"
springCloudFunctionVersion = "1.0.0.BUILD-SNAPSHOT"
awsLambdaEventsVersion = "1.2.1"
awsLambdaCoreVersion = "1.1.0"
}

View File

@@ -5,7 +5,7 @@
<groupId>io.spring.sample</groupId>
<artifactId>function-sample-aws</artifactId>
<version>1.0.0.M4</version>
<version>1.0.0.BUILD-SNAPSHOT</version>
<packaging>jar</packaging>
<name>function-sample-aws</name>
@@ -25,8 +25,8 @@
<wrapper.version>1.0.9.RELEASE</wrapper.version>
<aws-lambda-events.version>2.0.2</aws-lambda-events.version>
<reactor.version>3.1.2.RELEASE</reactor.version>
<spring-cloud-function.version>1.0.0.M4</spring-cloud-function.version>
<spring-cloud-stream-servlet.version>1.0.0.M4</spring-cloud-stream-servlet.version>
<spring-cloud-function.version>1.0.0.BUILD-SNAPSHOT</spring-cloud-function.version>
<spring-cloud-stream-servlet.version>1.0.0.BUILD-SNAPSHOT</spring-cloud-stream-servlet.version>
<start-class>example.Config</start-class>
</properties>

View File

@@ -5,7 +5,7 @@
<groupId>io.spring.sample</groupId>
<artifactId>function-sample-azure</artifactId>
<version>1.0.0.M4</version>
<version>1.0.0.BUILD-SNAPSHOT</version>
<packaging>jar</packaging>
<name>function-sample-azure</name>
@@ -37,7 +37,7 @@
<artifactId>spring-cloud-function-web</artifactId>
<scope>provided</scope>
</dependency>
` <dependency>
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-functions-java-core</artifactId>
<version>1.0.0-beta-2</version>
@@ -57,7 +57,7 @@
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-function-dependencies</artifactId>
<version>1.0.0.M4</version>
<version>1.0.0.BUILD-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
@@ -66,13 +66,6 @@
<build>
<pluginManagement>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugins>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
@@ -87,6 +80,13 @@
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-functions-maven-plugin</artifactId>

View File

@@ -1,5 +1,5 @@
{
"scriptFile": "../function-sample-azure-1.0.0.M4-azure.jar",
"scriptFile": "../function-sample-azure-1.0.0.BUILD-SNAPSHOT-azure.jar",
"entryPoint": "example.FooHandler.execute",
"bindings": [
{

View File

@@ -24,7 +24,7 @@ apply plugin: 'spring-boot'
apply plugin: 'org.springframework.boot.experimental.thin-launcher'
group = 'io.spring.sample'
version = '1.0.0.M4'
version = '1.0.0.BUILD-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
@@ -36,7 +36,7 @@ repositories {
}
ext {
springCloudFunctionVersion = "1.0.0.M4"
springCloudFunctionVersion = "1.0.0.BUILD-SNAPSHOT"
}
ext['reactor.version'] = "3.1.2.RELEASE"

View File

@@ -5,7 +5,7 @@
<groupId>io.spring.sample</groupId>
<artifactId>function-sample-compiler</artifactId>
<version>1.0.0.M4</version>
<version>1.0.0.BUILD-SNAPSHOT</version>
<packaging>jar</packaging>
<name>spring-cloud-function-sample-compiler</name>
<description>Spring Cloud Function Lambda Compiling Support</description>
@@ -19,7 +19,7 @@
<properties>
<java.version>1.8</java.version>
<spring-cloud-function.version>1.0.0.M4</spring-cloud-function.version>
<spring-cloud-function.version>1.0.0.BUILD-SNAPSHOT</spring-cloud-function.version>
<spring-cloud-stream.version>Ditmars.RELEASE</spring-cloud-stream.version>
<reactor.version>3.1.2.RELEASE</reactor.version>
<wrapper.version>1.0.9.RELEASE</wrapper.version>

View File

@@ -24,7 +24,7 @@ apply plugin: 'spring-boot'
apply plugin: 'org.springframework.boot.experimental.thin-launcher'
group = 'io.spring.sample'
version = '1.0.0.M4'
version = '1.0.0.BUILD-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
@@ -36,7 +36,7 @@ repositories {
}
ext {
springCloudFunctionVersion = "1.0.0.M4"
springCloudFunctionVersion = "1.0.0.BUILD-SNAPSHOT"
}
ext['reactor.version'] = "3.1.2.RELEASE"

View File

@@ -4,7 +4,7 @@
<groupId>io.spring.sample</groupId>
<artifactId>function-sample-pof</artifactId>
<version>1.0.0.M4</version>
<version>1.0.0.BUILD-SNAPSHOT</version>
<packaging>jar</packaging>
<name>function-sample-pof</name>
<description>Spring Cloud Function Web Support</description>
@@ -21,8 +21,8 @@
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
<reactor.version>3.1.2.RELEASE</reactor.version>
<spring-cloud-function.version>1.0.0.M4</spring-cloud-function.version>
<spring-cloud-stream-servlet.version>1.0.0.M4</spring-cloud-stream-servlet.version>
<spring-cloud-function.version>1.0.0.BUILD-SNAPSHOT</spring-cloud-function.version>
<spring-cloud-stream-servlet.version>1.0.0.BUILD-SNAPSHOT</spring-cloud-stream-servlet.version>
</properties>
<dependencies>

View File

@@ -24,7 +24,7 @@ apply plugin: 'spring-boot'
apply plugin: 'org.springframework.boot.experimental.thin-launcher'
group = 'io.spring.sample'
version = '1.0.0.M4'
version = '1.0.0.BUILD-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
@@ -36,7 +36,7 @@ repositories {
}
ext {
springCloudFunctionVersion = "1.0.0.M4"
springCloudFunctionVersion = "1.0.0.BUILD-SNAPSHOT"
}
ext['reactor.version'] = "3.1.2.RELEASE"

View File

@@ -5,7 +5,7 @@
<groupId>io.spring.sample</groupId>
<artifactId>function-sample-pojo</artifactId>
<version>1.0.0.M4</version>
<version>1.0.0.BUILD-SNAPSHOT</version>
<packaging>jar</packaging>
<name>function-sample-pojo</name>
<description>Spring Cloud Function Web Support</description>
@@ -19,7 +19,7 @@
<properties>
<java.version>1.8</java.version>
<spring-cloud-function.version>1.0.0.M4</spring-cloud-function.version>
<spring-cloud-function.version>1.0.0.BUILD-SNAPSHOT</spring-cloud-function.version>
<wrapper.version>1.0.9.RELEASE</wrapper.version>
<reactor.version>3.1.2.RELEASE</reactor.version>
</properties>

View File

@@ -24,7 +24,7 @@ apply plugin: 'spring-boot'
apply plugin: 'org.springframework.boot.experimental.thin-launcher'
group = 'io.spring.sample'
version = '1.0.0.M4'
version = '1.0.0.BUILD-SNAPSHOT'
sourceCompatibility = 1.8
targetCompatibility = 1.8
@@ -36,7 +36,7 @@ repositories {
}
ext {
springCloudFunctionVersion = "1.0.0.M4"
springCloudFunctionVersion = "1.0.0.BUILD-SNAPSHOT"
}
ext['reactor.version'] = "3.1.2.RELEASE"

View File

@@ -5,7 +5,7 @@
<groupId>io.spring.sample</groupId>
<artifactId>function-sample-task</artifactId>
<version>1.0.0.M4</version>
<version>1.0.0.BUILD-SNAPSHOT</version>
<packaging>jar</packaging>
<name>function-sample-task</name>
<description>Spring Cloud Function Task Support</description>
@@ -19,7 +19,7 @@
<properties>
<java.version>1.8</java.version>
<spring-cloud-function.version>1.0.0.M4</spring-cloud-function.version>
<spring-cloud-function.version>1.0.0.BUILD-SNAPSHOT</spring-cloud-function.version>
<wrapper.version>1.0.9.RELEASE</wrapper.version>
<reactor.version>3.1.2.RELEASE</reactor.version>
</properties>

View File

@@ -36,7 +36,7 @@ repositories {
}
ext {
springCloudFunctionVersion = "1.0.0.M4"
springCloudFunctionVersion = "1.0.0.BUILD-SNAPSHOT"
}
ext['reactor.version'] = "3.1.2.RELEASE"

View File

@@ -5,7 +5,7 @@
<groupId>io.spring.sample</groupId>
<artifactId>function-sample</artifactId>
<version>1.0.0.M4</version>
<version>1.0.0.BUILD-SNAPSHOT</version>
<packaging>jar</packaging>
<name>function-sample</name>
<description>Spring Cloud Function Web Support</description>
@@ -19,7 +19,7 @@
<properties>
<java.version>1.8</java.version>
<spring-cloud-function.version>1.0.0.M4</spring-cloud-function.version>
<spring-cloud-function.version>1.0.0.BUILD-SNAPSHOT</spring-cloud-function.version>
<reactor.version>3.1.2.RELEASE</reactor.version>
<wrapper.version>1.0.9.RELEASE</wrapper.version>
</properties>

View File

@@ -9,7 +9,7 @@
<parent>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-function-parent</artifactId>
<version>1.0.0.M4</version>
<version>1.0.0.BUILD-SNAPSHOT</version>
</parent>
<modules>