| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one or more |
| contributor license agreements. See the NOTICE file distributed with |
| this work for additional information regarding copyright ownership. |
| The ASF licenses this file to You under the Apache License, Version 2.0 |
| (the "License"); you may not use this file except in compliance with |
| the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, software |
| distributed under the License is distributed on an "AS IS" BASIS, |
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| See the License for the specific language governing permissions and |
| limitations under the License. |
| --> |
| <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.apache</groupId> |
| <artifactId>apache</artifactId> |
| <version>20</version> |
| </parent> |
| |
| <groupId>org.apache.geronimo</groupId> |
| <artifactId>geronimo-microprofile</artifactId> |
| <version>1.0.2</version> |
| <name>Geronimo Microprofile</name> |
| <packaging>pom</packaging> |
| <description> |
| Apache Geronimo aggregator for Microprofile Specification |
| </description> |
| |
| <properties> |
| <meecrowave.version>1.2.7</meecrowave.version> |
| |
| <microprofile-config-api.version>1.3</microprofile-config-api.version> |
| <geronimo-config.version>1.2.2</geronimo-config.version> |
| </properties> |
| |
| <modules> |
| <module>geronimo-microprofile-aggregator</module> |
| <module>utilda</module> |
| <module>geronimo-microprofile-site</module> |
| <module>geronimo-microprofile-reporter</module> |
| <module>microprofile-extensions</module> |
| </modules> |
| |
| <scm> |
| <connection>scm:git:https://gitbox.apache.org/repos/asf/geronimo-microprofile.git</connection> |
| <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/geronimo-microprofile.git</developerConnection> |
| <url>https://gitbox.apache.org/repos/asf/geronimo-microprofile.git</url> |
| <tag>geronimo-microprofile-1.0.2</tag> |
| </scm> |
| |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-compiler-plugin</artifactId> |
| <version>3.8.0</version> |
| <configuration> |
| <source>1.8</source> |
| <target>1.8</target> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-release-plugin</artifactId> |
| <version>2.5.3</version> |
| <configuration> |
| <useReleaseProfile>false</useReleaseProfile> |
| <goals>deploy</goals> |
| <arguments>-Papache-release ${arguments}</arguments> |
| <autoVersionSubmodules>true</autoVersionSubmodules> |
| <waitBeforeTagging>2</waitBeforeTagging> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-jar-plugin</artifactId> |
| <version>3.1.0</version> |
| <configuration> |
| <archive combine.children="append"> |
| <manifestEntries> |
| <Automatic-Module-Name>${geronimo-microprofile.Automatic-Module-Name}</Automatic-Module-Name> |
| </manifestEntries> |
| </archive> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| |
| <organization> |
| <name>The Apache Software Foundation</name> |
| <url>http://www.apache.org/</url> |
| </organization> |
| |
| <inceptionYear>2018</inceptionYear> |
| |
| <licenses> |
| <license> |
| <name>Apache License, Version 2.0</name> |
| <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> |
| <distribution>repo</distribution> |
| </license> |
| </licenses> |
| |
| <developers> |
| <developer> |
| <name>Apache Geronimo Community</name> |
| <url>https://geronimo.apache.org</url> |
| <organization>Apache</organization> |
| </developer> |
| </developers> |
| |
| <issueManagement> |
| <system>ASF JIRA</system> |
| <url>https://issues.apache.org/jira/browse/GERONIMO</url> |
| </issueManagement> |
| |
| <repositories> |
| <repository> |
| <id>apache.snapshots</id> |
| <url>https://repository.apache.org/content/repositories/snapshots/</url> |
| <snapshots> |
| <enabled>true</enabled> |
| </snapshots> |
| <releases> |
| <enabled>false</enabled> |
| </releases> |
| </repository> |
| </repositories> |
| <pluginRepositories> |
| <pluginRepository> |
| <id>apache.snapshots</id> |
| <url>https://repository.apache.org/content/repositories/snapshots/</url> |
| <snapshots> |
| <enabled>true</enabled> |
| </snapshots> |
| <releases> |
| <enabled>false</enabled> |
| </releases> |
| </pluginRepository> |
| </pluginRepositories> |
| </project> |