Skip to content

Commit 4e82d7e

Browse files
committed
Adding japicmp excludes block
1 parent 0d9e506 commit 4e82d7e

File tree

2 files changed

+30
-0
lines changed
  • services-custom/dynamodb-enhanced
  • test/http-client-tests/src/main/resources

2 files changed

+30
-0
lines changed

services-custom/dynamodb-enhanced/pom.xml

+14
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,20 @@
7676
</archive>
7777
</configuration>
7878
</plugin>
79+
<plugin>
80+
<groupId>com.github.siom79.japicmp</groupId>
81+
<artifactId>japicmp-maven-plugin</artifactId>
82+
<version>${japicmp-maven-plugin.version}</version>
83+
<configuration>
84+
<parameter>
85+
<excludes>
86+
<!-- japicmp flagging these incorrectly as a breaking change -->
87+
<exclude>software.amazon.awssdk.enhanced.dynamodb.extensions.annotations.DynamoDbVersionAttribute#incrementBy()</exclude>
88+
<exclude>software.amazon.awssdk.enhanced.dynamodb.extensions.annotations.DynamoDbVersionAttribute#startAt()</exclude>
89+
</excludes>
90+
</parameter>
91+
</configuration>
92+
</plugin>
7993
</plugins>
8094
<pluginManagement>
8195
<plugins>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<Configuration status="WARN">
2+
<Appenders>
3+
<Console name="ConsoleAppender" target="SYSTEM_OUT">
4+
<PatternLayout pattern="%d{YYYY-MM-dd HH:mm:ss} [%t] %-5p %c:%L - %m%n" />
5+
</Console>
6+
</Appenders>
7+
8+
<Loggers>
9+
<Root level="WARN">
10+
<AppenderRef ref="ConsoleAppender"/>
11+
</Root>
12+
<Logger name="software.amazon.awssdk" level="WARN" />
13+
<Logger name="software.amazon.awssdk.request" level="DEBUG" />
14+
<Logger name="org.apache.http.wire" level="DEBUG" />
15+
</Loggers>
16+
</Configuration>

0 commit comments

Comments
 (0)