config-model-migrator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.wso2.carbon.identity.tools</groupId> <artifactId>config-model-migrator</artifactId> <version>1.0.5</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (c) 2019, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. ~ ~ WSO2 Inc. licenses this file to you under the Apache License, ~ Version 2.0 (the "License"); you may not use this file except ~ in compliance with the License. ~ You may obtain a copy of the License at ~ ~ http://www.apache.org/licenses/LICENSE-2.0 ~ ~ Unless required by applicable law or agreed to in writing, ~ software distributed under the License is distributed on an ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY ~ KIND, either express or implied. See the License for the ~ specific language governing permissions and limitations ~ under the License. ~ --> <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.wso2.carbon.identity.tools</groupId> <artifactId>identity-tools</artifactId> <version>1.0.5</version> <relativePath>../../pom.xml</relativePath> </parent> <artifactId>config-model-migrator</artifactId> <description>The new config model migration tool package.</description> <packaging>pom</packaging> <modules> <module>org.wso2.is.configuration.migrator</module> <module>org.wso2.is.configuration.diff.creator</module> <module>org.wso2.is.configuration.toml.generator</module> </modules> <dependencyManagement> <dependencies> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>${com.google.code.gson.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-io</artifactId> <version>${commons.io.version}</version> </dependency> <dependency> <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> <version>${common.logging.version}</version> </dependency> <dependency> <groupId>commons-lang.wso2</groupId> <artifactId>commons-lang</artifactId> <version>${commons.lang.orbit.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${commons.lang3.version}</version> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>${commons.collection.version}</version> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <version>${commons.codec.version}</version> </dependency> <dependency> <groupId>org.xmlunit</groupId> <artifactId>xmlunit-core</artifactId> <version>${xmlunit.version}</version> </dependency> <dependency> <groupId>org.xmlunit</groupId> <artifactId>xmlunit-matchers</artifactId> <version>${xmlunit.version}</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>${apache.loging.log4j.version}</version> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>${apache.loging.log4j.version}</version> </dependency> <dependency> <groupId>com.moandjiezana.toml</groupId> <artifactId>toml4j</artifactId> <version>${toml4j.version}</version> </dependency> <dependency> <groupId>org.wso2.carbon.identity.tools</groupId> <artifactId>org.wso2.is.configuration.diff.creator</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.wso2.carbon.identity.tools</groupId> <artifactId>org.wso2.is.configuration.toml.generator</artifactId> <version>${project.version}</version> <scope>compile</scope> </dependency> </dependencies> </dependencyManagement> <properties> <com.google.code.gson.version>2.8.5</com.google.code.gson.version> <commons.io.version>1.3.2</commons.io.version> <common.logging.version>1.2</common.logging.version> <commons.collection.version>3.2.2</commons.collection.version> <commons.lang.orbit.version>2.6.0.wso2v1</commons.lang.orbit.version> <commons.lang3.version>3.9</commons.lang3.version> <commons.codec.version>1.12</commons.codec.version> <apache.loging.log4j.version>2.13.2</apache.loging.log4j.version> <xmlunit.version>2.2.1</xmlunit.version> <toml4j.version>0.7.2</toml4j.version> </properties> </project>