| <?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/maven-v4_0_0.xsd"> |
| <modelVersion>4.0.0</modelVersion> |
| |
| <parent> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>felix-parent</artifactId> |
| <version>6</version> |
| <relativePath /> |
| </parent> |
| |
| <artifactId>org.apache.felix.healthcheck.generalchecks</artifactId> |
| <version>2.0.7-SNAPSHOT</version> |
| |
| <name>Apache Felix Health Check General Checks</name> |
| <inceptionYear>2013</inceptionYear> |
| |
| <description> |
| General purpose health checks that can be simply configured to check for generic aspects like disk space, started bundles, remote service availability, etc. |
| </description> |
| |
| <properties> |
| <felix.java.version>8</felix.java.version> |
| </properties> |
| |
| <scm> |
| <connection>scm:git:https://github.com/apache/felix-dev.git</connection> |
| <developerConnection>scm:git:https://github.com/apache/felix-dev.git</developerConnection> |
| <url>https://gitbox.apache.org/repos/asf?p=felix-dev.git</url> |
| <tag>HEAD</tag> |
| </scm> |
| |
| <build> |
| <plugins> |
| <!-- see https://github.com/apache/felix/tree/trunk/tools/osgicheck-maven-plugin --> |
| <plugin> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>osgicheck-maven-plugin</artifactId> |
| <version>0.1.0</version> |
| <executions> |
| <execution> |
| <id>check-bundle</id> |
| <goals> |
| <goal>check</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| |
| <plugin> |
| <groupId>biz.aQute.bnd</groupId> |
| <artifactId>bnd-maven-plugin</artifactId> |
| <version>4.1.0</version> |
| <executions> |
| <execution> |
| <goals> |
| <goal>bnd-process</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-jar-plugin</artifactId> |
| <configuration> |
| <archive> |
| <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> |
| </archive> |
| </configuration> |
| </plugin> |
| <plugin> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>maven-bundle-plugin</artifactId> |
| <version>4.1.0</version> |
| <executions> |
| <execution> |
| <id>baseline</id> |
| <goals> |
| <goal>baseline</goal> |
| </goals> |
| </execution> |
| </executions> |
| </plugin> |
| </plugins> |
| |
| <pluginManagement> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.maven.plugins</groupId> |
| <artifactId>maven-javadoc-plugin</artifactId> |
| <configuration> |
| <additionalDependencies> |
| <!-- explicitly require cmpn v7 for javadoc --> |
| <additionalDependency> |
| <groupId>org.osgi</groupId> |
| <artifactId>osgi.cmpn</artifactId> |
| <version>7.0.0</version> |
| </additionalDependency> |
| </additionalDependencies> |
| </configuration> |
| </plugin> |
| </plugins> |
| </pluginManagement> |
| </build> |
| |
| <dependencies> |
| <dependency> |
| <groupId>org.osgi</groupId> |
| <artifactId>osgi.core</artifactId> |
| <version>6.0.0</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.osgi</groupId> |
| <artifactId>osgi.cmpn</artifactId> |
| <version>6.0.0</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.osgi</groupId> |
| <artifactId>osgi.annotation</artifactId> |
| <version>6.0.1</version> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>org.apache.felix.healthcheck.api</artifactId> |
| <version>2.0.0</version> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>org.apache.felix.healthcheck.annotation</artifactId> |
| <version>2.0.0</version> |
| <scope>provided</scope> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>org.apache.felix.rootcause</artifactId> |
| <version>0.1.0</version> |
| </dependency> |
| |
| <dependency> |
| <groupId>org.slf4j</groupId> |
| <artifactId>slf4j-api</artifactId> |
| <version>1.7.6</version> |
| <scope>provided</scope> |
| </dependency> |
| |
| <!-- START provided via ConditionalPackage --> |
| <dependency> |
| <groupId>commons-cli</groupId> |
| <artifactId>commons-cli</artifactId> |
| <version>1.4</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>org.apache.felix.utils</artifactId> |
| <version>1.11.0</version> |
| <scope>provided</scope> |
| </dependency> |
| <!-- only to be able to use org.apache.felix.hc.core.impl.util.StringUtils for commons lang replacement --> |
| <dependency> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>org.apache.felix.healthcheck.core</artifactId> |
| <version>2.0.8</version> |
| <scope>provided</scope> |
| </dependency> |
| <!-- END provided via ConditionalPackage --> |
| |
| <!-- START test scope dependencies --> |
| <dependency> |
| <groupId>junit</groupId> |
| <artifactId>junit</artifactId> |
| <version>4.12</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.mockito</groupId> |
| <artifactId>mockito-core</artifactId> |
| <version>1.9.5</version> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.codehaus.groovy</groupId> |
| <artifactId>groovy-all</artifactId> |
| <version>2.4.13</version> |
| <scope>test</scope> |
| </dependency> |
| <!-- END test scope dependencies --> |
| |
| </dependencies> |
| </project> |