gitflow-test
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.marvelution.gitflow</groupId>
<artifactId>gitflow-test</artifactId>
<version>2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Licensed to Marvelution under one or more contributor license
~ agreements. See the NOTICE file distributed with this work
~ for additional information regarding copyright ownership.
~ Marvelution 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>
<groupId>com.marvelution.gitflow</groupId>
<artifactId>gitflow-test</artifactId>
<version>2</version>
<packaging>pom</packaging>
<name>GitFlow</name>
<description>Gitflwo test project</description>
<url>https://bitbucket.org/markrekveld/gitflow-test</url>
<inceptionYear>2012</inceptionYear>
<organization>
<name>Marvelution</name>
<url>http://www.marvelution.com/</url>
</organization>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@bitbucket.org:markrekveld/gitflow-test.git</connection>
<developerConnection>scm:git:git@bitbucket.org:markrekveld/gitflow-test.git</developerConnection>
<url>https://bitbucket.org/markrekveld/gitflow-test</url>
</scm>
<distributionManagement>
<repository>
<id>marvelution.releases</id>
<name>Marvelution Release Distribution Repository</name>
<url>http://repository.marvelution.com/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>marvelution.snapshots</id>
<name>Marvelution Snapshot Distribution Repository</name>
<url>http://repository.marvelution.com/content/repositories/snapshots/</url>
</snapshotRepository>
</distributionManagement>
<properties>
<project.jdk.revision>1.6</project.jdk.revision>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.2.1</version>
<!-- Referted back to 2.2.1 from 2.3.2 because profiles are not copied to the release settings file -->
<configuration>
<useReleaseProfile>false</useReleaseProfile>
<goals>deploy</goals>
<!-- Make sure the local repository used by the project executing the maven-release-plugin is also used in the forked release build -->
<arguments>-Prelease,license-header</arguments>
<mavenExecutorId>forked-path</mavenExecutorId>
<pushChanges>false</pushChanges>
<localCheckout>true</localCheckout>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<!-- Release profile; used during the release of projects -->
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<inherited>true</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<configuration>
<passphrase>${gpg.passphrase}</passphrase>
</configuration>
<executions>
<execution>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<inherited>true</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<inherited>true</inherited>
<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>
<inherited>true</inherited>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<developers>
<developer>
<id>markrekveld</id>
<name>Mark Rekveld</name>
<url>http://www.marvelution.com</url>
<organization>Marvelution</organization>
<email>markrekveld@marvelution.com</email>
<organizationUrl>http://www.marvelution.com</organizationUrl>
<timezone>+1</timezone>
<roles>
<role>Marvelution Member</role>
</roles>
</developer>
</developers>
</project>