You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by tr...@apache.org on 2022/01/27 09:53:11 UTC

[flink-statefun] branch release-3.2 updated: [FLINK-25829] Skip deployment of statefun-sdk-js

This is an automated email from the ASF dual-hosted git repository.

trohrmann pushed a commit to branch release-3.2
in repository https://gitbox.apache.org/repos/asf/flink-statefun.git


The following commit(s) were added to refs/heads/release-3.2 by this push:
     new 581c0cd  [FLINK-25829] Skip deployment of statefun-sdk-js
581c0cd is described below

commit 581c0cd63b824ef2f80c63d126c3dcfc057da139
Author: Till Rohrmann <tr...@apache.org>
AuthorDate: Wed Jan 26 15:12:39 2022 +0100

    [FLINK-25829] Skip deployment of statefun-sdk-js
    
    This closes #287.
---
 statefun-sdk-js/pom.xml | 20 ++++----------------
 1 file changed, 4 insertions(+), 16 deletions(-)

diff --git a/statefun-sdk-js/pom.xml b/statefun-sdk-js/pom.xml
index e3cc7bd..eb8f648 100644
--- a/statefun-sdk-js/pom.xml
+++ b/statefun-sdk-js/pom.xml
@@ -32,23 +32,11 @@ under the License.
         <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-source-plugin</artifactId>
-                <executions>
-                    <execution>
-                        <id>attach-sources</id>
-                        <phase>package</phase>
-                        <goals>
-                            <goal>jar-no-fork</goal>
-                        </goals>
-                    </execution>
-                </executions>
+                <artifactId>maven-deploy-plugin</artifactId>
+                <configuration>
+                    <skip>true</skip>
+                </configuration>
             </plugin>
         </plugins>
-        <resources>
-            <resource>
-                <!-- include src/main/protobuf in the resulting artifact. -->
-                <directory>src/main/protobuf</directory>
-            </resource>
-        </resources>
     </build>
 </project>