Repository: james-project Updated Branches: refs/heads/master 91d3ebf0b -> df506d9d1
http://git-wip-us.apache.org/repos/asf/james-project/blob/c1f94a46/server/container/guice/onami/src/test/java/org/apache/james/onami/lifecycle/TestAnnotationC.java ---------------------------------------------------------------------- diff --git a/server/container/guice/onami/src/test/java/org/apache/james/onami/lifecycle/TestAnnotationC.java b/server/container/guice/onami/src/test/java/org/apache/james/onami/lifecycle/TestAnnotationC.java new file mode 100644 index 0000000..1f99d60 --- /dev/null +++ b/server/container/guice/onami/src/test/java/org/apache/james/onami/lifecycle/TestAnnotationC.java @@ -0,0 +1,33 @@ +/**************************************************************** + * Licensed to the Apache Software Foundation (ASF) under one * + * or more contributor license agreements. See the NOTICE file * + * distributed with this work for additional information * + * regarding copyright ownership. The ASF licenses this file * + * to you 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.apache.james.onami.lifecycle; + +import java.lang.annotation.Retention; +import java.lang.annotation.Target; + +import static java.lang.annotation.ElementType.METHOD; +import static java.lang.annotation.RetentionPolicy.RUNTIME; + +@Retention( RUNTIME ) +@Target( METHOD ) +public @interface TestAnnotationC +{ + +} http://git-wip-us.apache.org/repos/asf/james-project/blob/c1f94a46/server/container/guice/pom.xml ---------------------------------------------------------------------- diff --git a/server/container/guice/pom.xml b/server/container/guice/pom.xml index 14f774a..27e4a22 100644 --- a/server/container/guice/pom.xml +++ b/server/container/guice/pom.xml @@ -39,6 +39,7 @@ <module>guice-common</module> <module>cassandra-guice</module> <module>memory-guice</module> + <module>onami</module> </modules> </project> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
