aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorAndy Clement <aclement@pivotal.io>2019-01-23 12:28:35 -0800
committerAndy Clement <aclement@pivotal.io>2019-01-23 12:28:35 -0800
commit6245346ab0fe0f19db977c86389e31517ed068ec (patch)
tree7487d1248777170b1bdaf505282cd78a4a354278 /pom.xml
parent02337b3edca74530cd523f099915757a29a4fcdb (diff)
downloadaspectj-6245346ab0fe0f19db977c86389e31517ed068ec.tar.gz
aspectj-6245346ab0fe0f19db977c86389e31517ed068ec.zip
mavenized util module
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml54
1 files changed, 54 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 000000000..35ca85e24
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,54 @@
+<?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/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+
+ <groupId>org.aspectj</groupId>
+ <artifactId>aspectj-parent</artifactId>
+ <packaging>pom</packaging>
+ <version>${revision}</version>
+ <name>AspectJ Parent Project</name>
+
+ <properties>
+ <revision>1.9.3.BUILD-SNAPSHOT</revision>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
+
+ <modules>
+ <module>util</module>
+ <module>bcel</module>
+ </modules>
+
+ <build>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.8</source>
+ <target>1.8</target>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <configuration>
+ <testFailureIgnore>true</testFailureIgnore>
+ </configuration>
+ </plugin>
+ </plugins>
+ </pluginManagement>
+ </build>
+
+ <dependencies>
+ <dependency>
+ <groupId>junit</groupId>
+ <artifactId>junit</artifactId>
+ <version>3.8.1</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+
+</project>