rempl-aspects
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.rempl</groupId>
<artifactId>rempl-aspects</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: pom.xml 1734 2011-08-03 05:25:29Z 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>
<!--
@todo #40! When <skip> option will work we can uncomment this
<parent>
<groupId>com.rempl</groupId>
<artifactId>rempl</artifactId>
<version>1.1.1</version>
</parent>
-->
<groupId>com.rempl</groupId>
<artifactId>rempl-aspects</artifactId>
<packaging>jar</packaging>
<name>rempl-aspects</name>
<version>1.1.3</version> <!-- REMPL-VERSION -->
<description>
<![CDATA[
AspectJ Aspects
]]>
</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-aspects</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>
<!-- We need this dependency in this module no matter what -->
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.6.10</version>
<!-- <scope>runtime</scope> -->
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version> <!-- 28 Feb 2011 -->
<scope>runtime</scope>
</dependency>
</dependencies>
<build>
<extensions>
<extension>
<groupId>org.cyclopsgroup</groupId>
<artifactId>awss3-maven-wagon</artifactId>
<version>0.1</version>
</extension>
</extensions>
<plugins>
<plugin>
<!--
It's a temporary measure, since the module is not
inheriting from parent. When it becomes a legal child
of com.rempl:rempl we should remove this plugin from here,
and delete the assembly file.
-->
<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>
<!--
It's a temporary measure, since the module is not
inheriting from parent.
-->
<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>
<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! The following option doesn't work. As soon as it works
we can continue.
@see http://jira.codehaus.org/browse/MASPECTJ-98
<noImportError>true</noImportError>
-->
</configuration>
<executions>
<execution>
<id>compile-aspects</id>
<phase>process-sources</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<profiles>
<!--
@todo #28! <skip> option doesn't work yet. As soon
as it works we can continue.
@see http://jira.codehaus.org/browse/MASPECTJ-96
<profile>
<id>aspectj</id>
<activation>
<property><name>aj</name></property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<executions>
<execution>
<id>weave-classes</id>
<configuration>
<skip>true</skip>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
-->
<profile>
<id>static-analysis</id>
<activation>
<property><name>ci</name></property>
</activation>
<build>
<plugins>
<plugin>
<!--
Ignore auto-generated classes.
-->
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<configuration>
<check>
<haltOnFailure>false</haltOnFailure>
</check>
</configuration>
</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>