Skip to content

Commit 9ccdf06

Browse files
committed
add pom for dependency graph
1 parent 0cc67a5 commit 9ccdf06

2 files changed

Lines changed: 39 additions & 1 deletion

File tree

.settings/jwebassembly-api.pom

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>de.inetsoftware</groupId>
5+
<artifactId>jwebassembly-api</artifactId>
6+
<version>0.2</version>
7+
<dependencies>
8+
<dependency>
9+
<groupId>com.google.code.findbugs</groupId>
10+
<artifactId>jsr305</artifactId>
11+
<version>3.0.2</version>
12+
<scope>compile</scope>
13+
</dependency>
14+
<dependency>
15+
<groupId>org.ow2.asm</groupId>
16+
<artifactId>asm</artifactId>
17+
<version>+</version>
18+
<scope>compile</scope>
19+
</dependency>
20+
</dependencies>
21+
<name>JWebAssembly-API</name>
22+
<description>The API for using WebAssembly features in your Java classes.</description>
23+
<url>https://github.com/i-net-software/JWebAssembly-API</url>
24+
<developers>
25+
<developer>
26+
<id>Horcrux7</id>
27+
<name>Volker Berlin</name>
28+
<email>vberlin@inetsoftware.de</email>
29+
<organization>i-net software</organization>
30+
<organizationUrl>https://www.inetsoftware.de</organizationUrl>
31+
</developer>
32+
</developers>
33+
<scm>
34+
<connection>scm:git:git@github.com:i-net-software/JWebAssembly-API.git</connection>
35+
<developerConnection>scm:git:git@github.com:i-net-software/JWebAssembly-API.git</developerConnection>
36+
<url>https://github.com/i-net-software/JWebAssembly-API</url>
37+
</scm>
38+
</project>

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repositories {
1616
}
1717

1818
dependencies {
19-
compileOnly 'com.google.code.findbugs:jsr305:3.0.1'
19+
compileOnly 'com.google.code.findbugs:jsr305:3.0.2'
2020

2121
// dependencies for the emulator
2222
compileOnly 'org.ow2.asm:asm:+'

0 commit comments

Comments
 (0)