This commit is contained in:
Stephane Nicoll
2022-04-15 16:23:32 +02:00
parent 19ec4f87fb
commit ce18a874ed
2 changed files with 5 additions and 33 deletions

34
pom.xml
View File

@@ -97,37 +97,6 @@
<maven.javadoc.skip>true</maven.javadoc.skip>
</properties>
</profile>
<profile>
<id>java8</id>
<activation>
<jdk>[1.8,)</jdk>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<configuration>
<doclint>none</doclint>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>java11</id>
<activation>
<jdk>[11,)</jdk>
</activation>
<dependencies>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
<optional>true</optional>
</dependency>
</dependencies>
</profile>
</profiles>
<scm>
@@ -284,6 +253,9 @@
<phase>package</phase>
</execution>
</executions>
<configuration>
<doclint>none</doclint>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>

View File

@@ -633,7 +633,7 @@ public class EnableRetryTests {
}
private static class InterceptableService {
static class InterceptableService {
private int count = 0;
@@ -650,7 +650,7 @@ public class EnableRetryTests {
}
private static class ExpressionService {
static class ExpressionService {
private int count = 0;