MVN

nz.co.senanque : madura-addressbook

Maven & Gradle

Apr 15, 2015

MaduraAddressbook · This is a demo program that illustrates some of the capabilities of Madura working with Vaadin. Specifically it shows the use of the JPAontainer. The JPAContainer shown here is extended from the one you can find in Vaadin Addons to support Spring's @Transactional notation. It is also using Madura Objects, but that is an interesting incidental because you could use Madura Objects with both. So the objective here is to show a complete working demo of how to configure everything to show a table of data fetched from a database using JPA, including popup edit forms.

<dependency>
    <groupId>nz.co.senanque</groupId>
    <artifactId>madura-addressbook</artifactId>
    <version>1.2.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of nz.co.senanque : madura-addressbook to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.2.1

All Versions

Choose a version of nz.co.senanque : madura-addressbook to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.2.x
madura-addressbook-1.2.1

How to add a dependency to Maven

Add the following nz.co.senanque : madura-addressbook maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>nz.co.senanque</groupId>
    <artifactId>madura-addressbook</artifactId>
    <version>1.2.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following nz.co.senanque : madura-addressbook gradle dependency to your build.gradle file:

implementation 'nz.co.senanque:madura-addressbook:1.2.1'

Gradle Kotlin DSL: Add the following nz.co.senanque : madura-addressbook gradle kotlin dependency to your build.gradle.kts file:

implementation("nz.co.senanque:madura-addressbook:1.2.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following nz.co.senanque : madura-addressbook sbt scala dependency to your build.sbt file:

libraryDependencies += "nz.co.senanque" % "madura-addressbook" % "1.2.1"