* feat(TUP-21518) initial change from cryptohelper to AESEncryption feat(TUP-21518) Replace CryptoHelper feat(TUP-21518) Revert migration related changes and changes to old hardcoded key of AESEncryption, tracked by https://jira.talendforge.org/browse/TUP-22966 feat(TUP-21518) Add CryptoHelperWrapper which will be intended for migration feat(TUP-21518) Add methods to CryptoHelperWrapper feat(TUP-21518) Fix Separate migration code feat(TUP-21518) Rename AESEncryption feat(TUP-21518) Rename AESEncryption feat(TUP-21518) Rename AESEncryption feat(TUP-21518) Rename AESEncryption feat(TUP-21518) Format source code * feat(TUP-21518) Uptake new daikon lib * feat(TUP-21518) initial change from cryptohelper to AESEncryption feat(TUP-21518) Replace CryptoHelper feat(TUP-21518) Revert migration related changes and changes to old hardcoded key of AESEncryption, tracked by https://jira.talendforge.org/browse/TUP-22966 feat(TUP-21518) Add CryptoHelperWrapper which will be intended for migration feat(TUP-21518) Add methods to CryptoHelperWrapper feat(TUP-21518) Fix Separate migration code feat(TUP-21518) Rename AESEncryption feat(TUP-21518) Rename AESEncryption feat(TUP-21518) Rename AESEncryption feat(TUP-21518) Rename AESEncryption feat(TUP-21518) Format source code feat(TUP-21518) Uptake new daikon lib feat(TUP-21518) Rename encryption key * feat(TUP-21518) Update system property * kjwang/Fix TUP-24212 Create migration for CryptoHelper to AES upgrading https://jira.talendforge.org/browse/TUP-24212 * feat(TUP-21518) Update log level * feat(TUP-21518) Set encryption key system property only if it is not set * kjwang/Fix TUP-24212 Create migration for CryptoHelper to AES upgrading https://jira.talendforge.org/browse/TUP-24212 * kjwang/Fix TUP-24212 Create migration for CryptoHelper to AES upgrading https://jira.talendforge.org/browse/TUP-24212 * kjwang/Fix TUP-24212 Create migration for CryptoHelper to AES upgrading https://jira.talendforge.org/browse/TUP-24212 * feat(TUP-21518) Set up default keys * kjwang/Fix TUP-24212 Create migration for CryptoHelper to AES upgrading https://jira.talendforge.org/browse/TUP-24212 * feat(TUP-21518) Setup default encryption keys * feat(TUP-21518) Update crypto-utils * feat(TUP-21518) Merge changes * kjwang/Fix TUP-24212 Create migration for CryptoHelper to AES upgrading https://jira.talendforge.org/browse/TUP-24212 * feat(TUP-21518) Fix test case and load default keys for tac and jobserver * feat(TUP-21518) Fix load key file * feat(TUP-21518) Revert pom_minimal and server * feat(TUP-21518) Fix test case * feat(TUP-21518) Fix test case * feat(TUP-21518) Fix test case * feat(TUP-21518) Fix ElementParameterParserTest * fix(TDQ-16616): refactor the code to make it reuseable * feat(TUP-21518) Fix TUP-24580 * feat(TUP-21518) Fix TUP-24578 * feat(TUP-21518) Add JDBC connection type * feat(TUP-21518) Resolve comments * feat(TUP-21518) Resolve comments * feat(TUP-21518) Resolve comments * feat(TUP-21518) Refactor * feat(TUP-21518) Fix log * feat(TUP-21518) Fix format of source code * feat(TUP-21518) Resolve comments * feat(TUP-21518) Resolve comments * feat(TUP-21518) Load migration.token.encryption.key from local jar * feat(TUP-21518) Resolve comments * feat(TUP-21518) Resolve comments * feat(TUP-21518) Fix TUP-24868
105 lines
3.6 KiB
XML
105 lines
3.6 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.tos</artifactId>
|
|
<version>7.3.1-SNAPSHOT</version>
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<talend.nexus.url>https://artifacts-zl.talend.com</talend.nexus.url>
|
|
<org.talend.daikon.crypto-utils.version>1.7.0</org.talend.daikon.crypto-utils.version>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>org.talend.utils/pom_minimal.xml</module>
|
|
<module>org.talend.utils/pom_server.xml</module>
|
|
<module>org.talend.commons.runtime/pom_server.xml</module>
|
|
</modules>
|
|
|
|
<build>
|
|
<defaultGoal>install</defaultGoal>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-install-plugin</artifactId>
|
|
<version>2.5.2</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
<version>2.8.2</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.22.1</version>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>tos-releases</id>
|
|
<name>TOS releases Repository</name>
|
|
<url>${tos.releases.repo.url}</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>tos-snapshots</id>
|
|
<name>TOS snapshots Repository</name>
|
|
<url>${tos.snapshots.repo.url}</url>
|
|
</snapshotRepository>
|
|
</distributionManagement>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>talend_open</id>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
<url>${talend.nexus.url}/nexus/content/repositories/TalendOpenSourceRelease/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>talend_open_snapshots</id>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
<url>${talend.nexus.url}/nexus/content/repositories/TalendOpenSourceSnapshot/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>releases</id>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
<url>${talend.nexus.url}/nexus/content/repositories/releases/</url>
|
|
</repository>
|
|
<repository>
|
|
<id>snapshots</id>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
<url>${talend.nexus.url}/nexus/content/repositories/snapshots/</url>
|
|
</repository>
|
|
</repositories>
|
|
</project>
|