|
41 | 41 | <maven.compiler.target>17</maven.compiler.target> |
42 | 42 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
43 | 43 |
|
44 | | - <grpc.version>1.59.0</grpc.version> |
| 44 | + <grpc.version>1.60.1</grpc.version> |
| 45 | + <log4j.version>2.22.0</log4j.version> |
45 | 46 | <exclude-tests>IntegrationTest</exclude-tests> |
46 | 47 | </properties> |
47 | 48 |
|
48 | 49 | <dependencies> |
49 | 50 | <dependency> |
50 | 51 | <groupId>com.aserto</groupId> |
51 | 52 | <artifactId>java-authorizer</artifactId> |
52 | | - <version>0.20.7</version> |
| 53 | + <version>0.20.8</version> |
53 | 54 | </dependency> |
54 | 55 | <dependency> |
55 | 56 | <groupId>com.aserto</groupId> |
56 | 57 | <artifactId>java-directory</artifactId> |
57 | | - <version>0.30.1</version> |
| 58 | + <version>0.30.2</version> |
58 | 59 | </dependency> |
59 | 60 |
|
60 | 61 | <!-- Used for unit testing --> |
|
76 | 77 | <version>${grpc.version}</version> |
77 | 78 | <scope>test</scope> |
78 | 79 | </dependency> |
79 | | - <!-- Version 3.y.z is compatible with Java 8 --> |
| 80 | + <!-- Version 4.y.z is compatible with Java 17 --> |
80 | 81 | <dependency> |
81 | 82 | <groupId>org.mockito</groupId> |
82 | 83 | <artifactId>mockito-core</artifactId> |
83 | | - <version>3.12.4</version> |
| 84 | + <version>4.11.0</version> |
84 | 85 | <scope>test</scope> |
85 | 86 | </dependency> |
86 | 87 |
|
87 | 88 | <!-- Logging --> |
88 | 89 | <dependency> |
89 | 90 | <groupId>org.apache.logging.log4j</groupId> |
90 | 91 | <artifactId>log4j-api</artifactId> |
91 | | - <version>2.21.1</version> |
| 92 | + <version>${log4j.version}</version> |
92 | 93 | </dependency> |
93 | 94 | <dependency> |
94 | 95 | <groupId>org.apache.logging.log4j</groupId> |
95 | 96 | <artifactId>log4j-core</artifactId> |
96 | | - <version>2.21.1</version> |
| 97 | + <version>${log4j.version}</version> |
97 | 98 | </dependency> |
98 | 99 | </dependencies> |
99 | 100 |
|
|
158 | 159 | <plugin> |
159 | 160 | <groupId>org.apache.maven.plugins</groupId> |
160 | 161 | <artifactId>maven-javadoc-plugin</artifactId> |
161 | | - <version>3.6.0</version> |
| 162 | + <version>3.6.3</version> |
162 | 163 | <executions> |
163 | 164 | <execution> |
164 | 165 | <id>attach-javadocs</id> |
|
186 | 187 | <plugin> |
187 | 188 | <groupId>org.apache.maven.plugins</groupId> |
188 | 189 | <artifactId>maven-surefire-plugin</artifactId> |
189 | | - <version>3.2.2</version> |
| 190 | + <version>3.2.3</version> |
190 | 191 | <configuration> |
191 | 192 | <excludedGroups>${exclude-tests}</excludedGroups> |
192 | 193 | </configuration> |
|
0 commit comments