|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | +
|
| 4 | + Copyright (c) 2022 Oracle and/or its affiliates. |
| 5 | +
|
| 6 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 7 | + you may not use this file except in compliance with the License. |
| 8 | + You may obtain a copy of the License at |
| 9 | +
|
| 10 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | +
|
| 12 | + Unless required by applicable law or agreed to in writing, software |
| 13 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 14 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 15 | + See the License for the specific language governing permissions and |
| 16 | + limitations under the License. |
| 17 | +
|
| 18 | +--> |
| 19 | + |
| 20 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 21 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 22 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 23 | + <modelVersion>4.0.0</modelVersion> |
| 24 | + |
| 25 | + <parent> |
| 26 | + <groupId>io.helidon</groupId> |
| 27 | + <artifactId>helidon-project</artifactId> |
| 28 | + <version>4.0.0-SNAPSHOT</version> |
| 29 | + <relativePath>../pom.xml</relativePath> |
| 30 | + </parent> |
| 31 | + |
| 32 | + <groupId>io.helidon.pico</groupId> |
| 33 | + <artifactId>helidon-pico-project</artifactId> |
| 34 | + <name>Helidon Pico Project</name> |
| 35 | + |
| 36 | + <packaging>pom</packaging> |
| 37 | + |
| 38 | + <properties> |
| 39 | + <!-- all pico modules should be backward compatible with 11 --> |
| 40 | + <version.java>11</version.java> |
| 41 | + |
| 42 | + <!-- pico supports legacy javax.inject and javax.annotations in tooling --> |
| 43 | + <javax.injection.version>1</javax.injection.version> |
| 44 | + </properties> |
| 45 | + |
| 46 | + <!-- this will show the progression of what has come over, and what is left to come over --> |
| 47 | + <modules> |
| 48 | + <module>api</module> |
| 49 | +<!-- <module>spi</module>--> |
| 50 | + <module>types</module> |
| 51 | +<!-- <module>builder</module>--> |
| 52 | +<!-- <module>config</module>--> |
| 53 | +<!-- <module>pico</module>--> |
| 54 | +<!-- <module>tck</module>--> |
| 55 | +<!-- <module>tools</module>--> |
| 56 | +<!-- <module>processor</module>--> |
| 57 | +<!-- <module>maven-plugin</module>--> |
| 58 | +<!-- <module>test-support</module>--> |
| 59 | +<!-- <module>test-utils</module>--> |
| 60 | +<!-- <module>test-resources</module>--> |
| 61 | +<!-- <module>test-extended-resources</module>--> |
| 62 | +<!-- <module>test-pico</module>--> |
| 63 | +<!-- <module>test-tck-jsr330</module>--> |
| 64 | +<!-- <module>examples</module>--> |
| 65 | + </modules> |
| 66 | + |
| 67 | + <build> |
| 68 | + <pluginManagement> |
| 69 | + <plugins> |
| 70 | + <plugin> |
| 71 | + <groupId>org.apache.maven.plugins</groupId> |
| 72 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 73 | + <configuration> |
| 74 | + <!-- This module is Java 11, we must remove enable-preview from parent project --> |
| 75 | + <additionalOptions combine.self="override"/> |
| 76 | + </configuration> |
| 77 | + </plugin> |
| 78 | + </plugins> |
| 79 | + </pluginManagement> |
| 80 | + </build> |
| 81 | + |
| 82 | +</project> |
0 commit comments