rempl-tk
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.rempl</groupId>
<artifactId>rempl-tk</artifactId>
<version>1.1.3</version>
</dependency><?xml version="1.0"?>
<!--
*
* Copyright (c) 2011, REMPL.com
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1) Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2) Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* 3) Neither the name of the REMPL.com nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
* NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
* THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*
* @version $Id: build.xml 30 2010-12-15 08:08:32Z yegor256@yahoo.com $
*
-->
<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>com.rempl</groupId>
<artifactId>rempl-tk</artifactId>
<version>1.1.3</version> <!-- REMPL-VERSION -->
<packaging>jar</packaging>
<name>rempl-tk</name>
<description>
<![CDATA[
ToolKit, that includes supplementary resources and instruments
for build automation. Also this module includes AspectJ aspects
shared among all other modules.
]]>
</description>
<url>http://www.rempl.com</url>
<licenses>
<license>
<name>BSD</name>
<url>http://www.rempl.com/LICENSE.txt</url>
<distribution>repo</distribution>
<comments>
<![CDATA[
This is free open source project, feel free to redistribute it
]]>
</comments>
</license>
</licenses>
<distributionManagement>
<downloadUrl>https://oss.sonatype.org/content/groups/public</downloadUrl>
<repository>
<uniqueVersion>false</uniqueVersion>
<id>sonatype.nexus</id>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
</repository>
<snapshotRepository>
<uniqueVersion>false</uniqueVersion>
<id>sonatype.nexus</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<site>
<id>rempl.s3</id>
<url>s3://www.rempl.com/rempl-tk</url>
</site>
</distributionManagement>
<scm>
<connection>scm:svn:svn://svn.rempl.com/rempl/trunk/rempl</connection>
<developerConnection>scm:svn:svn://svn.rempl.com/rempl/trunk/rempl</developerConnection>
<url>http://svn.rempl.com/rempl/trunk/rempl</url>
</scm>
<developers>
<developer>
<id>1</id>
<name>Yegor Bugayenko</name>
<email>yegor@rempl.com</email>
<organization>REMPL.com</organization>
<organizationUrl>http://www.rempl.com</organizationUrl>
<roles>
<role>Architect</role>
<role>Developer</role>
</roles>
<timezone>+1</timezone>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jdk.version>1.6</jdk.version>
</properties>
<dependencies>
<dependency>
<groupId>commons-lang</groupId>
<artifactId>commons-lang</artifactId>
<version>2.5</version> <!-- 15 Oct 2010 -->
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.0.1</version> <!-- 7 Mar 2011 -->
</dependency>
<dependency>
<groupId>checkstyle</groupId>
<artifactId>checkstyle</artifactId>
<version>5.0</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.7</version> <!-- 10 Sep 2010 -->
<scope>test</scope>
</dependency>
<dependency>
<!--
ANTLR3 Parser/Lexer
@link http://www.antlr.org/
-->
<groupId>org.antlr</groupId>
<artifactId>antlr-runtime</artifactId>
<version>3.3</version>
</dependency>
</dependencies>
<build>
<extensions>
<extension>
<groupId>org.cyclopsgroup</groupId>
<artifactId>awss3-maven-wagon</artifactId>
<version>0.1</version>
</extension>
</extensions>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<descriptors>
<descriptor>src/main/resources/assemblies/rempl-sources.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version> <!-- 2 June 2011 -->
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<!--
We're disabling site-deployment of this artifact. There
is no ability to SKIP site-deployment now, and this
defect is reported: MSITE-541
@see http://jira.codehaus.org/browse/MSITE-541
-->
<artifactId>maven-site-plugin</artifactId>
<version>3.0-beta-3</version> <!-- 28 Dec 2010 -->
</plugin>
<plugin>
<!--
Starts unit tests, protocols their results and creates
a summary report. It is required to send testing protocol
to the STDOUT as well, not only to the file.
-->
<artifactId>maven-surefire-plugin</artifactId>
<version>2.5</version> <!-- 1 Oct 2010 -->
<configuration>
<useFile>false</useFile>
</configuration>
</plugin>
<plugin>
<!--
Convert ANTLR lexers/grammar to Java classes.
-->
<groupId>org.antlr</groupId>
<artifactId>antlr3-maven-plugin</artifactId>
<version>3.1.3-1</version> <!-- 27 Dec 2010 -->
<executions>
<execution>
<id>antlr</id>
<goals>
<goal>antlr</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<!--
Disable it here at all.
-->
<artifactId>maven-pmd-plugin</artifactId>
<version>2.5</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<profile>
<!--
Weave aspectJ aspects with classes using the AspectJ ajc compiler.
-->
<id>aspectj</id>
<activation>
<property><name>aj</name></property>
</activation>
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.6.10</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>com.rempl</groupId>
<artifactId>rempl-aspects</artifactId>
<version>1.1.3</version> <!-- REMPL-VERSION -->
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.3.1</version>
<configuration>
<complianceLevel>${jdk.version}</complianceLevel>
<encoding>${project.build.sourceEncoding}</encoding>
<showWeaveInfo>true</showWeaveInfo>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
<verbose>true</verbose>
<!--
@todo #28 As soon as we resolve the problems in rempl-aspects module
it has to be enabled here
-->
<aspectLibraries>
<aspectLibrary>
<groupId>com.rempl</groupId>
<artifactId>rempl-aspects</artifactId>
</aspectLibrary>
</aspectLibraries>
</configuration>
<executions>
<execution>
<id>weave-classes</id>
<!-- @todo #40: When tests migrate from assertTrue
assertFalse to assertThat, we can remove
package phase and uncomment process-classes
as well as process-test-classes below
-->
<!-- <phase>process-classes</phase> -->
<phase>package</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>weave-test-classes</id>
<!-- <phase>process-classes</phase> -->
<phase>package</phase>
<goals>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.6.10</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</profile>
<profile>
<!--
Sign artifacts before installation with GPG.
-->
<id>gpg</id>
<activation>
<property><name>gpg.keyname</name></property>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.1</version> <!-- 21 Dec 2010 -->
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>