jstachio-spring-webflux-example
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.jstach</groupId> <artifactId>jstachio-spring-webflux-example</artifactId> <version>1.3.7</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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.jstach</groupId> <artifactId>jstachio-opt-parent</artifactId> <version>1.3.7</version> </parent> <artifactId>jstachio-spring-webflux-example</artifactId> <url>${jstachio.website.doc}</url> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-webflux</artifactId> </dependency> <dependency> <groupId>io.jstach</groupId> <artifactId>jstachio-jmustache</artifactId> </dependency> <dependency> <groupId>io.jstach</groupId> <artifactId>jstachio-spring-webflux</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <configuration> <annotationProcessorPaths> <annotationProcessorPath> <groupId>io.jstach</groupId> <artifactId>jstachio-apt</artifactId> <version>${project.version}</version> </annotationProcessorPath> </annotationProcessorPaths> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <linksource>true</linksource> </configuration> </plugin> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>