This repository has been archived on 2025-03-13. You can view files and clone it, but cannot push or open issues or pull requests.
db-migration/pom.xml

95 lines
3.3 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<!--
db-migration: A database schema versioning tool.
Copyright (C) 2021-2022 the original author or authors.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation;
version 2.1 of the License only.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
-->
<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>com.robertvokac.essential</groupId>
<artifactId>robertvokac-parent</artifactId>
<version>0.1.1-SNAPSHOT</version>
</parent>
<groupId>com.robertvokac.tools.dbmigration</groupId>
<artifactId>db-migration</artifactId>
<version>0.1.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>DB Migration</name>
<description>Tool migrating databases versions.</description>
<properties>
<dbmigration.version>0.1.1-SNAPSHOT</dbmigration.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<checkstyle.skip>true</checkstyle.skip><!-- TODO: make false-->
<power.version>2.0.1-SNAPSHOT</power.version>
</properties>
<modules>
<module>db-migration-core</module>
<module>db-migration-test-jar</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven-deploy-plugin.version}</version>
</plugin>
</plugins>
</pluginManagement>
<plugins>
</plugins>
</build>
<dependencies>
</dependencies>
<repositories>
<repository>
<id>robertvokac-releases-repository</id>
<name>robertvokac-releases-repository</name>
<url>https://maven.robertvokac.com/releases</url>
</repository>
<repository>
<id>robertvokac-snapshots-repository</id>
<name>robertvokac-snapshots-repository</name>
<url>https://maven.robertvokac.com/snapshots</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>robertvokac-releases-repository</id>
<name>robertvokac-releases-repository</name>
<url>https://maven.robertvokac.com/releases</url>
</pluginRepository>
<pluginRepository>
<id>robertvokac-snapshots-repository</id>
<name>robertvokac-snapshots-repository</name>
<url>https://maven.robertvokac.com/snapshots</url>
</pluginRepository>
</pluginRepositories>
</project>