summaryrefslogtreecommitdiff
path: root/cmake/elfinfo/pom.xml
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/elfinfo/pom.xml')
-rw-r--r--cmake/elfinfo/pom.xml34
1 files changed, 34 insertions, 0 deletions
diff --git a/cmake/elfinfo/pom.xml b/cmake/elfinfo/pom.xml
new file mode 100644
index 0000000..bb46e6f
--- /dev/null
+++ b/cmake/elfinfo/pom.xml
@@ -0,0 +1,34 @@
+<project>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>io.trygvis.ld</groupId>
+ <artifactId>ld</artifactId>
+ <version>1.0-SNAPSHOT</version>
+ <dependencies>
+ <dependency>
+ <groupId>org.antlr</groupId>
+ <artifactId>antlr4</artifactId>
+ <version>4.5.3</version>
+ </dependency>
+ <dependency>
+ <groupId>org.antlr</groupId>
+ <artifactId>antlr4-runtime</artifactId>
+ <version>4.5.3</version>
+ </dependency>
+ <dependency>
+ <groupId>com.google.code.findbugs</groupId>
+ <artifactId>jsr305</artifactId>
+ <version>3.0.1</version>
+ </dependency>
+ </dependencies>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <configuration>
+ <source>1.8</source>
+ <target>1.8</target>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+</project>