* fix(TUP-36566):CVE:upgrade reload4j to 1.2.22. * fix(TUP-36566):CVE:upgrade reload4j to 1.2.22.
142 lines
5.4 KiB
XML
142 lines
5.4 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">
|
|
<!--
|
|
Copyright (C) 2010 Talend Inc. - www.talend.com
|
|
-->
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>org.talend</groupId>
|
|
<artifactId>org.talend.commons.runtime</artifactId>
|
|
<packaging>bundle</packaging>
|
|
<parent>
|
|
<groupId>org.talend</groupId>
|
|
<artifactId>org.talend.tos</artifactId>
|
|
<version>7.4.1-SNAPSHOT</version>
|
|
<relativePath>../pom_server.xml</relativePath>
|
|
</parent>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>commons-lang</groupId>
|
|
<artifactId>commons-lang</artifactId>
|
|
<version>2.6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-httpclient</groupId>
|
|
<artifactId>commons-httpclient</artifactId>
|
|
<version>3.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-beanutils</groupId>
|
|
<artifactId>commons-beanutils</artifactId>
|
|
<version>1.9.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>commons-collections</groupId>
|
|
<artifactId>commons-collections</artifactId>
|
|
<version>3.2.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.ant</groupId>
|
|
<artifactId>ant-apache-oro</artifactId>
|
|
<version>1.7.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.talend</groupId>
|
|
<artifactId>fakejdbc</artifactId>
|
|
<version>1.0</version>
|
|
<scope>system</scope>
|
|
<systemPath>${basedir}/fakejdbc_driver.jar</systemPath>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.birt.runtime</groupId>
|
|
<artifactId>org.eclipse.osgi</artifactId>
|
|
<version>3.10.2.v20150203-1939</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.birt.runtime</groupId>
|
|
<artifactId>org.eclipse.core.runtime</artifactId>
|
|
<version>3.10.0.v20140318-2214</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.birt.runtime</groupId>
|
|
<artifactId>org.eclipse.emf.common</artifactId>
|
|
<version>2.10.1.v20140901-1043</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.birt.runtime</groupId>
|
|
<artifactId>org.eclipse.emf.ecore</artifactId>
|
|
<version>2.10.1.v20140901-1043</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.birt.runtime</groupId>
|
|
<artifactId>org.eclipse.emf.ecore.xmi</artifactId>
|
|
<version>2.10.1.v20140901-1043</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.birt.runtime</groupId>
|
|
<artifactId>org.eclipse.equinox.common</artifactId>
|
|
<version>3.6.200.v20130402-1505</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.birt.runtime</groupId>
|
|
<artifactId>org.eclipse.equinox.registry</artifactId>
|
|
<version>3.5.400.v20140428-1507</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.birt.runtime</groupId>
|
|
<artifactId>org.eclipse.equinox.app</artifactId>
|
|
<version>1.3.200.v20130910-1609</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>xerces</groupId>
|
|
<artifactId>xercesImpl</artifactId>
|
|
<version>2.12.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ch.qos.reload4j</groupId>
|
|
<artifactId>reload4j</artifactId>
|
|
<version>1.2.22</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<sourceDirectory>src</sourceDirectory>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.3.2</version>
|
|
<configuration>
|
|
<source>1.7</source>
|
|
<target>1.7</target>
|
|
<includes>
|
|
<include>org/talend/commons/utils/threading/lockerbykey/*.java</include>
|
|
</includes>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.felix</groupId>
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
<version>5.1.1</version>
|
|
<extensions>true</extensions>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>30.0-jre</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<configuration>
|
|
<instructions>
|
|
<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
|
|
</instructions>
|
|
<classifier>minimal</classifier>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|