|
44 | 44 |
|
45 | 45 | <distributionManagement> |
46 | 46 | <repository> |
47 | | - <id>oss.sonatype.org</id> |
48 | | - <name>OSS Maven2 Repository</name> |
49 | | - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url> |
| 47 | + <id>sonatype-cp</id> |
| 48 | + <name>Central Portal</name> |
| 49 | + <url>https://repo.maven.apache.org/maven2</url> |
50 | 50 | </repository> |
51 | 51 | <snapshotRepository> |
52 | | - <id>oss.sonatype.org</id> |
53 | | - <name>OSS Maven2 Snapshot Repository</name> |
54 | | - <url>https://oss.sonatype.org/content/repositories/jetty-snapshots</url> |
| 52 | + <id>sonatype-cp</id> |
| 53 | + <name>Central Portal</name> |
| 54 | + <url>https://central.sonatype.com/repository/maven-snapshots</url> |
55 | 55 | </snapshotRepository> |
56 | 56 | </distributionManagement> |
57 | 57 |
|
58 | 58 | <properties> |
59 | 59 | <jetty-version>10.0.25</jetty-version> |
| 60 | + <njord.autoPublish>true</njord.autoPublish> |
| 61 | + <njord.version>0.8.3</njord.version> |
60 | 62 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
61 | 63 | <reactivestreams-version>1.0.4</reactivestreams-version> |
62 | 64 | <rxjava-version>3.1.11</rxjava-version> |
|
80 | 82 | <artifactId>slf4j-api</artifactId> |
81 | 83 | <version>${slf4j-version}</version> |
82 | 84 | </dependency> |
| 85 | + |
83 | 86 | <dependency> |
84 | 87 | <groupId>io.reactivex.rxjava3</groupId> |
85 | 88 | <artifactId>rxjava</artifactId> |
|
128 | 131 | <version>5.13.4</version> |
129 | 132 | <scope>test</scope> |
130 | 133 | </dependency> |
131 | | - |
132 | 134 | <dependency> |
133 | 135 | <groupId>org.reactivestreams</groupId> |
134 | 136 | <artifactId>reactive-streams-tck</artifactId> |
|
143 | 145 | </dependency> |
144 | 146 | </dependencies> |
145 | 147 |
|
146 | | - <repositories> |
147 | | - <repository> |
148 | | - <releases> |
149 | | - <enabled>true</enabled> |
150 | | - </releases> |
151 | | - <snapshots> |
152 | | - <enabled>false</enabled> |
153 | | - </snapshots> |
154 | | - <id>jetty-staging</id> |
155 | | - <url>https://oss.sonatype.org/content/groups/jetty-with-staging</url> |
156 | | - </repository> |
157 | | - </repositories> |
158 | | - <pluginRepositories> |
159 | | - <pluginRepository> |
160 | | - <releases> |
161 | | - <enabled>true</enabled> |
162 | | - </releases> |
163 | | - <snapshots> |
164 | | - <enabled>false</enabled> |
165 | | - </snapshots> |
166 | | - <id>jetty-staging</id> |
167 | | - <url>https://oss.sonatype.org/content/groups/jetty-with-staging</url> |
168 | | - </pluginRepository> |
169 | | - </pluginRepositories> |
170 | | - |
171 | 148 | <build> |
172 | | - |
173 | 149 | <pluginManagement> |
174 | 150 | <plugins> |
175 | 151 | <plugin> |
|
182 | 158 | <artifactId>license-maven-plugin</artifactId> |
183 | 159 | <version>5.0.0</version> |
184 | 160 | </plugin> |
| 161 | + <plugin> |
| 162 | + <groupId>eu.maveniverse.maven.plugins</groupId> |
| 163 | + <artifactId>njord</artifactId> |
| 164 | + <version>${njord.version}</version> |
| 165 | + </plugin> |
185 | 166 | <plugin> |
186 | 167 | <groupId>org.apache.felix</groupId> |
187 | 168 | <artifactId>maven-bundle-plugin</artifactId> |
|
269 | 250 | <plugin> |
270 | 251 | <artifactId>maven-surefire-plugin</artifactId> |
271 | 252 | <version>3.5.3</version> |
| 253 | + <configuration> |
| 254 | + <excludedGroups>external</excludedGroups> |
| 255 | + </configuration> |
272 | 256 | </plugin> |
273 | 257 | <plugin> |
274 | 258 | <groupId>org.jacoco</groupId> |
|
277 | 261 | </plugin> |
278 | 262 | </plugins> |
279 | 263 | </pluginManagement> |
| 264 | + |
280 | 265 | <plugins> |
281 | 266 | <plugin> |
282 | 267 | <groupId>com.diffplug.spotless</groupId> |
|
316 | 301 | <groupId>com.mycila</groupId> |
317 | 302 | <artifactId>license-maven-plugin</artifactId> |
318 | 303 | <configuration> |
319 | | - <header>copyright-header.txt</header> |
| 304 | + <licenseSets> |
| 305 | + <licenseSet> |
| 306 | + <header>copyright-header.txt</header> |
| 307 | + <includes> |
| 308 | + <include>**/*.java</include> |
| 309 | + </includes> |
| 310 | + </licenseSet> |
| 311 | + </licenseSets> |
320 | 312 | <failIfMissing>true</failIfMissing> |
321 | 313 | <strictCheck>true</strictCheck> |
322 | 314 | <properties> |
|
325 | 317 | <mapping> |
326 | 318 | <java>SLASHSTAR_STYLE</java> |
327 | 319 | </mapping> |
328 | | - <includes> |
329 | | - <include>**/*.java</include> |
330 | | - </includes> |
331 | 320 | </configuration> |
332 | 321 | <executions> |
333 | 322 | <execution> |
|
391 | 380 | </executions> |
392 | 381 | </plugin> |
393 | 382 | </plugins> |
| 383 | + <extensions> |
| 384 | + <extension> |
| 385 | + <groupId>eu.maveniverse.maven.njord</groupId> |
| 386 | + <artifactId>extension3</artifactId> |
| 387 | + <version>${njord.version}</version> |
| 388 | + </extension> |
| 389 | + </extensions> |
394 | 390 | </build> |
395 | 391 |
|
396 | 392 | <profiles> |
|
0 commit comments