Skip to content

Commit

Permalink
Re-add EnableProteus annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
rdegnan committed Sep 10, 2018
1 parent b96cf8e commit 6c1e8ba
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 8 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ allprojects {
apply plugin: 'idea'

ext {
rsocketRpcVersion = '0.2.1'
protobufVersion = '3.6.1'
proteusVersion = '0.9.1'
springBootDependenciesVersion = '2.0.4.RELEASE'
rsocketRpcVersion = '0.2.0'
protobufVersion = '3.6.0'
proteusVersion = '0.9.0'
springBootDependenciesVersion = '2.0.2.RELEASE'
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion demos/springboot-demo/client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id 'java'
id 'application'
id 'org.springframework.boot' version '2.0.2.RELEASE'
id 'io.spring.dependency-management' version '1.0.5.RELEASE'
id 'io.spring.dependency-management' version '1.0.6.RELEASE'
}

mainClassName = 'io.netifi.proteus.demo.ClientApplication'
Expand Down
2 changes: 1 addition & 1 deletion demos/springboot-demo/isvowel-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id 'java'
id 'application'
id 'org.springframework.boot' version '2.0.2.RELEASE'
id 'io.spring.dependency-management' version '1.0.5.RELEASE'
id 'io.spring.dependency-management' version '1.0.6.RELEASE'
}

mainClassName = 'io.netifi.proteus.demo.isvowel.Application'
Expand Down
2 changes: 1 addition & 1 deletion demos/springboot-demo/vowelcount-service/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id 'java'
id 'application'
id 'org.springframework.boot' version '2.0.2.RELEASE'
id 'io.spring.dependency-management' version '1.0.5.RELEASE'
id 'io.spring.dependency-management' version '1.0.6.RELEASE'
}

mainClassName = 'io.netifi.proteus.demo.vowelcount.VowelCountApplication'
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
group=io.netifi.proteus
version=0.4.1
version=0.4.2
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/**
* Copyright 2018 Netifi Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.netifi.proteus.spring.core.config;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import org.springframework.context.annotation.Import;

/**
* Enables Netifi Proteus support in the Spring project.
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Import(ProteusConfiguration.class)
public @interface EnableProteus { }

0 comments on commit 6c1e8ba

Please sign in to comment.