owner-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.qubitpi.owner</groupId> <artifactId>owner-parent</artifactId> <version>1.1.17</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (c) 2012-2015, Luigi R. Viggiano ~ All rights reserved. ~ ~ This software is distributable under the BSD license. ~ See the terms of the BSD license in the documentation provided with this software. --> <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> <groupId>io.github.qubitpi.owner</groupId> <artifactId>owner-parent</artifactId> <version>1.1.17</version> <packaging>pom</packaging> <name>OWNER :: Parent</name> <url>https://matteobaccan.github.io/owner</url> <description>OWNER Parent Project</description> <modules> <module>owner</module> <module>owner-site</module> <module>owner-extras</module> <module>owner-assembly</module> </modules> <inceptionYear>2012</inceptionYear> <licenses> <license> <name>The BSD License</name> <url>https://raw.github.com/lviggiano/owner/master/LICENSE</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>luigi</id> <name>Luigi R. Viggiano</name> <email>luigi.viggiano@gmail.com</email> <url>https://github.com/lviggiano/</url> <organization>aeonbits.org</organization> <organizationUrl>https://www.aeonbits.org/</organizationUrl> <timezone>+1</timezone> <roles> <role>dev</role> </roles> </developer> <developer> <id>qubitpi</id> <name>Jiaqi Liu</name> <email>jack20220723@gmail.com</email> <url>https://qubitpi.org</url> <roles> <role>dev</role> </roles> </developer> </developers> <mailingLists> <mailingList> <name>Users and Developers List</name> <post>owner-api@googlegroups.com</post> <subscribe>owner-api+subscribe@googlegroups.com</subscribe> <unsubscribe>owner-api+unsubscribe@googlegroups.com</unsubscribe> <archive>http://groups.google.com/group/owner-api</archive> </mailingList> </mailingLists> <issueManagement> <system>GitHub Issue Tracking</system> <url>https://github.com/QubitPi/owner/issues</url> </issueManagement> <ciManagement> <system>travis</system> <url>https://travis-ci.org/lviggiano/owner/</url> </ciManagement> <scm> <developerConnection>scm:git:ssh://git@github.com/QubitPi/owner.git</developerConnection> <url>https://github.com/QubitPi/owner.git</url> <tag>HEAD</tag> </scm> <distributionManagement> <snapshotRepository> <id>ossrh</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>ossrh</id> <name>Nexus Release Repository</name> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> <site> <id>newinstance-maven-website</id> <name>NewInstance Maven Website</name> <url>ftp://newinstance.it:/public_html/owner/${project.version}/</url> </site> </distributionManagement> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <compiler-release>8</compiler-release> <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin> <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis> <sonar.language>java</sonar.language> </properties> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.4.0</version> <extensions>true</extensions> <configuration> <tokenAuth>true</tokenAuth> <autoPublish>true</autoPublish> <publishingServerId>${gpg.keyname}</publishingServerId> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</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> <keyname>${gpg.keyname}</keyname> <passphraseServerId>${gpg.keyname}</passphraseServerId> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>release-sign-artifacts</id> <activation> <property> <name>performRelease</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> <profile> <id>java9</id> <activation> <jdk>[1.9,)</jdk> </activation> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <release>${compiler-release}</release> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>java8</id> <activation> <jdk>[1.8,)</jdk> </activation> <modules> <module>owner-java8</module> <module>owner-java8-extras</module> </modules> </profile> <profile> <id>examples</id> <activation> <property> <name>!performRelease</name> </property> </activation> <modules> <module>owner-examples</module> </modules> </profile> <profile> <id>coverage</id> <build> <pluginManagement> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.12</version> <executions> <execution> <id>prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <goals> <goal>report</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> </build> </profile> </profiles> <dependencyManagement> <dependencies> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-all</artifactId> <version>1.3</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>4.11.0</version> <scope>test</scope> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>1.17.1</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.13.0</version> <configuration> <source>${compiler-release}</source> <target>${compiler-release}</target> </configuration> </plugin> <plugin> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.10.0</version> <configuration> <notimestamp>true</notimestamp> <doclint>none</doclint> <!-- Turnoff all checks --> </configuration> <executions> <execution> <id>attach-javadocs</id> <phase>package</phase> <goals> <goal>javadoc</goal> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-plugin-plugin</artifactId> <version>3.15.0</version> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>3.7.1</version> </plugin> <!-- <plugin>--> <!-- <artifactId>maven-site-plugin</artifactId>--> <!-- <version>3.20.0</version>--> <!-- <executions>--> <!-- <execution>--> <!-- <id>generate-site</id>--> <!-- <phase>deploy</phase>--> <!-- <goals>--> <!-- <goal>site</goal>--> <!-- <goal>stage</goal>--> <!-- </goals>--> <!-- </execution>--> <!-- </executions>--> <!-- </plugin>--> <plugin> <artifactId>maven-release-plugin</artifactId> <version>3.1.1</version> <configuration> <mavenExecutorId>forked-path</mavenExecutorId> </configuration> </plugin> <plugin> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> <version>4.3.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.4.2</version> <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>5.1.9</version> <extensions>true</extensions> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>3.1.0</version> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.5.0</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.4.1</version> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.7.0</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <artifactId>maven-deploy-plugin</artifactId> <version>3.1.3</version> <executions> <execution> <id>deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> </plugin> </plugins> <extensions> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-ftp</artifactId> <version>3.5.3</version> </extension> </extensions> </build> <reporting> <plugins> <plugin> <artifactId>maven-project-info-reports-plugin</artifactId> <version>3.7.0</version> </plugin> <plugin> <artifactId>maven-surefire-report-plugin</artifactId> <version>3.5.0</version> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.10.0</version> </plugin> <plugin> <artifactId>maven-pmd-plugin</artifactId> <version>3.25.0</version> <configuration> <linkXRef>true</linkXRef> <sourceEncoding>utf-8</sourceEncoding> <minimumTokens>100</minimumTokens> <targetJdk>1.7</targetJdk> </configuration> </plugin> <plugin> <artifactId>maven-jxr-plugin</artifactId> <version>3.5.0</version> </plugin> <plugin> <artifactId>maven-changelog-plugin</artifactId> <version>2.3</version> </plugin> </plugins> </reporting> </project>