|
6 | 6 | <parent>
|
7 | 7 | <groupId>io.inverno.dist</groupId>
|
8 | 8 | <artifactId>inverno-parent</artifactId>
|
9 |
| - <version>1.4.1</version> |
| 9 | + <version>1.6.2</version> |
10 | 10 | </parent>
|
11 | 11 | <groupId>com.techempower</groupId>
|
12 | 12 | <artifactId>inverno-benchmark</artifactId>
|
|
17 | 17 | <description>Inverno framework benchmark test</description>
|
18 | 18 |
|
19 | 19 | <properties>
|
20 |
| - <maven.compiler.source>16</maven.compiler.source> |
21 |
| - <maven.compiler.target>16</maven.compiler.target> |
22 |
| - <maven.compiler.release>16</maven.compiler.release> |
| 20 | + <maven.compiler.source>21</maven.compiler.source> |
| 21 | + <maven.compiler.target>21</maven.compiler.target> |
| 22 | + <maven.compiler.release>21</maven.compiler.release> |
23 | 23 | </properties>
|
24 | 24 |
|
25 | 25 | <dependencies>
|
|
79 | 79 | <version>${version.netty}</version>
|
80 | 80 | </dependency>
|
81 | 81 |
|
82 |
| - <dependency> |
| 82 | + <!--<dependency> |
83 | 83 | <groupId>io.netty</groupId>
|
84 | 84 | <artifactId>netty-transport-native-epoll</artifactId>
|
85 | 85 | <classifier>linux-x86_64</classifier>
|
| 86 | + </dependency>--> |
| 87 | + |
| 88 | + <dependency> |
| 89 | + <groupId>io.netty.incubator</groupId> |
| 90 | + <artifactId>netty-incubator-transport-native-io_uring</artifactId> |
| 91 | + <classifier>linux-x86_64</classifier> |
| 92 | + </dependency> |
| 93 | + |
| 94 | + <dependency> |
| 95 | + <groupId>io.vertx</groupId> |
| 96 | + <artifactId>vertx-io_uring-incubator</artifactId> |
86 | 97 | </dependency>
|
87 | 98 |
|
88 | 99 | <dependency>
|
89 | 100 | <groupId>org.apache.logging.log4j</groupId>
|
90 | 101 | <artifactId>log4j-core</artifactId>
|
91 | 102 | </dependency>
|
92 | 103 | </dependencies>
|
93 |
| - |
94 |
| - <build> |
95 |
| - <plugins> |
96 |
| - <plugin> |
97 |
| - <groupId>io.inverno.tool</groupId> |
98 |
| - <artifactId>inverno-maven-plugin</artifactId> |
99 |
| - <executions> |
100 |
| - <execution> |
101 |
| - <id>inverno-package</id> |
102 |
| - <phase>package</phase> |
103 |
| - <goals> |
104 |
| - <goal>build-app</goal> |
105 |
| - </goals> |
106 |
| - <configuration> |
107 |
| - <vm>server</vm> |
108 |
| - <launchers> |
109 |
| - <launcher> |
110 |
| - <name>inverno-benchmark</name> |
111 |
| - <vmOptions>-Xms2g -Xmx2g -server -XX:+UseNUMA -XX:+UseParallelGC -Dio.netty.leakDetection.level=disabled -Dvertx.disableHttpHeadersValidation=true -Dvertx.disableMetrics=true -Dvertx.disableH2c=true -Dvertx.disableWebsockets=true -Dvertx.flashPolicyHandler=false -Dvertx.threadChecks=false -Dvertx.disableContextTimings=true -Dvertx.disableTCCL=true --add-modules io.netty.transport.unix.common,io.netty.transport.epoll</vmOptions> |
112 |
| - </launcher> |
113 |
| - </launchers> |
114 |
| - <formats> |
115 |
| - <format>zip</format> |
116 |
| - </formats> |
117 |
| - </configuration> |
118 |
| - </execution> |
119 |
| - </executions> |
120 |
| - </plugin> |
121 |
| - </plugins> |
122 |
| - </build> |
| 104 | + |
| 105 | + <profiles> |
| 106 | + <profile> |
| 107 | + <id>io.inverno.epoll</id> |
| 108 | + <dependencies> |
| 109 | + <dependency> |
| 110 | + <groupId>io.netty</groupId> |
| 111 | + <artifactId>netty-transport-native-epoll</artifactId> |
| 112 | + <classifier>linux-x86_64</classifier> |
| 113 | + </dependency> |
| 114 | + </dependencies> |
| 115 | + <build> |
| 116 | + <plugins> |
| 117 | + <plugin> |
| 118 | + <groupId>io.inverno.tool</groupId> |
| 119 | + <artifactId>inverno-maven-plugin</artifactId> |
| 120 | + <executions> |
| 121 | + <execution> |
| 122 | + <id>inverno-package-app</id> |
| 123 | + <phase>package</phase> |
| 124 | + <goals> |
| 125 | + <goal>package-app</goal> |
| 126 | + </goals> |
| 127 | + <configuration> |
| 128 | + <vm>server</vm> |
| 129 | + <launchers> |
| 130 | + <launcher> |
| 131 | + <name>inverno-benchmark</name> |
| 132 | + <vmOptions>-Xms2g -Xmx2g -server -XX:+UseNUMA -XX:+UseParallelGC -Dio.netty.leakDetection.level=disabled -Dio.netty.buffer.checkBounds=false -Dio.netty.buffer.checkBounds=false -Dvertx.disableHttpHeadersValidation=true -Dvertx.disableMetrics=true -Dvertx.disableH2c=true -Dvertx.disableWebsockets=true -Dvertx.flashPolicyHandler=false -Dvertx.threadChecks=false -Dvertx.disableContextTimings=true -Dvertx.disableTCCL=true --add-modules io.netty.transport.unix.common,io.netty.transport.classes.epoll,io.netty.transport.epoll.linux.x86_64</vmOptions> |
| 133 | + </launcher> |
| 134 | + </launchers> |
| 135 | + <archiveFormats> |
| 136 | + <archiveFormat>zip</archiveFormat> |
| 137 | + </archiveFormats> |
| 138 | + </configuration> |
| 139 | + </execution> |
| 140 | + </executions> |
| 141 | + </plugin> |
| 142 | + </plugins> |
| 143 | + </build> |
| 144 | + </profile> |
| 145 | + <profile> |
| 146 | + <id>io.inverno.io_uring</id> |
| 147 | + <dependencies> |
| 148 | + <dependency> |
| 149 | + <groupId>io.netty</groupId> |
| 150 | + <artifactId>netty-transport-native-epoll</artifactId> |
| 151 | + <classifier>linux-x86_64</classifier> |
| 152 | + </dependency> |
| 153 | + </dependencies> |
| 154 | + <build> |
| 155 | + <plugins> |
| 156 | + <plugin> |
| 157 | + <groupId>io.inverno.tool</groupId> |
| 158 | + <artifactId>inverno-maven-plugin</artifactId> |
| 159 | + <executions> |
| 160 | + <execution> |
| 161 | + <id>inverno-package-app</id> |
| 162 | + <phase>package</phase> |
| 163 | + <goals> |
| 164 | + <goal>package-app</goal> |
| 165 | + </goals> |
| 166 | + <configuration> |
| 167 | + <vm>server</vm> |
| 168 | + <launchers> |
| 169 | + <launcher> |
| 170 | + <name>inverno-benchmark</name> |
| 171 | + <vmOptions>-Xms2g -Xmx2g -server -XX:+UseNUMA -XX:+UseParallelGC -Dio.netty.leakDetection.level=disabled -Dio.netty.buffer.checkBounds=false -Dio.netty.buffer.checkBounds=false -Dvertx.disableHttpHeadersValidation=true -Dvertx.disableMetrics=true -Dvertx.disableH2c=true -Dvertx.disableWebsockets=true -Dvertx.flashPolicyHandler=false -Dvertx.threadChecks=false -Dvertx.disableContextTimings=true -Dvertx.disableTCCL=true --add-modules io.netty.transport.unix.common,io.netty.incubator.transport.classes.io_uring,io.netty.incubator.transport.io_uring.linux.x86_64</vmOptions> |
| 172 | + </launcher> |
| 173 | + </launchers> |
| 174 | + <archiveFormats> |
| 175 | + <archiveFormat>zip</archiveFormat> |
| 176 | + </archiveFormats> |
| 177 | + </configuration> |
| 178 | + </execution> |
| 179 | + </executions> |
| 180 | + </plugin> |
| 181 | + </plugins> |
| 182 | + </build> |
| 183 | + </profile> |
| 184 | + </profiles> |
123 | 185 |
|
124 | 186 | </project>
|
125 | 187 |
|
0 commit comments