update platform to 6

This commit is contained in:
kochetkov 2025-11-20 09:42:30 +03:00
parent 149cf54016
commit 45b3d05ad0
159 changed files with 474 additions and 463 deletions

22
pom.xml
View file

@ -18,7 +18,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<enable.version.in.url>false</enable.version.in.url>
<joda-time.version>2.9.2</joda-time.version>
<webbpm-platform.version>5.8.1</webbpm-platform.version>
<webbpm-platform.version>6.2.2</webbpm-platform.version>
<wbp.overall-timeout>72000</wbp.overall-timeout>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<jasperreports.version>6.21.4</jasperreports.version>
@ -244,6 +244,11 @@
<artifactId>httpclient</artifactId>
<version>4.5.1</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
<version>5.5.1</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
@ -294,10 +299,10 @@
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<version>3.14.0</version>
<configuration>
<release>17</release>
<forceJavacCompilerUse>true</forceJavacCompilerUse>
<release>21</release>
<parameters>true</parameters>
</configuration>
</plugin>
<plugin>
@ -399,7 +404,7 @@
</plugin>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.1.0</version>
<version>3.6.1</version>
<executions>
<execution>
<id>enforce</id>
@ -419,13 +424,14 @@
<failOnViolation>true</failOnViolation>
<regexIgnored>
<regexIgnored>postgresql</regexIgnored>
<regexIgnored>resources-impl-development</regexIgnored>
</regexIgnored>
</requireManagedDeps>
<requireMavenVersion>
<version>[3.6.0,)</version>
</requireMavenVersion>
<requireJavaVersion>
<version>[17,)</version>
<version>[21,)</version>
</requireJavaVersion>
<compound implementation="com.github.ferstl.maven.pomenforcers.CompoundPedanticEnforcer">
<enforcers>MODULE_ORDER,PLUGIN_MANAGEMENT_ORDER</enforcers>
@ -443,12 +449,12 @@
<dependency>
<groupId>org.commonjava.maven.enforcer</groupId>
<artifactId>enforce-managed-deps-rule</artifactId>
<version>1.2</version>
<version>1.3</version>
</dependency>
<dependency>
<groupId>com.github.ferstl</groupId>
<artifactId>pedantic-pom-enforcers</artifactId>
<version>2.1.0</version>
<version>2.3.0</version>
</dependency>
</dependencies>
</plugin>