fastboot-aop
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.stylesmile</groupId>
<artifactId>fastboot-aop</artifactId>
<version>2.12.1</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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>io.github.stylesmile</groupId>
<artifactId>fastboot-aop</artifactId>
<version>${fastboot.version}</version>
<packaging>jar</packaging>
<name>fastboot-aop</name>
<description>aop fastboot</description>
<url>https://github.com/stylesmile/fastboot</url>
<parent>
<groupId>io.github.stylesmile</groupId>
<artifactId>fastboot-parent</artifactId>
<version>2.12.1</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<dependencies>
<!-- aop -->
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.9.7</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.14.0</version>
<configuration>
<parameters>true</parameters>
<complianceLevel>1.8</complianceLevel>
<source>1.8</source>
<target>1.8</target>
<showWeaveInfo>true</showWeaveInfo>
<verbose>true</verbose>
<Xlint>ignore</Xlint>
<encoding>UTF-8 </encoding>
</configuration>
<executions>
<execution>
<!-- <phase>process-sources</phase>-->
<goals>
<!-- use this goal to weave all your main classes -->
<goal>compile</goal>
<!-- use this goal to weave all your test classes -->
<goal>test-compile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>