table-layout-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>info.clearthought</groupId>
<artifactId>table-layout-parent</artifactId>
<version>1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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>info.clearthought</groupId>
<artifactId>table-layout-parent</artifactId>
<version>1</version>
<packaging>pom</packaging>
<name>TableLayout Parent POM</name>
<description>The parent pom for table-layout projects</description>
<url>https://github.com/nerro/table-layout-parent</url>
<inceptionYear>2014</inceptionYear>
<licenses>
<license>
<name>The Clearthought Software License, Version 2.0</name>
<distribution>repo</distribution>
</license>
</licenses>
<!-- Sonatype REQUIRES developer section -->
<developers>
<developer>
<id>nerro</id>
<name>Pavel Sorokin</name>
<email>pavel.sorokin@nerro.eu</email>
<url>https://nerro.eu</url>
<roles>
<role>developer</role>
<role>maintainer</role>
</roles>
</developer>
</developers>
<scm>
<url>https://github.com/nerro/table-layout-parent</url>
<connection>scm:git:git@github.com:nerro/table-layout-parent</connection>
</scm>
<issueManagement>
<system>GitHub Issue Management</system>
<url>https://github.com/nerro/${project.artifactId}/issued</url>
</issueManagement>
<distributionManagement>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.build.resourceEncoding>UTF-8</project.build.resourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<!-- Use java 7 as default baseline -->
<project.sourceCompatibility>1.7</project.sourceCompatibility>
<project.targetCompatibility>1.7</project.targetCompatibility>
<!--
| Plugin versions
-->
<version.maven.clean.plugin>2.6</version.maven.clean.plugin>
<version.maven.compiler.plugin>3.1</version.maven.compiler.plugin>
<version.maven.deploy.plugin>2.8.2</version.maven.deploy.plugin>
<version.maven.gpg.plugin>1.5</version.maven.gpg.plugin>
<version.maven.jar.plugin>2.5</version.maven.jar.plugin>
<version.maven.javadoc.plugin>2.9.1</version.maven.javadoc.plugin>
<version.maven.install.plugin>2.5.2</version.maven.install.plugin>
<version.maven.resources.plugin>2.7</version.maven.resources.plugin>
<version.maven.site.plugin>3.4</version.maven.site.plugin>
<version.maven.source.plugin>2.3</version.maven.source.plugin>
<version.maven.surefire.plugin>2.17</version.maven.surefire.plugin>
</properties>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-clean-plugin</artifactId>
<version>${version.maven.clean.plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${version.maven.compiler.plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${version.maven.deploy.plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>${version.maven.gpg.plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>${version.maven.jar.plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>${version.maven.javadoc.plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>${version.maven.install.plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${version.maven.resources.plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>${version.maven.site.plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>${version.maven.source.plugin}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${version.maven.surefire.plugin}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${project.sourceCompatibility}</source>
<target>${project.targetCompatibility}</target>
<compilerArgument>-Xlint:unchecked</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<parallel>classes</parallel>
<reuseForks>true</reuseForks>
<useUnlimitedThreads>true</useUnlimitedThreads>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>release</id>
<build>
<plugins>
<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>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>