Skip to content

Instantly share code, notes, and snippets.

@lofidewanto
Last active October 27, 2020 22:45
Show Gist options
  • Save lofidewanto/ea61b4569e1b4b68440e88feacb4ee1d to your computer and use it in GitHub Desktop.
Save lofidewanto/ea61b4569e1b4b68440e88feacb4ee1d to your computer and use it in GitHub Desktop.
IndexedDB with Java Patterns - GWT Boot pom.xml
<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>
<parent>
<!-- Using gwt-boot-starter-parent -->
<groupId>com.github.gwtboot</groupId>
<artifactId>gwt-boot-starter-parent</artifactId>
<version>1.0.0-SNAPSHOT</version>
<relativePath />
</parent>
<groupId>com.github.gwt.jsinterop.example</groupId>
<artifactId>indexeddb-elemental2-dagger2-example</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>indexeddb-elemental2-dagger2-example</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<junit.version>5.7.0</junit.version>
</properties>
<dependencies>
<!-- GWT Starters -->
<dependency>
<groupId>com.github.gwtboot</groupId>
<artifactId>gwt-boot-starter-dagger2</artifactId>
</dependency>
<dependency>
<groupId>com.github.gwtboot</groupId>
<artifactId>gwt-boot-starter-elemento-core</artifactId>
</dependency>
<dependency>
<groupId>com.google.elemental2</groupId>
<artifactId>elemental2-indexeddb</artifactId>
<version>1.1.0</version>
</dependency>
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment