Skip to content

Commit

Permalink
Update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
pnatashap authored Oct 4, 2023
1 parent a87fd53 commit 764d724
Showing 1 changed file with 17 additions and 24 deletions.
41 changes: 17 additions & 24 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,24 @@
<driver>chrome</driver>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jetty.version>9.4.12.RC2</jetty.version>
<aspectj.version>1.9.7</aspectj.version>
<log4j2.version>2.17.1</log4j2.version>
<allure.maven>2.10.0</allure.maven>
<aspectj.version>1.9.20</aspectj.version>
<allure.maven>2.12.0</allure.maven>
<!-- - - add-opens java.base/java.lang=ALL-UNNAMED is needed for JDK 16+ -->
<aspectj.args></aspectj.args>
</properties>

<profiles>
<profile>
<id>jdk16</id>
<activation>
<jdk>[16, 20]</jdk>
</activation>
<properties>
<aspectj.args>--add-opens java.base/java.lang=ALL-UNNAMED</aspectj.args>
</properties>
</profile>
</profile>

<dependencies>
<!--JDI-->
<dependency>
Expand All @@ -44,24 +55,6 @@
<version>2.20.1</version>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>${log4j2.version}</version>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>${log4j2.version}</version>
</dependency>

<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-1.2-api</artifactId>
<version>${log4j2.version}</version>
</dependency>

</dependencies>

<build>
Expand All @@ -71,8 +64,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<source>11</source>
<target>11</target>
</configuration>
</plugin>

Expand Down Expand Up @@ -137,4 +130,4 @@
</plugin>
</plugins>
</reporting>
</project>
</project>

0 comments on commit 764d724

Please sign in to comment.