diff options
author | Andy Clement <aclement@pivotal.io> | 2019-01-23 19:36:37 -0800 |
---|---|---|
committer | Andy Clement <aclement@pivotal.io> | 2019-01-23 19:36:37 -0800 |
commit | d9cd0d44e8c42f06e13b033ae1cc269d3e7f7c29 (patch) | |
tree | 821258f70f7f28e3e96faa82379708a038c84128 /asm/pom.xml | |
parent | 9803f22ec4337779057f4ec2ace35f2d6483d6dd (diff) | |
download | aspectj-d9cd0d44e8c42f06e13b033ae1cc269d3e7f7c29.tar.gz aspectj-d9cd0d44e8c42f06e13b033ae1cc269d3e7f7c29.zip |
mavenizing asm module - wip
Diffstat (limited to 'asm/pom.xml')
-rw-r--r-- | asm/pom.xml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/asm/pom.xml b/asm/pom.xml new file mode 100644 index 000000000..f1068ad97 --- /dev/null +++ b/asm/pom.xml @@ -0,0 +1,30 @@ +<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> + + <parent> + <groupId>org.aspectj</groupId> + <artifactId>aspectj-parent</artifactId> + <version>1.9.3.BUILD-SNAPSHOT</version> + <relativePath>..</relativePath> + </parent> + + <artifactId>asm</artifactId> + <packaging>jar</packaging> + <name>asm</name> + + <dependencies> + <dependency> + <groupId>org.aspectj</groupId> + <artifactId>util</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.aspectj</groupId> + <artifactId>bridge</artifactId> + <version>${project.version}</version> + </dependency> + </dependencies> + +</project> |