You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by fhueske <gi...@git.apache.org> on 2018/03/17 00:51:59 UTC

[GitHub] flink issue #5700: [FLINK-8833] [sql-client] Create a SQL Client JSON format...

Github user fhueske commented on the issue:

    https://github.com/apache/flink/pull/5700
  
    Since we are not shading anything we could also use the Maven JAR plugin:
    
    ```
    <plugin>
            <groupId>org.apache.maven.plugins</groupId>
    	<artifactId>maven-jar-plugin</artifactId>
    	<version>3.0.2</version>
    	<executions>
    		<execution>
    			<phase>package</phase>
    			<goals>
    				<goal>jar</goal>
    			</goals>
    			<configuration>
    				<classifier>sql-jar</classifier>
    			</configuration>
    		</execution>
    	</executions>
    </plugin>
    ```


---