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

69 lines
2.3 KiB
XML
Raw Permalink Normal View History

2022-12-17 15:32:48 +01:00
<?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>
2023-06-17 18:00:30 +02:00
<groupId>org.nanoboot.essential</groupId>
2022-12-17 15:32:48 +01:00
<artifactId>nanoboot-parent</artifactId>
2023-07-01 13:25:22 +02:00
<version>0.1.0</version>
2022-12-17 15:32:48 +01:00
</parent>
<groupId>org.nanoboot.tools.dbmigration</groupId>
<artifactId>db-migration</artifactId>
2023-07-01 13:25:22 +02:00
<version>0.1.0</version>
2022-12-17 15:32:48 +01:00
<packaging>pom</packaging>
<name>DB Migration</name>
<description>Tool migrating databases versions.</description>
<properties>
2023-07-01 13:25:22 +02:00
<dbmigration.version>0.1.0</dbmigration.version>
2022-12-17 15:32:48 +01:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<checkstyle.skip>true</checkstyle.skip><!-- TODO: make false-->
2023-07-01 13:25:22 +02:00
<power.version>2.0.0</power.version>
2022-12-17 15:32:48 +01:00
</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>
</project>