jabrena / 101-spring-boot-with-loom

A review about how to use Spring Boot with Virtual Threads, Structural Concurrency & Scope Values (JEP 444, JEP 437 & JEP 446)
Apache License 2.0
0 stars 0 forks source link

Review properties from other developments #5

Open jabrena opened 1 year ago

jabrena commented 1 year ago
jabrena commented 1 year ago
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.11.0</version>
                <configuration>
                    <release>${java.version}</release>
                    <compilerArgs>
                        <arg>--enable-preview</arg>
                    </compilerArgs>
                    <source>${java.version}</source>
                    <target>${java.version}</target>
                </configuration>
            </plugin>