vert-x3 / vertx-virtual-threads-incubator

Vert.x virtual threads incubator

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Vert.x Virtual Threads Incubator

Build Status

Incubator for virtual threads based prototypes.

Prerequisites

Projects

Usage

enable preview flag must be enabled

<build>
  <pluginManagement>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <release>19</release>
          <compilerArgs>--enable-preview</compilerArgs>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <configuration>
          <argLine>--enable-preview</argLine>
        </configuration>
      </plugin>
    </plugins>
  </pluginManagement>
</build>

snapshots are available at s01.oss.sonatype.org

  <repositories>
  <repository>
    <id>vertx-snapshots-repository</id>
    <name>Vert.x Snapshots Repository</name>
    <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url>
    <releases>
      <enabled>false</enabled>
    </releases>
    <snapshots>
      <enabled>true</enabled>
    </snapshots>
  </repository>
</repositories>

About

Vert.x virtual threads incubator


Languages

Language:Java 100.0%