From a3a58e1e1309a2791abf85573dfa9debac625954 Mon Sep 17 00:00:00 2001 From: Dave Syer Date: Tue, 25 Mar 2014 09:56:44 +0000 Subject: [PATCH] Move @EnableRabbitMessaging into the non-protected package Fixes gh-573 --- .../RabbitCompilerAutoConfiguration.java | 14 +-------- .../boot/groovy/EnableRabbitMessaging.java | 30 +++++++++++++++++++ 2 files changed, 31 insertions(+), 13 deletions(-) create mode 100644 spring-boot-cli/src/main/java/org/springframework/boot/groovy/EnableRabbitMessaging.java diff --git a/spring-boot-cli/src/main/java/org/springframework/boot/cli/compiler/autoconfigure/RabbitCompilerAutoConfiguration.java b/spring-boot-cli/src/main/java/org/springframework/boot/cli/compiler/autoconfigure/RabbitCompilerAutoConfiguration.java index 903e366462f..9f5a44e2f99 100644 --- a/spring-boot-cli/src/main/java/org/springframework/boot/cli/compiler/autoconfigure/RabbitCompilerAutoConfiguration.java +++ b/spring-boot-cli/src/main/java/org/springframework/boot/cli/compiler/autoconfigure/RabbitCompilerAutoConfiguration.java @@ -16,18 +16,13 @@ package org.springframework.boot.cli.compiler.autoconfigure; -import java.lang.annotation.Documented; -import java.lang.annotation.ElementType; -import java.lang.annotation.Retention; -import java.lang.annotation.RetentionPolicy; -import java.lang.annotation.Target; - import org.codehaus.groovy.ast.ClassNode; import org.codehaus.groovy.control.CompilationFailedException; import org.codehaus.groovy.control.customizers.ImportCustomizer; import org.springframework.boot.cli.compiler.AstUtils; import org.springframework.boot.cli.compiler.CompilerAutoConfiguration; import org.springframework.boot.cli.compiler.DependencyCustomizer; +import org.springframework.boot.groovy.EnableRabbitMessaging; /** * {@link CompilerAutoConfiguration} for Spring Rabbit. @@ -60,11 +55,4 @@ public class RabbitCompilerAutoConfiguration extends CompilerAutoConfiguration { EnableRabbitMessaging.class.getCanonicalName()); } - @Target(ElementType.TYPE) - @Documented - @Retention(RetentionPolicy.RUNTIME) - public static @interface EnableRabbitMessaging { - - } - } diff --git a/spring-boot-cli/src/main/java/org/springframework/boot/groovy/EnableRabbitMessaging.java b/spring-boot-cli/src/main/java/org/springframework/boot/groovy/EnableRabbitMessaging.java new file mode 100644 index 00000000000..e6f9cb8d441 --- /dev/null +++ b/spring-boot-cli/src/main/java/org/springframework/boot/groovy/EnableRabbitMessaging.java @@ -0,0 +1,30 @@ +/* + * Copyright 2012-2013 the original author or authors. + * + * 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 org.springframework.boot.groovy; + +import java.lang.annotation.Documented; +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +@Target(ElementType.TYPE) +@Documented +@Retention(RetentionPolicy.RUNTIME) +public @interface EnableRabbitMessaging { + +} \ No newline at end of file