|
2 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
3 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
4 | 4 | <modelVersion>4.0.0</modelVersion>
|
5 |
| - <!-- |
6 | 5 | <parent>
|
7 | 6 | <groupId>io.oasp.java.dev</groupId>
|
8 | 7 | <artifactId>oasp4j</artifactId>
|
9 | 8 | <version>dev-SNAPSHOT</version>
|
10 | 9 | </parent>
|
11 |
| - --> |
12 | 10 | <groupId>io.oasp.java</groupId>
|
13 | 11 | <artifactId>oasp4j-bom</artifactId>
|
14 |
| - <version>1.1.0-SNAPSHOT</version> |
| 12 | + <version>${oasp4j.version}</version> |
15 | 13 | <packaging>pom</packaging>
|
16 | 14 | <name>${project.artifactId}</name>
|
17 | 15 | <description>Dependencies (BOM) of the Open Application Standard Platform for Java (OASP4J) based on spring boot.</description>
|
|
24 | 22 | <cxf.version>3.0.4</cxf.version>
|
25 | 23 | <spring.version>4.0.9.RELEASE</spring.version>
|
26 | 24 | < oasp.gpg.keyname> [email protected]</ oasp.gpg.keyname>
|
| 25 | + <oasp.flatten.mode>bom</oasp.flatten.mode> |
27 | 26 | </properties>
|
28 | 27 |
|
29 | 28 | <dependencyManagement>
|
|
273 | 272 | </dependencies>
|
274 | 273 | </dependencyManagement>
|
275 | 274 |
|
276 |
| - <distributionManagement> |
277 |
| - <repository> |
278 |
| - <id>oasp.releases</id> |
279 |
| - <name>OASP Releases</name> |
280 |
| - <url>http://oasp-ci.cloudapp.net/nexus/content/repositories/releases/</url> |
281 |
| - </repository> |
282 |
| - <snapshotRepository> |
283 |
| - <id>oasp.snapshots</id> |
284 |
| - <name>OASP Snapshots</name> |
285 |
| - <url>http://oasp-ci.cloudapp.net/nexus/content/repositories/snapshots/</url> |
286 |
| - </snapshotRepository> |
287 |
| - <site> |
288 |
| - <id>oasp-site</id> |
289 |
| - <url>file://${user.dir}/target/oasp4j/maven</url> |
290 |
| - </site> |
291 |
| - </distributionManagement> |
292 |
| - |
293 |
| - <profiles> |
294 |
| - <profile> |
295 |
| - <id>deploy</id> |
296 |
| - <build> |
297 |
| - <plugins> |
298 |
| - <!-- http://mojo.codehaus.org/flatten-maven-plugin/ --> |
299 |
| - <plugin> |
300 |
| - <groupId>org.codehaus.mojo</groupId> |
301 |
| - <artifactId>flatten-maven-plugin</artifactId> |
302 |
| - <version>1.0.0-beta-3</version> |
303 |
| - <configuration> |
304 |
| - <flattenMode>oss</flattenMode> |
305 |
| - </configuration> |
306 |
| - <executions> |
307 |
| - <execution> |
308 |
| - <id>flatten</id> |
309 |
| - <phase>process-test-resources</phase> |
310 |
| - <goals> |
311 |
| - <goal>flatten</goal> |
312 |
| - </goals> |
313 |
| - </execution> |
314 |
| - <execution> |
315 |
| - <id>flatten.clean</id> |
316 |
| - <phase>clean</phase> |
317 |
| - <goals> |
318 |
| - <goal>clean</goal> |
319 |
| - </goals> |
320 |
| - </execution> |
321 |
| - </executions> |
322 |
| - </plugin> |
323 |
| - <!-- also generate javadoc JARs --> |
324 |
| - <plugin> |
325 |
| - <groupId>org.apache.maven.plugins</groupId> |
326 |
| - <artifactId>maven-javadoc-plugin</artifactId> |
327 |
| - <executions> |
328 |
| - <execution> |
329 |
| - <id>attach-javadocs</id> |
330 |
| - <goals> |
331 |
| - <goal>jar</goal> |
332 |
| - </goals> |
333 |
| - </execution> |
334 |
| - </executions> |
335 |
| - </plugin> |
336 |
| - <!-- Sign artifacts with PGP --> |
337 |
| - <plugin> |
338 |
| - <groupId>org.apache.maven.plugins</groupId> |
339 |
| - <artifactId>maven-gpg-plugin</artifactId> |
340 |
| - <configuration> |
341 |
| - <keyname>${oasp.gpg.keyname}</keyname> |
342 |
| - </configuration> |
343 |
| - <executions> |
344 |
| - <execution> |
345 |
| - <id>sign-artifacts</id> |
346 |
| - <phase>verify</phase> |
347 |
| - <goals> |
348 |
| - <goal>sign</goal> |
349 |
| - </goals> |
350 |
| - </execution> |
351 |
| - </executions> |
352 |
| - </plugin> |
353 |
| - </plugins> |
354 |
| - </build> |
355 |
| - <distributionManagement> |
356 |
| - <snapshotRepository> |
357 |
| - <id>ossrh</id> |
358 |
| - <url>https://oss.sonatype.org/content/repositories/snapshots</url> |
359 |
| - </snapshotRepository> |
360 |
| - <repository> |
361 |
| - <id>ossrh</id> |
362 |
| - <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> |
363 |
| - </repository> |
364 |
| - </distributionManagement> |
365 |
| - </profile> |
366 |
| - </profiles> |
367 |
| - |
368 | 275 | </project>
|
0 commit comments