/
valiko
/
dataspace-ce
Обзор
Документация
Войти
/
valiko
/
dataspace-ce
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
modules/dataspace-sql-dialect-postgres/pom.xml
45 строк
1 KB
unrealprox
maven structure
04 мар 2025, 11:59
04 мар 2025, 11:59
daeae8e
Код
Авторство
О чём код?
<?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> <parent> <groupId>ru.sbertech.dataspace</groupId> <artifactId>dataspace</artifactId> <version>DEV-SNAPSHOT</version> <relativePath>../../pom.xml</relativePath> </parent> <artifactId>dataspace-sql-dialect-postgres</artifactId> <dependencies> <dependency> <groupId>ru.sbertech.dataspace</groupId> <artifactId>dataspace-common</artifactId> </dependency> <dependency> <groupId>ru.sbertech.dataspace</groupId> <artifactId>dataspace-primitive</artifactId> </dependency> <dependency> <groupId>ru.sbertech.dataspace</groupId> <artifactId>dataspace-sql</artifactId> </dependency> <dependency> <groupId>ru.sbertech.dataspace</groupId> <artifactId>dataspace-sql-dialect</artifactId> </dependency> <dependency> <groupId>ru.sbertech.dataspace</groupId> <artifactId>dataspace-test-sql-dialect</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <scope>test</scope> </dependency> </dependencies> </project>