qute-spring-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.snemeis</groupId> <artifactId>qute-spring-boot-starter</artifactId> <version>0.1.10</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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>net.snemeis</groupId> <artifactId>qute-spring-boot-starter</artifactId> <version>0.1.10</version> <name>Qute Spring Boot Starter</name> <description>Starter of the Quarkus Qute templating engine for Spring Boot</description> <url>https://github.com/anosim114/qute-spring-boot-starter</url> <scm> <url>https://github.com/anosim114/qute-spring-boot-starter</url> </scm> <developers> <developer> <id>anosim114</id> <url>https://github.com/anosim114/qute-spring-boot-starter</url> </developer> </developers> <licenses> <license> <name>BSD 2-Clause License</name> <url>https://opensource.org/licenses/BSD-2-Clause</url> <distribution>repo</distribution> </license> </licenses> <properties> <java.version>21</java.version> <maven.compiler.source>21</maven.compiler.source> <maven.compiler.target>21</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <version.qute>3.23.0</version.qute> <version.slf4j>2.0.17</version.slf4j> <version.spring>3.5.0</version.spring> <version.lombok>1.18.38</version.lombok> <version.commons>2.19.0</version.commons> <version.centralPlugin>0.7.0</version.centralPlugin> <version.mavenGpgPlugin>3.2.7</version.mavenGpgPlugin> <version.mavenSourcePlugin>3.3.1</version.mavenSourcePlugin> <version.mavenJavadocPlugin>3.11.2</version.mavenJavadocPlugin> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure-processor</artifactId> <version>${version.spring}</version> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- Qute dependency--> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-qute</artifactId> <version>${version.qute}</version> <exclusions> <exclusion> <groupId>io.quarkus</groupId> <artifactId>quarkus-arc</artifactId> </exclusion> <exclusion> <groupId>io.quarkus</groupId> <artifactId>quarkus-core</artifactId> </exclusion> </exclusions> </dependency> <!-- Spring dependency--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>${version.spring}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <version>${version.spring}</version> </dependency> <!-- Others --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${version.lombok}</version> <scope>compile</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${version.commons}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${version.slf4j}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>${version.centralPlugin}</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${version.mavenGpgPlugin}</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${version.mavenSourcePlugin}</version> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${version.mavenJavadocPlugin}</version> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <annotationProcessorPaths> <path> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${version.lombok}</version> </path> <path> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure-processor</artifactId> </path> </annotationProcessorPaths> </configuration> </plugin> </plugins> </build> </project>