summerb-dbupgrade
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.skarpushin</groupId>
<artifactId>summerb-dbupgrade</artifactId>
<version>9.2.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright 2015-2025 Sergey Karpushin Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable
law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -->
<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>com.github.skarpushin</groupId>
<artifactId>summerb-dbupgrade</artifactId>
<version>9.2.0</version>
<name>summerb-dbupgrade</name>
<description>Simplistic tool to upgrade database schema upon first execution of new app version</description>
<url>https://github.com/skarpushin/summerb/summerb-dbupgrade</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>skarpushin</id>
<name>Sergey Karpushin</name>
<email>sergey.v.karpushin@gmail.com</email>
<url>https://github.com/skarpushin</url>
</developer>
</developers>
<scm>
<connection>scm:git:git://github.com/skarpushin/summerb/summerb-dbupgrade</connection>
<developerConnection>scm:git:ssh://github.com:skarpushin/summerb.git/summerb-dbupgrade</developerConnection>
<url>https://github.com/skarpushin/summerb/summerb-dbupgrade</url>
</scm>
<dependencies>
<dependency>
<groupId>com.github.skarpushin</groupId>
<artifactId>summerb-utils</artifactId>
<version>9.2.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.18.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>6.2.17</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>6.2.17</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>3.5.7</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>9.6.0</version>
<scope>compile</scope>
<exclusions>
<exclusion>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.7.10</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>