flyway-extension-commandline
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>ch.inftec.flyway</groupId> <artifactId>flyway-extension-commandline</artifactId> <version>3.2.1-Final</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>ch.inftec.flyway</groupId> <artifactId>flyway-extension</artifactId> <version>3.2.1-Final</version> </parent> <artifactId>flyway-extension-commandline</artifactId> <packaging>jar</packaging> <name>${project.artifactId}</name> <dependencies> <dependency> <groupId>org.flywaydb</groupId> <artifactId>flyway-core</artifactId> </dependency> <dependency> <groupId>org.flywaydb</groupId> <artifactId>flyway-commandline</artifactId> <type>tar.gz</type> </dependency> <dependency> <groupId>org.flywaydb</groupId> <artifactId>flyway-commandline</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>flyway-extension-core</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> <version>4.11</version> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/resources</directory> <filtering>true</filtering> </resource> </resources> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <executions> <execution> <id>unpack-original</id> <phase>process-resources</phase> <goals> <goal>unpack-dependencies</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/original</outputDirectory> <includeArtifactIds>flyway-commandline</includeArtifactIds> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>make-assembly</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <appendAssemblyId>false</appendAssemblyId> <descriptorSourceDirectory>src/main/assembly</descriptorSourceDirectory> <encoding>UTF-8</encoding> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>