November 2018
Intermediate to advanced
388 pages
9h 5m
English
Let's create a Maven project to demonstrate what it takes to write a point-to-point messaging model.
We need to add the following dependencies to the project. We will use Kotlin and a few other dependencies such as the GlassFish Message Queue (glassfishmq) library and weld-se-core library to initialize the container:
<dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>${kotlin.version}</version> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-test-junit</artifactId> <version>${kotlin.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.glassfish.main.appclient</groupId> <artifactId>gf-client</artifactId> ...Read now
Unlock full access