asterisk-java-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.asteriskjava</groupId>
<artifactId>asterisk-java-parent</artifactId>
<version>4</version>
</dependency><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>
<groupId>org.asteriskjava</groupId>
<artifactId>asterisk-java-parent</artifactId>
<packaging>pom</packaging>
<name>Asterisk-Java Parent</name>
<version>4</version>
<description>Parent POM for Asterisk-Java projects.</description>
<url>http://asterisk-java.org/</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<organization>
<name>Stefan Reuter</name>
<url>http://asterisk-java.org/</url>
</organization>
<developers>
<developer>
<name>Stefan Reuter</name>
<id>srt</id>
<email>stefan.reuter at reucon.com</email>
<timezone>+1</timezone>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/srt/asterisk-java-parent.git</connection>
<developerConnection>scm:git:git@github.com:srt/asterisk-java-parent.git</developerConnection>
</scm>
<distributionManagement>
<repository>
<id>reucon</id>
<url>https://nexus.reucon.com/content/repositories/opensource</url>
</repository>
<snapshotRepository>
<id>reucon</id>
<url>https://nexus.reucon.com/content/repositories/opensource-snapshots</url>
</snapshotRepository>
<site>
<id>reucon</id>
<url>dav:https://maven.reucon.com/projects/public/${project.artifactId}/${project.version}</url>
</site>
</distributionManagement>
<issueManagement>
<system>JIRA</system>
<url>http://issues.reucon.com/browse/AJ</url>
</issueManagement>
<mailingLists>
<mailingList>
<name>Asterisk-Java User List</name>
<subscribe>http://lists.sourceforge.net/mailman/listinfo/asterisk-java-users</subscribe>
<unsubscribe>http://lists.sourceforge.net/mailman/listinfo/asterisk-java-users</unsubscribe>
<archive>http://sourceforge.net/mailarchive/forum.php?forum=asterisk-java-users</archive>
</mailingList>
<mailingList>
<name>Asterisk-Java Developer List</name>
<subscribe>http://lists.sourceforge.net/mailman/listinfo/asterisk-java-devel</subscribe>
<unsubscribe>http://lists.sourceforge.net/mailman/listinfo/asterisk-java-devel</unsubscribe>
<archive>http://sourceforge.net/mailarchive/forum.php?forum=asterisk-java-devel</archive>
</mailingList>
</mailingLists>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.12</version>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.2.2</version>
<configuration>
<remoteTagging>true</remoteTagging>
<preparationGoals>clean install</preparationGoals>
<autoVersionSubmodules>true</autoVersionSubmodules>
</configuration>
</plugin>
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
<extensions>
<extension>
<groupId>org.apache.maven.wagon</groupId>
<artifactId>wagon-webdav-jackrabbit</artifactId>
<version>2.2</version>
</extension>
</extensions>
</build>
<reporting>
<plugins>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jxr-plugin</artifactId>
<version>2.3</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>2.12</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changelog-plugin</artifactId>
<version>2.2</version>
</plugin>
</plugins>
</reporting>
<profiles>
<profile>
<id>release</id>
<activation>
<property>
<name>release</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.3.2</version>
<executions>
<execution>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<!-- Add to the command line:
-Dkeystore=Stefan_Reuter_Code_Signing.jks
-Dstorepass=secret
-->
<alias>Stefan_Reuter_Code_Signing</alias>
<verify>true</verify>
<!--
<keystore>Stefan_Reuter_Code_Signing.jks</keystore>
<storepass>secret</storepass>
-->
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.4</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
<configuration>
<keyname>C47292FB</keyname>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>