123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project>
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>io.quarkus</groupId>
- <artifactId>benchmark</artifactId>
- <version>1.0-SNAPSHOT</version>
- </parent>
- <groupId>io.quarkus.benchmark</groupId>
- <artifactId>resteasy-reactive-hibernate</artifactId>
- <dependencies>
- <dependency>
- <groupId>io.quarkus</groupId>
- <artifactId>quarkus-benchmark-common</artifactId>
- </dependency>
- <dependency>
- <groupId>io.quarkus</groupId>
- <artifactId>quarkus-hibernate-orm</artifactId>
- </dependency>
- <dependency>
- <groupId>io.quarkus</groupId>
- <artifactId>quarkus-scheduler</artifactId>
- </dependency>
- <dependency>
- <groupId>io.quarkus</groupId>
- <artifactId>quarkus-resteasy-reactive</artifactId>
- </dependency>
- <dependency>
- <groupId>io.quarkus</groupId>
- <artifactId>quarkus-resteasy-reactive-jackson</artifactId>
- </dependency>
- <dependency>
- <groupId>io.quarkus</groupId>
- <artifactId>quarkus-jdbc-postgresql</artifactId>
- </dependency>
- <dependency>
- <groupId>io.vertx</groupId>
- <artifactId>vertx-web-templ-rocker</artifactId>
- </dependency>
- <!-- this is necessary to enable rocker to use GuavaHtmlStringify.java -->
- <dependency>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- <version>32.0.0-jre</version>
- </dependency>
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-transport-native-epoll</artifactId>
- <classifier>linux-x86_64</classifier>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>com.fizzed</groupId>
- <artifactId>rocker-maven-plugin</artifactId>
- <version>1.3.0</version>
- <executions>
- <execution>
- <id>generate-rocker-templates</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>generate</goal>
- </goals>
- <configuration>
- <templateDirectory>${project.basedir}/src/main/resources</templateDirectory>
- <optimize>true</optimize>
- <discardLogicWhitespace>true</discardLogicWhitespace>
- <markAsGenerated>false</markAsGenerated>
- </configuration>
- </execution>
- </executions>
- <dependencies>
- <!-- this is necessary to enable rocker to use GuavaHtmlStringify.java -->
- <dependency>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- <version>32.0.0-jre</version>
- </dependency>
- </dependencies>
- </plugin>
- </plugins>
- </build>
- </project>
|