* fix(TDI-37213): revert IncomingSchemaEnforcer * fix(TDI-37213): revert OutgoingSchemaEnforcer * fix(TDI-37213): revert enforcer creator * fix(TDI-37213): revert tests * fix(TDI-31213): change talend-codegen-utils lib version to 0.20.2 * fix(TDI-31213): change talend-codegen-utils lib version in Studio to 0.20.2 * chore(TDI-31213): fix formatting * fix(TDI-37213): remove test for Double to BigDecimal conversion
170 lines
5.1 KiB
XML
170 lines
5.1 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>
|
|
|
|
<name>Codegen Utilities</name>
|
|
<groupId>org.talend.libraries</groupId>
|
|
<artifactId>talend-codegen-utils</artifactId>
|
|
<!-- release for revert version of library -->
|
|
<version>0.20.2</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<properties>
|
|
<avro.version>1.8.0</avro.version>
|
|
<components.version>0.20.0-SNAPSHOT</components.version>
|
|
<daikon.version>0.18.0-SNAPSHOT</daikon.version>
|
|
<hamcrest.version>1.3</hamcrest.version>
|
|
<junit.version>4.12</junit.version>
|
|
<java-formatter.plugin.version>0.1.0</java-formatter.plugin.version>
|
|
<formatter.plugin.version>1.6.0-SNAPSHOT</formatter.plugin.version>
|
|
<mockito.version>2.2.15</mockito.version>
|
|
<jacoco.plugin.version>0.7.8</jacoco.plugin.version>
|
|
<maven.compiler.source>1.7</maven.compiler.source>
|
|
<maven.compiler.target>1.7</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<talend.nexus.url>https://artifacts-oss.talend.com</talend.nexus.url>
|
|
</properties>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>talend_nexus</id>
|
|
<name>snapshots</name>
|
|
<url>${talend.nexus.url}/nexus/content/repositories/TalendOpenSourceSnapshot/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>releases</id>
|
|
<url>${talend.nexus.url}/nexus/content/repositories/TalendOpenSourceRelease/</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<distributionManagement>
|
|
<snapshotRepository>
|
|
<id>talend_nexus_deployment</id>
|
|
<url>${talend.nexus.url}/nexus/content/repositories/TalendOpenSourceSnapshot/</url>
|
|
<snapshots><enabled>true</enabled></snapshots>
|
|
<releases><enabled>false</enabled></releases>
|
|
</snapshotRepository>
|
|
<repository>
|
|
<id>talend_nexus_deployment</id>
|
|
<url>${talend.nexus.url}/nexus/content/repositories/TalendOpenSourceRelease/</url>
|
|
<snapshots><enabled>false</enabled></snapshots>
|
|
<releases><enabled>true</enabled></releases>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>talend-opensource-snapshot</id>
|
|
<name>talend-opensource-snapshot</name>
|
|
<url>${talend.nexus.url}/nexus/content/repositories/TalendOpenSourceSnapshot/</url>
|
|
</pluginRepository>
|
|
<pluginRepository>
|
|
<id>talend-opensource-release</id>
|
|
<name>talend-opensource-release</name>
|
|
<url>${talend.nexus.url}/nexus/content/repositories/TalendOpenSourceRelease/</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.talend.components</groupId>
|
|
<artifactId>components-api</artifactId>
|
|
<version>${components.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.talend.components</groupId>
|
|
<artifactId>components-common</artifactId>
|
|
<version>${components.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.avro</groupId>
|
|
<artifactId>avro</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.talend.daikon</groupId>
|
|
<artifactId>daikon</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>${junit.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.hamcrest</groupId>
|
|
<artifactId>hamcrest-library</artifactId>
|
|
<version>${hamcrest.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
<version>${mockito.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.apache.avro</groupId>
|
|
<artifactId>avro</artifactId>
|
|
<version>${avro.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.talend.daikon</groupId>
|
|
<artifactId>daikon</artifactId>
|
|
<version>${daikon.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.jacoco</groupId>
|
|
<artifactId>jacoco-maven-plugin</artifactId>
|
|
<version>${jacoco.plugin.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<id>default-prepare-agent</id>
|
|
<goals>
|
|
<goal>prepare-agent</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<id>default-report</id>
|
|
<phase>prepare-package</phase>
|
|
<goals>
|
|
<goal>report</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>net.revelc.code.formatter</groupId>
|
|
<artifactId>formatter-maven-plugin</artifactId>
|
|
<version>${formatter.plugin.version}</version>
|
|
<configuration>
|
|
<configFile>talend_java_eclipse_formatter.xml</configFile>
|
|
</configuration>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.talend.tools</groupId>
|
|
<artifactId>java-formatter</artifactId>
|
|
<version>${java-formatter.plugin.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>validate</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|