spring-boot-qute-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>net.snemeis</groupId> <artifactId>spring-boot-qute-starter</artifactId> <version>0.0.1</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>spring-boot-qute-starter</artifactId> <version>0.0.1</version> <name>Spring Boot Qute Starter</name> <description>Starter of the Quarkus Qute templating engine for Spring Boot</description> <url>https://github.com/anosim114/spring-boot-qute-starter</url> <scm> <url>https://github.com/anosim114/spring-boot-qute-starter</url> </scm> <developers> <developer> <id>anosim114</id> <name>anosim114</name> <url>https://github.com/anosim114/spring-boot-qute-starter</url> </developer> </developers> <licenses> <license> <name>bsd-2</name> </license> </licenses> <properties> <maven.compiler.source>23</maven.compiler.source> <maven.compiler.target>23</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <!-- Qute dependency--> <dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-qute</artifactId> <version>3.12.2</version> <exclusions> <exclusion> <groupId>io.quarkus</groupId> <artifactId>quarkus-arc</artifactId> </exclusion> <exclusion> <groupId>io.quarkus</groupId> <artifactId>quarkus-core</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.17.0</version> </dependency> <!-- Spring dependency--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>3.4.0</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <version>3.4.0</version> </dependency> <!-- Code generation--> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.36</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.6</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>3.3.1</version> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <executions> <execution> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>