123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- <?xml version="1.0" encoding="UTF-8"?>
- <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" xml:space="preserve">
- <!-- Copyright 2018-2024 Steinar Bang -->
- <!-- -->
- <!-- Licensed 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. -->
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>no.priv.bang.pom</groupId>
- <artifactId>bang-pom</artifactId>
- <version>2.0.5</version>
- </parent>
- <groupId>no.priv.bang.osgiservice</groupId>
- <artifactId>osgiservice-parent</artifactId>
- <version>2.0.1-SNAPSHOT</version>
- <packaging>pom</packaging>
- <name>OSGi service definitions</name>
- <description>Defines OSGi services exposed by DS components.</description>
- <modules>
- <module>osgiservice</module>
- <module>jacoco-coverage-report</module>
- <module>osgiservice-bom</module>
- </modules>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <beans.version>1.2.0</beans.version>
- <sonar.coverage.jacoco.xmlReportPaths>${project.basedir}/../../jacoco-coverage-report/target/site/jacoco-aggregate/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.eluder.coveralls</groupId>
- <artifactId>coveralls-maven-plugin</artifactId>
- <configuration>
- <jacocoReports>
- <jacocoReport>${project.basedir}/jacoco-coverage-report/target/site/jacoco-aggregate/jacoco.xml</jacocoReport>
- </jacocoReports>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-release-plugin</artifactId>
- <configuration>
- <releaseProfiles>release-sign-artifact</releaseProfiles>
- <tagNameFormat>osgiservice-@{project.version}</tagNameFormat>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.sonatype.plugins</groupId>
- <artifactId>nexus-staging-maven-plugin</artifactId>
- </plugin>
- </plugins>
- <extensions>
- <extension>
- <groupId>org.apache.maven.wagon</groupId>
- <artifactId>wagon-ftp</artifactId>
- <version>1.0-beta-6</version>
- </extension>
- </extensions>
- </build>
- <distributionManagement>
- <snapshotRepository>
- <id>ossrh</id>
- <url>https://oss.sonatype.org/content/repositories/snapshots</url>
- </snapshotRepository>
- <repository>
- <id>ossrh</id>
- <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
- </repository>
- </distributionManagement>
- <licenses>
- <license>
- <name>Apache License version 2</name>
- <url>http://www.apache.org/licenses/LICENSE-2.0</url>
- </license>
- </licenses>
- <developers>
- <developer>
- <name>Steinar Bang</name>
- <email>sb@dod.no</email>
- <url>https://steinar.bang.priv.no/</url>
- <organization>steinarb-github</organization>
- <organizationUrl>https://github.com/steinarb</organizationUrl>
- </developer>
- </developers>
- <scm>
- <url>https://github.com/steinarb/osgi-service</url>
- <connection>scm:git:https://github.com/steinarb/osgi-service.git</connection>
- <tag>HEAD</tag>
- </scm>
- <issueManagement>
- <url>https://github.com/steinarb/osgi-service/issues</url>
- <system>Github issue tracker</system>
- </issueManagement>
- <ciManagement>
- <url>https://travis-ci.org/steinarb/osgi-service</url>
- <system>travis-ci</system>
- </ciManagement>
- <url>http://steinarb.github.io/osgi-service/</url>
- <profiles>
- <profile>
- <id>release-sign-artifact</id>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-gpg-plugin</artifactId>
- <version>1.6</version>
- <executions>
- <execution>
- <id>sign-artifacts</id>
- <phase>verify</phase>
- <goals>
- <goal>sign</goal>
- </goals>
- <configuration>
- <gpgArguments>
- <arg>--pinentry-mode</arg>
- <arg>loopback</arg>
- </gpgArguments>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
- </project>
|