sqldump-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.bitbucket.tbrugz</groupId>
<artifactId>sqldump-core</artifactId>
<version>0.12</version>
</dependency><?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.bitbucket.tbrugz</groupId>
<artifactId>sqldump</artifactId>
<version>0.12</version>
</parent>
<groupId>org.bitbucket.tbrugz</groupId>
<artifactId>sqldump-core</artifactId>
<version>0.12</version>
<packaging>jar</packaging>
<name>sqldump-core</name>
<description>
Utility to dump schema and data from a RDBMS
</description>
<url>https://github.com/tbrugz/sqldump</url>
<properties>
</properties>
<licenses>
<license>
<name>GNU Affero General Public License, Version 3</name>
<url>https://www.gnu.org/licenses/agpl-3.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<build>
<!--<sourceDirectory>src</sourceDirectory>-->
<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>true</filtering>
<excludes>
<exclude>log4j.properties</exclude>
</excludes>
</resource>
</resources>
<!--<sourceDirectory>src, src_anttasks, src_castor, src_cdi, src_diff, src_graphml, src_pivot, src_run, src_utilities, src_xtra</sourceDirectory>-->
<!--
<testSourceDirectory>src/test/java</testSourceDirectory>
<testResources>
<testResource>
<directory>../src_test</directory>
</testResource>
</testResources>
-->
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>buildnumber-maven-plugin</artifactId>
<version>${buildnumber-maven-plugin.version}</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>create</goal>
</goals>
</execution>
</executions>
<configuration>
<doCheck>true</doCheck>
<doUpdate>false</doUpdate>
<failTheBuild>false</failTheBuild>
<timestampFormat>yyyy-MM-dd HH:mm:ss</timestampFormat>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<exportAntProperties>true</exportAntProperties>
<target>
<!-- get timestamp of last commit -->
<!-- use 'project.build.outputTimestamp'? needs 'cI' format -->
<exec executable="git" outputproperty="revisionTimestamp" failonerror="true">
<!-- 'ci' (Local Timezone) or 'cI' (Strict UTC)? -->
<arg line="show -s --format=%ci"/>
</exec>
<echo message="revisionTimestamp: ${revisionTimestamp}"/>
</target>
</configuration>
</execution>
</executions>
</plugin>
<!--
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<phase>generate-sources</phase>
<goals>
<goal>add-source</goal>
</goals>
<configuration>
<sources>
<source>../src_anttasks</source>
<source>../src_cdi</source>
<source>../src_diff</source>
<source>../src_graphml</source>
<source>../src_pivot</source>
<source>../src_run</source>
<source>src_utilities</source>
<source>../src_xtra</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
-->
</plugins>
</build>
<dependencies>
<!--
<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
<version>2.0</version>
<scope>compile</scope>
</dependency>
-->
<!--
https://stackoverflow.com/questions/69599649/how-does-jakarta-java-ee-compatibility-work
https://jakarta.ee/specifications/cdi/
CDI 3 (Jakarta EE 9) : works with java 8+
CDI 4 (Jakarta EE 10): works with java 11+
-->
<dependency>
<groupId>jakarta.enterprise</groupId>
<artifactId>jakarta.enterprise.cdi-api</artifactId>
<!--
<version>4.0.1</version>
-->
<version>3.0.1</version>
<scope>compile</scope>
</dependency>
<!--
https://jakarta.ee/specifications/xml-binding/
-->
<dependency>
<groupId>jakarta.xml.bind</groupId>
<artifactId>jakarta.xml.bind-api</artifactId>
<version>${jaxb.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.codehaus.jettison</groupId>
<artifactId>jettison</artifactId>
<version>1.5.5</version>
<scope>compile</scope>
</dependency>
<!--
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>${poi-ooxml.version}</version>
<scope>compile</scope>
</dependency>
-->
<!-- https://github.com/java-diff-utils/java-diff-utils -->
<dependency>
<groupId>io.github.java-diff-utils</groupId>
<artifactId>java-diff-utils</artifactId>
<version>4.15</version>
<!--
<groupId>com.googlecode.java-diff-utils</groupId>
<artifactId>diffutils</artifactId>
<version>1.3.0</version>
-->
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>${h2.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<version>${derby.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>${hsqldb.version}</version>
<classifier>jdk8</classifier> <!-- Targets hsqldb-jdk8.jar -->
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.glassfish.jaxb</groupId>
<artifactId>jaxb-runtime</artifactId>
<version>${jaxb-impl.version}</version>
<scope>runtime</scope>
</dependency>
<!--
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>${jaxb-impl.version}</version>
<scope>runtime</scope>
</dependency>
-->
</dependencies>
</project>