gcf-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.mcpat.gcf</groupId>
<artifactId>gcf-parent</artifactId>
<version>0.6</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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.github.mcpat.gcf</groupId>
<artifactId>gcf-parent</artifactId>
<version>0.6</version>
<packaging>pom</packaging>
<name>Generic Connection Framework</name>
<inceptionYear>2007</inceptionYear>
<description>Generic Connection Framework for the Java Standard Edition</description>
<url>http://mcpat.github.com/gcf</url>
<prerequisites>
<maven>2.2</maven>
</prerequisites>
<developers>
<developer>
<id>marcel</id>
<name>Marcel Patzlaff</name>
<email>marcel.patzlaff@gmail.com</email>
<timezone>+1</timezone>
<roles>
<role>Developer</role>
</roles>
</developer>
</developers>
<licenses>
<license>
<name>GNU Lesser General Public License, Version 3+</name>
<url>http://www.gnu.org/licenses/lgpl-3.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<url>git://github.com/mcpat/gcf.git</url>
<connection>scm:git:git://github.com/mcpat/gcf.git</connection>
<developerConnection>scm:git:git://github.com/mcpat/gcf.git</developerConnection>
</scm>
<distributionManagement>
<repository>
<id>${release-repo-id}</id>
<name>${release-repo-id}</name>
<url>${release-repo-url}</url>
</repository>
<snapshotRepository>
<id>${snapshot-repo-id}</id>
<name>${snapshot-repo-id}</name>
<url>${snapshot-repo-url}</url>
</snapshotRepository>
</distributionManagement>
<properties>
<gcf-version>0.6</gcf-version>
<gcf-license-dir>${basedir}/target/gcf-license</gcf-license-dir>
<junit-version>3.8.1</junit-version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<modules>
<module>gcf-standard</module>
<module>gcf-comm-rxtx</module>
<module>gcf-bt-bluecove</module>
</modules>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.github.mcpat.gcf</groupId>
<artifactId>gcf-standard</artifactId>
<version>${gcf-version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit-version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.3.1</version>
</plugin>
</plugins>
</pluginManagement>
<resources>
<resource>
<directory>${basedir}/src/main/resources</directory>
<filtering>true</filtering>
</resource>
<resource>
<directory>${gcf-license-dir}</directory>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>2.4.3</version>
<executions>
<execution>
<id>copy-resources</id>
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>${gcf-license-dir}</outputDirectory>
<resources>
<resource>
<directory>${basedir}</directory>
<includes>
<include>COPYING*</include>
<include>NOTICE</include>
</includes>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1.2</version>
<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>
<version>2.7</version>
<configuration>
<links>
<link>http://download.oracle.com/javase/6/docs/api/</link>
</links>
<quiet>true</quiet>
</configuration>
<executions>
<execution>
<id>attach-javadoc</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>