/
githubmirror
/
ydb-java-dialects
Обзор
Документация
Войти
/
githubmirror
/
ydb-java-dialects
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
kotlin-exposed-dialect/example/pom.xml
70 строк
2 KB
svetlana markelova
Support YDB Kotlin Exposed (#214)
20 май 2026, 16:03
Не верифицирован
20 май 2026, 16:03
631ab89
Код
Авторство
О чём код?
<?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> <groupId>tech.ydb.dialects</groupId> <artifactId>kotlin-exposed-ydb-dialect-example</artifactId> <version>0.9.0</version> <packaging>jar</packaging> <name>Kotlin Exposed YDB Dialect Example</name> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <kotlin.version>2.2.20</kotlin.version> <maven.compiler.release>17</maven.compiler.release> </properties> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib</artifactId> <version>${kotlin.version}</version> </dependency> <dependency> <groupId>tech.ydb.dialects</groupId> <artifactId>kotlin-exposed-ydb-dialect</artifactId> <version>0.9.0</version> </dependency> <dependency> <groupId>tech.ydb.jdbc</groupId> <artifactId>ydb-jdbc-driver</artifactId> <version>2.3.22</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-maven-plugin</artifactId> <version>${kotlin.version}</version> <executions> <execution> <id>compile</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> <configuration> <jvmTarget>17</jvmTarget> <sourceDirs> <sourceDir>src/main/kotlin</sourceDir> </sourceDirs> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>3.5.0</version> </plugin> </plugins> </build> </project>