Compare commits
34 Commits
jzhang/TUP
...
fdesiles/T
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
469a63bd4a | ||
|
|
324d16e36e | ||
|
|
7a0dc907fe | ||
|
|
a812217267 | ||
|
|
f416172f71 | ||
|
|
b51fc60991 | ||
|
|
61b65a9452 | ||
|
|
d9743b182e | ||
|
|
117ff27b9e | ||
|
|
fc78dd601a | ||
|
|
371393c12d | ||
|
|
a4e4121f7b | ||
|
|
e1038076ac | ||
|
|
94d51690c0 | ||
|
|
7894864ea9 | ||
|
|
96edaa9b59 | ||
|
|
4f147c0d58 | ||
|
|
423c6d685b | ||
|
|
e3f3939b2a | ||
|
|
509cacf539 | ||
|
|
2d6c24cbb5 | ||
|
|
3674b4dac1 | ||
|
|
30ac2e6c7b | ||
|
|
34235d0ddf | ||
|
|
5204646bfd | ||
|
|
27482a5b52 | ||
|
|
9d9dc41900 | ||
|
|
b4db65ee24 | ||
|
|
9e247cdef3 | ||
|
|
fedcb1fdad | ||
|
|
f865fc00d3 | ||
|
|
22ae3cc59d | ||
|
|
571055fc08 | ||
|
|
c2759b80bf |
@@ -43,7 +43,7 @@
|
||||
<dependency>
|
||||
<groupId>org.ops4j.pax.url</groupId>
|
||||
<artifactId>pax-url-aether</artifactId>
|
||||
<version>2.6.2-Talend</version>
|
||||
<version>2.6.3-Talend</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.talend.dataquality</groupId>
|
||||
@@ -112,7 +112,7 @@
|
||||
<dependency>
|
||||
<groupId>com.cedarsoftware</groupId>
|
||||
<artifactId>json-io</artifactId>
|
||||
<version>4.9.9-TALEND</version>
|
||||
<version>4.13.1-TALEND</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
@@ -143,12 +143,12 @@
|
||||
<dependency>
|
||||
<groupId>org.codehaus.jackson</groupId>
|
||||
<artifactId>jackson-core-asl</artifactId>
|
||||
<version>1.9.15-TALEND</version>
|
||||
<version>1.9.16-TALEND</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.codehaus.jackson</groupId>
|
||||
<artifactId>jackson-mapper-asl</artifactId>
|
||||
<version>1.9.15-TALEND</version>
|
||||
<version>1.9.16-TALEND</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Avro with minimum depdencies -->
|
||||
@@ -300,7 +300,7 @@
|
||||
<artifactId>commons-codec</artifactId>
|
||||
<version>1.14</version>
|
||||
</dependency>
|
||||
<!-- to avoid updatin the complete eclipse target platform we add these
|
||||
<!-- to avoid updatin the complete eclipse target platform we add these
|
||||
single dependencies -->
|
||||
<dependency>
|
||||
<groupId>biz.aQute.bnd</groupId>
|
||||
@@ -360,6 +360,26 @@
|
||||
<version>4.13.2</version>
|
||||
<classifier>bundle</classifier>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>ch.qos.reload4j</groupId>
|
||||
<artifactId>reload4j</artifactId>
|
||||
<version>1.2.19-TALEND</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-annotations</artifactId>
|
||||
<version>${fasterxml.jackson.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-core</artifactId>
|
||||
<version>${fasterxml.jackson.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-databind</artifactId>
|
||||
<version>${fasterxml.jackson.databind.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
</project>
|
||||
|
||||
@@ -12,8 +12,9 @@
|
||||
<packaging>pom</packaging>
|
||||
<properties>
|
||||
<talend.nexus.host>https://artifacts-oss.talend.com</talend.nexus.host>
|
||||
<dataquality.lib.version>9.0.2</dataquality.lib.version>
|
||||
<fasterxml.jackson.version>2.11.4</fasterxml.jackson.version>
|
||||
<dataquality.lib.version>9.1.5-SNAPSHOT</dataquality.lib.version>
|
||||
<fasterxml.jackson.version>2.13.2</fasterxml.jackson.version>
|
||||
<fasterxml.jackson.databind.version>2.13.2.2</fasterxml.jackson.databind.version>
|
||||
</properties>
|
||||
|
||||
<distributionManagement>
|
||||
|
||||
@@ -187,26 +187,6 @@
|
||||
</artifactItems>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>copy-studio-add-conf</id>
|
||||
<phase>package</phase>
|
||||
<goals>
|
||||
<goal>unpack</goal>
|
||||
</goals>
|
||||
<configuration>
|
||||
<artifactItems>
|
||||
<artifactItem>
|
||||
<groupId>${project.groupId}</groupId>
|
||||
<artifactId>studio-add-conf</artifactId>
|
||||
<version>8.0.1-SNAPSHOT</version>
|
||||
<type>zip</type>
|
||||
<classifier />
|
||||
<overWrite>true</overWrite>
|
||||
<outputDirectory>${studio.dir}/configuration</outputDirectory>
|
||||
</artifactItem>
|
||||
</artifactItems>
|
||||
</configuration>
|
||||
</execution>
|
||||
<execution>
|
||||
<id>copy-notice-txt</id>
|
||||
<phase>package</phase>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user