deploy-sqlstream-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.yogboot</groupId> <artifactId>deploy-sqlstream-plugin</artifactId> <version>1.0.3</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"> <parent> <artifactId>deploy-plugins</artifactId> <groupId>io.github.yogboot</groupId> <version>1.0.3</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>deploy-sqlstream-plugin</artifactId> <name>deploy-sqlstream-plugin</name> <version>1.0.3</version> <description>deploy-sqlstream-plugin</description> <build> <finalName>deploy-sqlstream-plugin</finalName> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>${java.version}</source> <target>${java.version}</target> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <version>3.1.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <excludes> <exclude>com.google.code.findbugs:jsr305</exclude> </excludes> </artifactSet> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> <transformers> <transformer> <mainClass>io.github.yogboot.plugin.sqlstream.SqlJob</mainClass> </transformer> <transformer /> </transformers> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-json</artifactId> <version>1.14.6</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-csv</artifactId> <version>1.14.6</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.flink</groupId> <artifactId>flink-table-planner_2.12</artifactId> <version>1.14.6</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>flink-table-api-scala_2.12</artifactId> <groupId>org.apache.flink</groupId> </exclusion> <exclusion> <artifactId>flink-table-api-scala-bridge_2.12</artifactId> <groupId>org.apache.flink</groupId> </exclusion> <exclusion> <artifactId>flink-table-runtime_2.12</artifactId> <groupId>org.apache.flink</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.26</version> <scope>provided</scope> </dependency> </dependencies> </project>