vaadin-security-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>de.codecamp.vaadin</groupId>
<artifactId>vaadin-security-spring-boot-starter</artifactId>
<version>4.0.3</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-security-spring-boot-starter</artifactId>
<version>4.0.3</version>
<name>Spring Boot Security for Vaadin</name>
<description>Security for Vaadin applications based on Spring Boot Security</description>
<url>https://gitlab.com/codecamp-de/vaadin-spring-security</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>
<hilla.version>2.0.0</hilla.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-spring-security</url>
<connection>scm:git:https://gitlab.com/codecamp-de/vaadin-spring-security.git</connection>
<developerConnection>scm:git:https://gitlab.com/codecamp-de/vaadin-spring-security.git</developerConnection>
</scm>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</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>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-spring-boot-starter</artifactId>
<exclusions>
<!-- prevent jakarta.websocket from being available through multiple dependencies -->
<exclusion>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-dev</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>dev.hilla</groupId>
<artifactId>hilla</artifactId>
<optional>true</optional>
<exclusions>
<!-- prevent jakarta.websocket from being available through multiple dependencies -->
<exclusion>
<groupId>dev.hilla</groupId>
<artifactId>hilla-dev</artifactId>
</exclusion>
</exclusions>
</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>dev.hilla</groupId>
<artifactId>hilla-bom</artifactId>
<version>${hilla.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>
<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.security.spring</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<profiles>
<profile>
<id>insert-next-release</id>
<build>
<plugins>
<plugin>
<groupId>io.github.floverfelt</groupId>
<artifactId>find-and-replace-maven-plugin</artifactId>
<version>1.1.0</version>
<goals>
<goal>find-and-replace</goal>
</goals>
<configuration>
<encoding>UTF-8</encoding>
<fileMask>.java</fileMask>
<recursive>true</recursive>
<replacementType>file-contents</replacementType>
<findRegex>@NEXT_RELEASE@</findRegex>
<replaceValue>${project.version}</replaceValue>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>