* feat(TUP-38543): Set compilation of master for studio to Java 11 * feat(TUP-38543): setup Jakarta * feat(TUP-38543): setup platform feature * feat(TUP-38543): eclipse upgrade * feat(TUP-38543): update eclipse * feat(TUP-38543): update eclipse remove index files * feat(TUP-38543): update eclipse * feat(TUP-38543): update eclipse * feat(TUP-38543): update eclipse * feat(TUP-38543): update eclipse * feat(TUP-38543): update eclipse * feat(TUP-38543): fix wrong version of surefire * feat(TUP-38543): test of fix of maven / m2e in studio * feat(TUP-38543): test of fix of maven / m2e in studio * feat(TUP-38543): fix of maven / m2e in studio * feat(TUP-38543): m2 plugins setup * feat(TUP-38543): remove compilation to java 8 on librariesmanager * feat(TUP-38543): maven.tos update * feat(TUP-38544): build EE * feat(TUP-38544): build EE * feat(TUP-38544): remove dom4j * feat(TUP-38544): revert wrong commit for version * feat(TUP-38544): fix UIExtensionTracker issue * feat(TUP-38544): add comment * feat(TUP-38544) : try export axis from org.talend.libraries.apache * feat(TUP-38544) : try move wsdl to metadata.managent.ui * feat(TUP-38544) : remove axis * feat(TUP-38544) : try move to managment * feat(TUP-38544) : remove axis * feat(TUP-38544) : add axis * feat(TUP-38544) : try add a new plugin * feat(TUP-38544) : fix download jar studio freezed issue * feat(TUP-38544) : fix EE build job failed * feat(TUP-38544) : fix Cannot invoke "org.apache.maven.model.Model.getBuild()" because "installedModel" is null * feat(TUP-38544) : fix m2e.core.ui startup faster then workbench create issue * feat(TUP-38544) : try unregister service to avoid m2e.core.ui failed issue * feat(TUP-38544) : tycho * feat(TUP-38544): fix junit failed * feat(TUP-38544) : change to use stream instead of file . because when use File . the pom name must be pom.xml * feat(TUP-38544): fix compile error for the wrong change * feat(TUP-38544): change exception * feat(TUP-38544): add import * feat(TUP-38544): change exception * feat(TUP-38544): fix compile error * feat(TUP-38544): fix junit failed --------- Co-authored-by: Nicolas Rousseau <nrousseau@talend.com>
115 lines
3.7 KiB
XML
115 lines
3.7 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>org.talend.studio</groupId>
|
|
<artifactId>tcommon-studio-se</artifactId>
|
|
<version>8.8.8-SNAPSHOT</version>
|
|
<relativePath>../../../</relativePath>
|
|
</parent>
|
|
<artifactId>org.talend.libraries.apache</artifactId>
|
|
<packaging>eclipse-plugin</packaging>
|
|
<properties>
|
|
<reload4j.version>1.2.22</reload4j.version>
|
|
<slf4j.version>1.7.34</slf4j.version>
|
|
<log4j2.version>2.17.1</log4j2.version>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>ch.qos.reload4j</groupId>
|
|
<artifactId>reload4j</artifactId>
|
|
<version>${reload4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-reload4j</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>log4j</groupId>
|
|
<artifactId>log4j</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-to-slf4j</artifactId>
|
|
<version>${log4j2.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-api</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>jul-to-slf4j</artifactId>
|
|
<version>${slf4j.version}</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-api</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-jul</artifactId>
|
|
<version>${log4j2.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-jcl</artifactId>
|
|
<version>${log4j2.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
<artifactId>log4j-1.2-api</artifactId>
|
|
<version>${log4j2.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.james</groupId>
|
|
<artifactId>apache-mime4j-core</artifactId>
|
|
<version>0.8.9</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<version>3.0.2</version>
|
|
<executions>
|
|
<execution>
|
|
<id>copy-dependencies</id>
|
|
<phase>generate-resources</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
<configuration>
|
|
<excludeTypes>pom</excludeTypes>
|
|
<excludeTransitive>true</excludeTransitive>
|
|
<outputDirectory>${project.basedir}/lib</outputDirectory>
|
|
<includeGroupIds>ch.qos.reload4j,org.slf4j,org.apache.logging.log4j,org.apache.james</includeGroupIds>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|