maven-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.hedgecode.maven</groupId> <artifactId>maven-parent</artifactId> <version>3</version> </dependency>
<?xml version='1.0' encoding='UTF-8'?> <!-- ~ Copyright (c) 2015-2020. Developed by Hedgecode. ~ ~ 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. --> <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>org.hedgecode.maven</groupId> <artifactId>maven-parent</artifactId> <version>3</version> <packaging>pom</packaging> <name>Hedgecode Maven Parent POM</name> <description> Baseline project object model (POM) configuration for Hedgecode projects managed by Maven. </description> <inceptionYear>2015</inceptionYear> <url>https://maven.hedgecode.org/</url> <organization> <name>Hedgecode</name> <url>https://hedgecode.org/</url> </organization> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>Some components may be released under the Hedgecode License.</comments> </license> </licenses> <developers> <developer> <id>gotty</id> <name>Dmitry Samoshin</name> <email>gotty@hedgecode.org</email> <url>https://samoshin.ru/</url> <organization>Hedgecode</organization> <organizationUrl>https://hedgecode.org/</organizationUrl> <roles> <role>architect</role> <role>developer</role> </roles> <timezone>Europe/Moscow</timezone> <properties> <picUrl>https://samoshin.ru/img/avatar.png</picUrl> </properties> </developer> </developers> <scm> <connection>scm:svn:http://svn.hedgecode.org/maven/pom/trunk/</connection> <developerConnection>scm:svn:https://svn.hedgecode.org/maven/pom/trunk/</developerConnection> <url>http://svn.hedgecode.org/maven/pom/trunk/</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <mavenReleasePluginVersion>2.5.3</mavenReleasePluginVersion> <mavenDeployPluginVersion>2.8.2</mavenDeployPluginVersion> <mavenSourcePluginVersion>2.4</mavenSourcePluginVersion> <mavenJavaDocPluginVersion>2.10.3</mavenJavaDocPluginVersion> <mavenGpgPluginVersion>1.6</mavenGpgPluginVersion> </properties> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>${mavenReleasePluginVersion}</version> <configuration> <useReleaseProfiles>true</useReleaseProfiles> <releaseProfiles>hedgecode-release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <version>${mavenDeployPluginVersion}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${mavenSourcePluginVersion}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${mavenJavaDocPluginVersion}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${mavenGpgPluginVersion}</version> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>hedgecode-repository</id> <distributionManagement> <repository> <id>hedgecode.releases.http</id> <name>Hedgecode Releases Repository</name> <url>https://repo.hedgecode.org/content/repositories/releases/</url> </repository> <snapshotRepository> <id>hedgecode.snapshots.http</id> <name>Hedgecode Snapshots Repository</name> <url>https://repo.hedgecode.org/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <repositories> <repository> <id>hedgecode</id> <name>Hedgecode Repository</name> <url>https://repo.hedgecode.org/content/groups/public</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> </repositories> <pluginRepositories> <pluginRepository> <id>hedgecode</id> <name>Hedgecode Repository</name> <url>https://repo.hedgecode.org/content/groups/public</url> <releases> <enabled>true</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </pluginRepository> </pluginRepositories> </profile> <profile> <id>hedgecode-release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <inherited>true</inherited> <configuration> <updateReleaseInfo>true</updateReleaseInfo> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <executions> <execution> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>