|
1 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
2 | 4 | <modelVersion>4.0.0</modelVersion> |
3 | 5 |
|
4 | 6 | <groupId>com.amazonaws.secretsmanager</groupId> |
5 | 7 | <artifactId>aws-secretsmanager-caching-java</artifactId> |
6 | | - <version>2.0.0</version> |
| 8 | + <version>2.0.1</version> |
7 | 9 | <packaging>jar</packaging> |
8 | 10 |
|
9 | 11 |
|
|
35 | 37 | </scm> |
36 | 38 |
|
37 | 39 | <properties> |
| 40 | + <maven.compiler.release>8</maven.compiler.release> |
38 | 41 | <maven.compiler.source>1.8</maven.compiler.source> |
39 | 42 | <maven.compiler.target>1.8</maven.compiler.target> |
40 | 43 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
|
44 | 47 | <dependency> |
45 | 48 | <groupId>software.amazon.awssdk</groupId> |
46 | 49 | <artifactId>secretsmanager</artifactId> |
47 | | - <version>2.20.93</version> |
| 50 | + <version>2.29.6</version> |
48 | 51 | </dependency> |
49 | 52 | <dependency> |
50 | 53 | <groupId>org.testng</groupId> |
51 | 54 | <artifactId>testng</artifactId> |
52 | | - <version>7.8.0</version> |
| 55 | + <version>7.10.2</version> |
53 | 56 | <scope>test</scope> |
54 | 57 | </dependency> |
55 | 58 | <dependency> |
56 | 59 | <groupId>org.mockito</groupId> |
57 | 60 | <artifactId>mockito-core</artifactId> |
58 | | - <version>5.4.0</version> |
| 61 | + <version>5.14.2</version> |
59 | 62 | <scope>test</scope> |
60 | 63 | </dependency> |
| 64 | + <dependency> |
| 65 | + <groupId>com.github.spotbugs</groupId> |
| 66 | + <artifactId>spotbugs-annotations</artifactId> |
| 67 | + <version>4.8.6</version> |
| 68 | + <scope>compile</scope> |
| 69 | + </dependency> |
61 | 70 | </dependencies> |
62 | 71 | <build> |
63 | 72 | <plugins> |
64 | 73 | <plugin> |
65 | 74 | <groupId>org.apache.maven.plugins</groupId> |
66 | 75 | <artifactId>maven-compiler-plugin</artifactId> |
67 | | - <version>3.11.0</version> |
| 76 | + <version>3.13.0</version> |
68 | 77 | <configuration> |
69 | 78 | <source>1.8</source> |
70 | 79 | <target>1.8</target> |
|
76 | 85 | <plugin> |
77 | 86 | <groupId>org.apache.maven.plugins</groupId> |
78 | 87 | <artifactId>maven-source-plugin</artifactId> |
79 | | - <version>3.3.0</version> |
| 88 | + <version>3.3.1</version> |
80 | 89 | <executions> |
81 | 90 | <execution> |
82 | 91 | <id>attach-sources</id> |
|
89 | 98 | <plugin> |
90 | 99 | <groupId>org.apache.maven.plugins</groupId> |
91 | 100 | <artifactId>maven-javadoc-plugin</artifactId> |
92 | | - <version>3.5.0</version> |
| 101 | + <version>3.11.1</version> |
93 | 102 | <executions> |
94 | 103 | <execution> |
95 | 104 | <id>attach-javadocs</id> |
|
101 | 110 | </plugin> |
102 | 111 | <plugin> |
103 | 112 | <artifactId>maven-checkstyle-plugin</artifactId> |
104 | | - <version>3.3.0</version> |
| 113 | + <version>3.6.0</version> |
105 | 114 | <configuration> |
106 | 115 | <configLocation>${basedir}/config/checkstyle/checkstyle.xml</configLocation> |
107 | 116 | <consoleOutput>true</consoleOutput> |
|
121 | 130 | </executions> |
122 | 131 | </plugin> |
123 | 132 | <plugin> |
124 | | - <groupId>org.codehaus.mojo</groupId> |
125 | | - <artifactId>findbugs-maven-plugin</artifactId> |
126 | | - <version>3.0.5</version> |
| 133 | + <groupId>com.github.spotbugs</groupId> |
| 134 | + <artifactId>spotbugs-maven-plugin</artifactId> |
| 135 | + <version>4.8.6.5</version> |
127 | 136 | <configuration> |
128 | 137 | <effort>Max</effort> |
129 | 138 | <threshold>Low</threshold> |
|
143 | 152 | <plugin> |
144 | 153 | <groupId>org.jacoco</groupId> |
145 | 154 | <artifactId>jacoco-maven-plugin</artifactId> |
146 | | - <version>0.8.10</version> |
| 155 | + <version>0.8.12</version> |
147 | 156 | <executions> |
148 | 157 | <execution> |
149 | 158 | <id>prepare-agent</id> |
|
160 | 169 | </execution> |
161 | 170 | </executions> |
162 | 171 | </plugin> |
| 172 | + <plugin> |
| 173 | + <groupId>org.apache.maven.plugins</groupId> |
| 174 | + <artifactId>maven-dependency-plugin</artifactId> |
| 175 | + <version>3.8.1</version> |
| 176 | + <executions> |
| 177 | + <execution> |
| 178 | + <goals> |
| 179 | + <goal>properties</goal> |
| 180 | + </goals> |
| 181 | + </execution> |
| 182 | + </executions> |
| 183 | + </plugin> |
| 184 | + <plugin> |
| 185 | + <groupId>org.apache.maven.plugins</groupId> |
| 186 | + <artifactId>maven-surefire-plugin</artifactId> |
| 187 | + <version>3.5.2</version> |
| 188 | + <configuration> |
| 189 | + <argLine>@{argLine} -javaagent:${org.mockito:mockito-core:jar}</argLine> |
| 190 | + </configuration> |
| 191 | + </plugin> |
163 | 192 | </plugins> |
164 | 193 | </build> |
165 | 194 |
|
|
171 | 200 | <plugin> |
172 | 201 | <groupId>org.apache.maven.plugins</groupId> |
173 | 202 | <artifactId>maven-gpg-plugin</artifactId> |
174 | | - <version>3.1.0</version> |
| 203 | + <version>3.2.7</version> |
175 | 204 | <executions> |
176 | 205 | <execution> |
177 | 206 | <id>sign-artifacts</id> |
|
0 commit comments