start
This commit is contained in:
38
pom.xml
38
pom.xml
@@ -60,6 +60,18 @@
|
||||
<artifactId>playwright</artifactId>
|
||||
<version>1.40.0</version>
|
||||
</dependency>
|
||||
|
||||
<!-- SLF4J API and implementation for logging -->
|
||||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>slf4j-api</artifactId>
|
||||
<version>2.0.9</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.slf4j</groupId>
|
||||
<artifactId>slf4j-simple</artifactId>
|
||||
<version>2.0.9</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
@@ -72,6 +84,32 @@
|
||||
<configuration>
|
||||
<source>21</source>
|
||||
<target>21</target>
|
||||
<compilerArgs>
|
||||
<arg>--enable-native-access=ALL-UNNAMED</arg>
|
||||
</compilerArgs>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<!-- Maven Exec Plugin for running with native access -->
|
||||
<plugin>
|
||||
<groupId>org.codehaus.mojo</groupId>
|
||||
<artifactId>exec-maven-plugin</artifactId>
|
||||
<version>3.1.0</version>
|
||||
<configuration>
|
||||
<mainClass>com.auction.TroostwijkAuctionExtractor</mainClass>
|
||||
<arguments>
|
||||
<argument>--max-visits</argument>
|
||||
<argument>3</argument>
|
||||
</arguments>
|
||||
<systemProperties>
|
||||
<systemProperty>
|
||||
<key>java.util.logging.SimpleFormatter.format</key>
|
||||
<value>%1$tF %1$tT %4$s %2$s %5$s%6$s%n</value>
|
||||
</systemProperty>
|
||||
</systemProperties>
|
||||
<additionalOptions>
|
||||
<additionalOption>--enable-native-access=ALL-UNNAMED</additionalOption>
|
||||
</additionalOptions>
|
||||
</configuration>
|
||||
</plugin>
|
||||
<!-- <plugin>
|
||||
|
||||
Reference in New Issue
Block a user