diff options
author | Andy Clement <aclement@pivotal.io> | 2019-01-23 13:02:59 -0800 |
---|---|---|
committer | Andy Clement <aclement@pivotal.io> | 2019-01-23 13:02:59 -0800 |
commit | 68e9bc60f98ece8557eb6499326644a956d2dcf9 (patch) | |
tree | dba0b1f8968cc7a92de527890ed2d20a71448208 /bridge/pom.xml | |
parent | 6245346ab0fe0f19db977c86389e31517ed068ec (diff) | |
download | aspectj-68e9bc60f98ece8557eb6499326644a956d2dcf9.tar.gz aspectj-68e9bc60f98ece8557eb6499326644a956d2dcf9.zip |
mavenized bridge module
Diffstat (limited to 'bridge/pom.xml')
-rw-r--r-- | bridge/pom.xml | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/bridge/pom.xml b/bridge/pom.xml new file mode 100644 index 000000000..03ddca049 --- /dev/null +++ b/bridge/pom.xml @@ -0,0 +1,25 @@ +<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>bridge</artifactId> + <packaging>jar</packaging> + <name>bridge</name> + + <dependencies> + <dependency> + <groupId>org.aspectj</groupId> + <artifactId>util</artifactId> + <version>${project.version}</version> + </dependency> + </dependencies> + +</project> |