Maven Repository - POM file for AOP wadi-aop 2.0-M10 2.0-M10

Summary

WADI :: AOP.

WADI AOP.

Declaration

Here is the list of declaration for wadi-aop. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.codehaus.wadi</groupId>
   <artifactId>wadi-aop</artifactId>
   <version>2.0-M10</version>
</dependency>

If you think this Maven repository POM file listing for wadi-aop is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Plugin

The following plugins are used in the wadi-aop-2.0-M10.jar

  1. aspectj-maven-plugin
  2. maven-jar-plugin




POM File Source

Here is the content of the POM file.

<?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/maven-v4_0_0.xsd">
  
  <parent>
    <groupId>org.codehaus.wadi</groupId>
    <artifactId>wadi</artifactId>
    <relativePath>pom.xml</relativePath>
    <version>2.0-M10</version>
  </parent>
  
  <modelVersion>4.0.0</modelVersion>
  <artifactId>wadi-aop</artifactId>
  <packaging>jar</packaging>
  <name>WADI :: AOP</name>
  <description>WADI AOP</description>
  
  <dependencies>
    <dependency>
      <groupId>org.codehaus.wadi</groupId>
      <artifactId>wadi-core</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>aspectj</groupId>
      <artifactId>aspectjrt</artifactId>
      <version>1.5.2a</version>
    </dependency>
    <dependency>
      <groupId>cglib</groupId>
      <artifactId>cglib-nodep</artifactId>
      <version>2.1_3</version>
    </dependency>
  </dependencies>
  
  <build>
    <plugins>
      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>aspectj-maven-plugin</artifactId>
        <executions>
          <execution>
            <configuration>
              <complianceLevel>1.5</complianceLevel>
              <source>1.5</source>
              <target>1.5</target>
            </configuration>
            <goals>
              <goal>compile</goal>
              <goal>test-compile</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <executions>
          <execution>
            <goals>
              <goal>test-jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>
</project>