Major changes from LibrePlan upstream: Migration to Java 21 / Tomcat 9: - ZK Framework 9.x → 8.6.0.1 (built-in databinding) - Removed stub classes blocking real ZK databinder - BCrypt password fix (matches() vs equals()) - Spring Security firewall for double-slash URLs - I18nHelper _() → tr() (Java 9+ reserved keyword) - Hibernate TypeContributor for Jadira types - Fixed ConfigurationModel Currency locale handling Rebrand to TASKPM: - Maven project names updated - web.xml display-name → taskpm-webapp - CSS files: libreplan.css → taskpm.css - i18n .po files updated (all locales) - ZUL page titles updated - Documentation rebranded New Features: - PERT Chart prototype using vis.js (/planner/pert/) - New doc chapters: 22-taskpm.rst (PERT focus) - Deploy automation scripts (migrate/) - Help docs deployed to webapp Removed: - Original .forgejo and .github CI workflows (will be replaced) TASKPM is a personal-oriented planning package integrating taskwarrior/timewarrior with PERT/CPM Monte Carlo scheduling. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
231 lines
7.4 KiB
XML
231 lines
7.4 KiB
XML
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.libreplan</groupId>
|
|
<artifactId>libreplan</artifactId>
|
|
<version>1.6.0</version>
|
|
</parent>
|
|
<artifactId>libreplan-business</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>TASKPM Business Module</name>
|
|
|
|
<dependencies>
|
|
<!-- Gettext commons -->
|
|
<dependency>
|
|
<groupId>com.googlecode.gettext-commons</groupId>
|
|
<artifactId>gettext-commons</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Spring ORM -->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-orm</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Hibernate -->
|
|
<dependency>
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>hibernate-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>hibernate-ehcache</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>hibernate-validator</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Javax EL -->
|
|
<dependency>
|
|
<groupId>org.glassfish</groupId>
|
|
<artifactId>javax.el</artifactId>
|
|
<version>3.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>javax.el</groupId>
|
|
<artifactId>javax.el-api</artifactId>
|
|
<version>3.0.0</version>
|
|
</dependency>
|
|
|
|
<!-- Javax Annotation API (for @PostConstruct, removed from JDK 11+) -->
|
|
<dependency>
|
|
<groupId>javax.annotation</groupId>
|
|
<artifactId>javax.annotation-api</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Usertype.Core -->
|
|
<dependency>
|
|
<groupId>org.jadira.usertype</groupId>
|
|
<artifactId>usertype.core</artifactId>
|
|
</dependency>
|
|
|
|
<!-- JDBC driver -->
|
|
<dependency>
|
|
<groupId>${jdbcDriver.groupId}</groupId>
|
|
<artifactId>${jdbcDriver.artifactId}</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jboss.spec.javax.transaction</groupId>
|
|
<artifactId>jboss-transaction-api_1.2_spec</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Spring -->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context-support</artifactId>
|
|
</dependency>
|
|
|
|
<!-- AspectJWeaver -->
|
|
<dependency>
|
|
<groupId>org.aspectj</groupId>
|
|
<artifactId>aspectjweaver</artifactId>
|
|
</dependency>
|
|
|
|
<!-- JUnit -->
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Datasource for testing -->
|
|
<dependency>
|
|
<groupId>com.jolbox</groupId>
|
|
<artifactId>bonecp</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Spring Test -->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-test</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Easymock -->
|
|
<dependency>
|
|
<groupId>org.easymock</groupId>
|
|
<artifactId>easymock</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.easymock</groupId>
|
|
<artifactId>easymockclassextension</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<!-- Commons Math-->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-math3</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Commons Lang -->
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-collections4</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Log4j -->
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Joda Time -->
|
|
<dependency>
|
|
<groupId>joda-time</groupId>
|
|
<artifactId>joda-time</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Liquibase -->
|
|
<dependency>
|
|
<groupId>org.liquibase</groupId>
|
|
<artifactId>liquibase-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.liquibase</groupId>
|
|
<artifactId>liquibase-maven-plugin</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
<!-- LiquiBase liquibase:update -->
|
|
<id>liquibase-update</id>
|
|
<activation>
|
|
<activeByDefault>true</activeByDefault>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.liquibase</groupId>
|
|
<artifactId>liquibase-maven-plugin</artifactId>
|
|
<version>3.5.1</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>process-resources</phase>
|
|
<configuration>
|
|
<propertyFileWillOverride>true</propertyFileWillOverride>
|
|
<propertyFile>target/classes/liquibase.properties</propertyFile>
|
|
</configuration>
|
|
<goals>
|
|
<goal>update</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
|
|
<profile>
|
|
<!-- LiquiBase liquibase:updateSQL -->
|
|
<id>liquibase-updatesql</id>
|
|
<activation>
|
|
<activeByDefault>false</activeByDefault>
|
|
</activation>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.liquibase</groupId>
|
|
<artifactId>liquibase-maven-plugin</artifactId>
|
|
<version>3.5.1</version>
|
|
<executions>
|
|
<execution>
|
|
<phase>process-resources</phase>
|
|
<configuration>
|
|
<propertyFileWillOverride>false</propertyFileWillOverride>
|
|
<propertyFile>target/classes/liquibase.properties</propertyFile>
|
|
</configuration>
|
|
<goals>
|
|
<goal>updateSQL</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
<build>
|
|
<!-- Filtering -->
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
</project>
|