wot-to-openapi-generator
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.eclipse.ditto</groupId>
<artifactId>wot-to-openapi-generator</artifactId>
<version>1.1.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2025 Contributors to the Eclipse Foundation
~
~ See the NOTICE file(s) distributed with this work for additional
~ information regarding copyright ownership.
~
~ This program and the accompanying materials are made available under the
~ terms of the Eclipse Public License 2.0 which is available at
~ http://www.eclipse.org/legal/epl-2.0
~
~ SPDX-License-Identifier: EPL-2.0
-->
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>org.eclipse.ditto</groupId>
<artifactId>wot-to-openapi-generator</artifactId>
<version>1.1.0</version>
<name>Eclipse Ditto :: WoT to OpenAPI generator</name>
<description>A tool for converting Web of Things (WoT) Thing models to OpenAPI 3.1.0 specifications</description>
<url>https://github.com/eclipse-ditto/ditto-wot-tooling/wot-to-openapi-generator</url>
<licenses>
<license>
<name>Eclipse Public License - Version 2.0</name>
<url>https://www.eclipse.org/org/documents/epl-2.0/index.php</url>
</license>
</licenses>
<developers>
<developer>
<id>tjaeckle</id>
<name>Thomas Jaeckle</name>
<email>thomas.jaeckle@beyonnex.io</email>
<url>https://github.com/thjaeckle</url>
<organization>beyonnex.io GmbH</organization>
<organizationUrl>https://beyonnex.io</organizationUrl>
<roles>
<role>Lead</role>
<role>Committer</role>
</roles>
</developer>
<developer>
<id>husseinahmed</id>
<name>Hussein Ahmed</name>
<email>hussein.ahmed@beyonnex.io</email>
<url>https://github.com/hu-ahmed</url>
<organization>beyonnex.io GmbH</organization>
<organizationUrl>https://beyonnex.io</organizationUrl>
<roles>
<role>Contributor</role>
</roles>
</developer>
<developer>
<name>Nenad Ukic</name>
<email>nenad.ukic@beyonnex.io</email>
<url>https://github.com/enenuki</url>
<organization>beyonnex.io GmbH</organization>
<organizationUrl>https://beyonnex.io</organizationUrl>
<roles>
<role>Contributor</role>
</roles>
</developer>
</developers>
<scm>
<connection>scm:git:git@github.com:eclipse-ditto/ditto-wot-tooling.git/wot-to-openapi-generator</connection>
<developerConnection>scm:git:https://github.com/eclipse-ditto/ditto-wot-tooling.git/wot-to-openapi-generator</developerConnection>
<url>https://github.com/eclipse-ditto/ditto-wot-tooling.git/wot-to-openapi-generator</url>
</scm>
<dependencies>
<dependency>
<groupId>org.eclipse.ditto</groupId>
<artifactId>ditto-wot-api</artifactId>
<version>3.8.12</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>2.2.10</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-core</artifactId>
<version>1.10.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.ktor</groupId>
<artifactId>ktor-client-core-jvm</artifactId>
<version>3.2.0</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk7</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.ktor</groupId>
<artifactId>ktor-client-cio-jvm</artifactId>
<version>3.2.0</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk7</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.17</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.5.19</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
<version>3.2.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-models</artifactId>
<version>2.2.40</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-core</artifactId>
<version>2.2.40</version>
<scope>compile</scope>
</dependency>
</dependencies>
<repositories>
<repository>
<id>apache-releases</id>
<name>apache-releases</name>
<url>https://repository.apache.org/content/repositories/releases/</url>
</repository>
</repositories>
</project>