|
82 | 82 |
|
83 | 83 | </dependencies> |
84 | 84 |
|
| 85 | + <distributionManagement> |
| 86 | + <snapshotRepository> |
| 87 | + <id>ossrh</id> |
| 88 | + <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
| 89 | + </snapshotRepository> |
| 90 | + <repository> |
| 91 | + <id>ossrh</id> |
| 92 | + <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
| 93 | + </repository> |
| 94 | + </distributionManagement> |
| 95 | + |
85 | 96 | <build> |
86 | 97 | <plugins> |
| 98 | + <plugin> |
| 99 | + <groupId>org.sonatype.central</groupId> |
| 100 | + <artifactId>central-publishing-maven-plugin</artifactId> |
| 101 | + <version>0.8.0</version> |
| 102 | + <extensions>true</extensions> |
| 103 | + <configuration> |
| 104 | + <publishingServerId>central</publishingServerId> |
| 105 | + </configuration> |
| 106 | + </plugin> |
| 107 | + |
87 | 108 | <plugin> |
88 | 109 | <groupId>org.jacoco</groupId> |
89 | 110 | <artifactId>jacoco-maven-plugin</artifactId> |
|
113 | 134 | <executions> |
114 | 135 | <execution> |
115 | 136 | <goals> |
116 | | - <goal>validate</goal> |
117 | | - </goals> |
| 137 | + <goal>validate</goal> |
| 138 | + </goals> |
118 | 139 | <phase>validate</phase> |
119 | 140 | </execution> |
120 | 141 | </executions> |
|
123 | 144 | <plugin> |
124 | 145 | <groupId>org.apache.maven.plugins</groupId> |
125 | 146 | <artifactId>maven-compiler-plugin</artifactId> |
126 | | - <version>3.13.0</version> |
| 147 | + <version>3.14.0</version> |
127 | 148 | <configuration> |
128 | | - <source>11</source> |
129 | | - <target>11</target> |
| 149 | + <source>17</source> |
| 150 | + <target>17</target> |
130 | 151 | <parameters>true</parameters> |
131 | 152 | </configuration> |
132 | 153 | </plugin> |
|
149 | 170 | <plugin> |
150 | 171 | <groupId>org.apache.maven.plugins</groupId> |
151 | 172 | <artifactId>maven-surefire-plugin</artifactId> |
152 | | - <version>3.2.5</version> |
| 173 | + <version>3.5.3</version> |
153 | 174 | <configuration> |
154 | 175 | <includes> |
155 | 176 | <include>**/*Test.java</include> |
|
177 | 198 | <plugin> |
178 | 199 | <groupId>org.apache.maven.plugins</groupId> |
179 | 200 | <artifactId>maven-javadoc-plugin</artifactId> |
180 | | - <version>3.11.1</version> |
| 201 | + <version>3.11.3</version> |
181 | 202 | <configuration> |
182 | 203 | <additionalOptions>-Xdoclint:none</additionalOptions> |
183 | 204 | </configuration> |
|
209 | 230 | </licenseSet> |
210 | 231 | </licenseSets> |
211 | 232 | <properties> |
212 | | - |
213 | | - <year>${project.inceptionYear}</year> |
214 | | - <currentYear>2022</currentYear> |
215 | | - |
| 233 | + <year>${project.inceptionYear}</year> |
| 234 | + <currentYear>2022</currentYear> |
216 | 235 | </properties> |
217 | 236 | <strictCheck>true</strictCheck> |
218 | 237 | </configuration> |
|
238 | 257 | <groupId>org.apache.maven.plugins</groupId> |
239 | 258 | <artifactId>maven-surefire-plugin</artifactId> |
240 | 259 | <configuration> |
241 | | - <!-- Do not exclude stress tests when profile 'stress' is active --> |
242 | 260 | <excludes/> |
243 | 261 | </configuration> |
244 | 262 | </plugin> |
|
0 commit comments