MVN

de.codecamp.vaadin : vaadin-service-ref

Maven & Gradle

Mar 09, 2023

Serializable Service References for Vaadin Flow · This Vaadin Flow add-on allows dependency injection of services into Vaadin components without preventing session serialization.

<dependency>
    <groupId>de.codecamp.vaadin</groupId>
    <artifactId>vaadin-service-ref</artifactId>
    <version>1.0.0</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of de.codecamp.vaadin : vaadin-service-ref to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.0

All Versions

Choose a version of de.codecamp.vaadin : vaadin-service-ref to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
vaadin-service-ref-1.0.0
0.7.x
vaadin-service-ref-0.7.1
vaadin-service-ref-0.7.0
0.6.x
vaadin-service-ref-0.6.0

How to add a dependency to Maven

Add the following de.codecamp.vaadin : vaadin-service-ref maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>de.codecamp.vaadin</groupId>
    <artifactId>vaadin-service-ref</artifactId>
    <version>1.0.0</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following de.codecamp.vaadin : vaadin-service-ref gradle dependency to your build.gradle file:

implementation 'de.codecamp.vaadin:vaadin-service-ref:1.0.0'

Gradle Kotlin DSL: Add the following de.codecamp.vaadin : vaadin-service-ref gradle kotlin dependency to your build.gradle.kts file:

implementation("de.codecamp.vaadin:vaadin-service-ref:1.0.0")

How to add a dependency to SBT Scala

SBT Scala: Add the following de.codecamp.vaadin : vaadin-service-ref sbt scala dependency to your build.sbt file:

libraryDependencies += "de.codecamp.vaadin" % "vaadin-service-ref" % "1.0.0"