vaadin-service-ref
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>de.codecamp.vaadin</groupId> <artifactId>vaadin-service-ref</artifactId> <version>1.0.0</version> </dependency>
<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> <groupId>de.codecamp.vaadin</groupId> <artifactId>vaadin-service-ref</artifactId> <version>1.0.0</version> <name>Serializable Service References for Vaadin Flow</name> <description>This Vaadin Flow add-on allows dependency injection of services into Vaadin components without preventing session serialization.</description> <url>https://gitlab.com/codecamp-de/vaadin-service-ref</url> <properties> <maven.compiler.release>17</maven.compiler.release> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <vaadin.version>24.0.0</vaadin.version> <spring-boot.version>3.0.0</spring-boot.version> <maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version> <tiles-maven-plugin.version>2.32</tiles-maven-plugin.version> <m2e.apt.activation>jdt_apt</m2e.apt.activation> </properties> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <organization> <name>Patrick Schmidt</name> </organization> <developers> <developer> <name>Patrick Schmidt</name> <email>patrick@codecamp.de</email> </developer> </developers> <scm> <url>https://gitlab.com/codecamp-de/vaadin-service-ref</url> <connection>scm:git:https://gitlab.com/codecamp-de/vaadin-service-ref.git</connection> <developerConnection>scm:git:https://gitlab.com/codecamp-de/vaadin-service-ref.git</developerConnection> </scm> <dependencies> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-core</artifactId> </dependency> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-spring</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>jakarta.enterprise</groupId> <artifactId>jakarta.enterprise.cdi-api</artifactId> <version>4.0.1</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure-processor</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-bom</artifactId> <version>${vaadin.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${spring-boot.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <repositories> <repository> <id>vaadin-prereleases</id> <url>https://maven.vaadin.com/vaadin-prereleases/</url> </repository> </repositories> <build> <plugins> <plugin> <groupId>io.repaint.maven</groupId> <artifactId>tiles-maven-plugin</artifactId> <version>${tiles-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <tiles> <tile>de.codecamp.tiles:oss-vaadin-addon-build-tile:RELEASE</tile> </tiles> </configuration> </plugin> </plugins> <pluginManagement> <plugins> <!-- ECLIPSE Included for Eclipse and its lack of tiles support. --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>de.codecamp.vaadin.serviceref</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>