123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- <?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>
- <parent>
- <groupId>io.avaje</groupId>
- <artifactId>avaje-jex-parent</artifactId>
- <version>3.2</version>
- </parent>
- <groupId>benchmark</groupId>
- <artifactId>avaje-jex</artifactId>
- <version>1.0</version>
- <properties>
- <maven.compiler.release>24</maven.compiler.release>
- <slf4j.version>2.0.17</slf4j.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>io.avaje</groupId>
- <artifactId>avaje-config</artifactId>
- </dependency>
- <dependency>
- <groupId>io.avaje</groupId>
- <artifactId>avaje-http-api</artifactId>
- </dependency>
- <dependency>
- <groupId>io.avaje</groupId>
- <artifactId>avaje-inject</artifactId>
- </dependency>
- <dependency>
- <groupId>io.avaje</groupId>
- <artifactId>avaje-jex</artifactId>
- </dependency>
- <dependency>
- <groupId>io.avaje</groupId>
- <artifactId>avaje-jsonb</artifactId>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>${slf4j.version}</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-simple</artifactId>
- <version>${slf4j.version}</version>
- </dependency>
- <dependency>
- <groupId>com.zaxxer</groupId>
- <artifactId>HikariCP</artifactId>
- <version>6.3.0</version>
- </dependency>
- <dependency>
- <groupId>org.postgresql</groupId>
- <artifactId>postgresql</artifactId>
- <version>42.7.7</version>
- </dependency>
- <dependency>
- <groupId>io.jstach</groupId>
- <artifactId>jstachio</artifactId>
- <version>1.3.7</version>
- </dependency>
-
- <!-- Annotation Processors -->
- <dependency>
- <groupId>io.jstach</groupId>
- <artifactId>jstachio-apt</artifactId>
- <version>1.3.7</version>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>io.avaje</groupId>
- <artifactId>avaje-http-jex-generator</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>io.avaje</groupId>
- <artifactId>avaje-inject-generator</artifactId>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>io.avaje</groupId>
- <artifactId>avaje-jsonb-generator</artifactId>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>io.avaje</groupId>
- <artifactId>avaje-provides-maven-plugin</artifactId>
- <version>2.3</version>
- </plugin>
-
- <plugin>
- <groupId>com.spotify.fmt</groupId>
- <artifactId>fmt-maven-plugin</artifactId>
- <version>2.25</version>
- <executions>
- <execution>
- <goals>
- <goal>format</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <!-- Create Modular Jar and copy dependencies -->
- <plugin>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <outputDirectory>${project.build.directory}/modules</outputDirectory>
- <archive>
- <manifest>
- <mainClass>benchmark.Main</mainClass>
- </manifest>
- </archive>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-dependency-plugin</artifactId>
- <executions>
- <execution>
- <id>copy-modules</id>
- <phase>package</phase>
- <goals>
- <goal>copy-dependencies</goal>
- </goals>
- <configuration>
- <outputDirectory>${project.build.directory}/modules</outputDirectory>
- <includeScope>runtime</includeScope>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- <profiles>
- <profile>
- <id>robaho</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <dependencies>
- <dependency>
- <groupId>io.github.robaho</groupId>
- <artifactId>httpserver</artifactId>
- </dependency>
- </dependencies>
- </profile>
- <profile>
- <id>jetty</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <dependencies>
- <dependency>
- <groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-http-spi</artifactId>
- <version>12.0.19</version>
- </dependency>
- </dependencies>
- </profile>
- </profiles>
- </project>
|