Skip to content
This repository was archived by the owner on Sep 24, 2018. It is now read-only.

Commit 05f0746

Browse files
committed
put back @repeatable
This reverts commit 9d95534bd473bbeb7a2cc6163d336afa3e415856.
1 parent 358a4aa commit 05f0746

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

api/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,8 +254,8 @@
254254
<groupId>org.apache.maven.plugins</groupId>
255255
<artifactId>maven-compiler-plugin</artifactId>
256256
<configuration>
257-
<source>1.7</source>
258-
<target>1.7</target>
257+
<source>1.8</source>
258+
<target>1.8</target>
259259
</configuration>
260260
</plugin>
261261

api/src/main/java/javax/xml/ws/WebServiceRef.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
import java.lang.annotation.Documented;
4646
import java.lang.annotation.Target;
4747
import java.lang.annotation.ElementType;
48+
import java.lang.annotation.Repeatable;
4849
import java.lang.annotation.Retention;
4950
import java.lang.annotation.RetentionPolicy;
5051
import javax.annotation.Resource;
@@ -98,6 +99,7 @@
9899
@Target({ElementType.TYPE, ElementType.METHOD, ElementType.FIELD})
99100
@Retention(RetentionPolicy.RUNTIME)
100101
@Documented
102+
@Repeatable(WebServiceRefs.class)
101103
public @interface WebServiceRef {
102104
/**
103105
* The JNDI name of the resource. For field annotations,

0 commit comments

Comments
 (0)