diff options
author | Andy Clement <aclement@pivotal.io> | 2019-01-23 19:45:07 -0800 |
---|---|---|
committer | Andy Clement <aclement@pivotal.io> | 2019-01-23 19:45:07 -0800 |
commit | a303931ebcf72494bdb75395b350ff640a0ff1f3 (patch) | |
tree | 2e0346be1fda535f80f603aa4214784e704952e9 /testing-client/pom.xml | |
parent | 44f6584f48c77f58ad80115bff0dd637831df939 (diff) | |
download | aspectj-a303931ebcf72494bdb75395b350ff640a0ff1f3.tar.gz aspectj-a303931ebcf72494bdb75395b350ff640a0ff1f3.zip |
mavenizing testing-client module - wip
Diffstat (limited to 'testing-client/pom.xml')
-rw-r--r-- | testing-client/pom.xml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/testing-client/pom.xml b/testing-client/pom.xml new file mode 100644 index 000000000..80b7201e3 --- /dev/null +++ b/testing-client/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>testing-client</artifactId> + <packaging>jar</packaging> + <name>testing-client</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> |