AspectJ weaver.
The AspectJ weaver introduces advices to java classes.
Here is the list of declaration for aspectjweaver. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> <version>1.7.4</version> </dependency>
If you think this Maven repository POM file listing for aspectjweaver is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Eclipse Public License - v 1.0
URL: http://www.eclipse.org/legal/epl-v10.html.
The following table lists the most popular artifacts which are depending on aspectjweaver-1.7.4. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Spring | spring-aop 3.2.11.RELEASE Spring AOP | 7 |
Spring | spring-context 3.2.12.RELEASE Spring Context | 5 |
Spring | spring-aop 3.2.10.RELEASE Spring AOP | 6 |
Spring | spring-context 3.2.11.RELEASE Spring Context | 14 |
Spring | spring-aop 3.2.8.RELEASE Spring AOP | 31 |
Spring | spring-context 3.2.10.RELEASE Spring Context | 8 |
Spring | spring-retry 1.1.1.RELEASE Spring Retry provides an abstraction around retrying failed operations, with an emphasis on declarative control of the process and policy-based bahaviour that is easy to extend and customize. For instance, you can configure a plain POJO operation to retry if it fails, based on the type of exceptio... | 6 |
Spring | spring-context 4.0.4.RELEASE Spring Context | 7 |
Spring | spring-aop 4.0.5.RELEASE Spring AOP | 30 |
Spring | spring-core 3.2.11.RELEASE Spring Core | 11 |
Spring | spring-core 3.2.8.RELEASE Spring Core | 52 |
Spring | spring-core 3.2.12.RELEASE Spring Core | 9 |
Spring | spring-aop 4.0.3.RELEASE Spring AOP | 32 |
Spring | spring-test 3.2.9.RELEASE Spring TestContext Framework | 7 |
Spring | spring-core 3.2.13.RELEASE Spring Core | 12 |
Spring | spring-aop 3.2.9.RELEASE Spring AOP | 12 |
Spring | spring-aop 4.0.1.RELEASE Spring AOP | 6 |
Spring | spring-context 3.2.9.RELEASE Spring Context | 15 |
Spring | spring-core 3.2.9.RELEASE Spring Core | 17 |
Spring | spring-core 3.2.10.RELEASE Spring Core | 13 |
Spring | spring-context 3.2.13.RELEASE Spring Context | 7 |
Spring | spring-aop 3.2.13.RELEASE Spring AOP | 5 |
Spring | spring-retry 1.1.0.RELEASE Spring Retry provides an abstraction around retrying failed operations, with an emphasis on declarative control of the process and policy-based bahaviour that is easy to extend and customize. For instance, you can configure a plain POJO operation to retry if it fails, based on the type of exceptio... | 10 |
Spring | spring-core 4.0.3.RELEASE Spring Core | 20 |
Spring | spring-core 4.0.5.RELEASE Spring Core | 26 |
Spring | spring-core 4.0.4.RELEASE Spring Core | 11 |
Spring | spring-test 3.2.8.RELEASE Spring TestContext Framework | 37 |
Spring | spring-core 4.0.1.RELEASE Spring Core | 15 |
Spring | spring-test 4.0.3.RELEASE Spring TestContext Framework | 8 |
Spring | spring-context 3.2.8.RELEASE Spring Context | 58 |
Spring | spring-core 4.0.2.RELEASE Spring Core | 30 |
Spring | spring-context 4.0.1.RELEASE Spring Context | 11 |
Spring | spring-context 4.0.5.RELEASE Spring Context | 39 |
Spring | spring-test 4.0.2.RELEASE Spring TestContext Framework | 15 |
Spring | spring-context 4.0.3.RELEASE Spring Context | 47 |
The following packages are defined in the aspectjweaver-1.7.4.jar
aj.org.objectweb.asm aj.org.objectweb.asm.signature org.aspectj.apache.bcel org.aspectj.apache.bcel.classfile org.aspectj.apache.bcel.classfile.annotation org.aspectj.apache.bcel.generic org.aspectj.apache.bcel.util org.aspectj.asm org.aspectj.asm.internal org.aspectj.bridge org.aspectj.bridge.context org.aspectj.internal.lang.annotation org.aspectj.internal.lang.reflect org.aspectj.lang org.aspectj.lang.annotation org.aspectj.lang.annotation.control org.aspectj.lang.internal.lang org.aspectj.lang.reflect org.aspectj.runtime org.aspectj.runtime.internal org.aspectj.runtime.internal.cflowstack org.aspectj.runtime.reflect org.aspectj.util org.aspectj.weaver org.aspectj.weaver.ast org.aspectj.weaver.bcel org.aspectj.weaver.bcel.asm org.aspectj.weaver.internal.tools org.aspectj.weaver.loadtime org.aspectj.weaver.loadtime.definition org.aspectj.weaver.ltw org.aspectj.weaver.model org.aspectj.weaver.patterns org.aspectj.weaver.reflect org.aspectj.weaver.tools org.aspectj.weaver.tools.cache
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"> <modelVersion>4.0.0</modelVersion> <groupId>org.aspectj</groupId> <artifactId>aspectjweaver</artifactId> <packaging>jar</packaging> <version>1.7.4</version> <name>AspectJ weaver</name> <description>The AspectJ weaver introduces advices to java classes</description> <url>http://www.aspectj.org</url> <licenses> <license> <name>Eclipse Public License - v 1.0</name> <url>http://www.eclipse.org/legal/epl-v10.html</url> <distribution>repo</distribution> </license> </licenses> <scm> <url>http://dev.eclipse.org/viewcvs/index.cgi/org.aspectj/?root=Tools_Project</url> </scm> </project>