You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by wi...@apache.org on 2020/02/12 10:17:19 UTC

[incubator-streampipes-extensions] branch dev updated: fixed plugin configuration in pom.xml

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

wiener pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes-extensions.git


The following commit(s) were added to refs/heads/dev by this push:
     new d6aebc4  fixed plugin configuration in pom.xml
d6aebc4 is described below

commit d6aebc404fa5afb476a382bbe48092e2fb99ee86
Author: Patrick Wiener <wi...@fzi.de>
AuthorDate: Wed Feb 12 11:17:08 2020 +0100

    fixed plugin configuration in pom.xml
---
 streampipes-processors-enricher-jvm/pom.xml | 24 +++++++++++++++---------
 1 file changed, 15 insertions(+), 9 deletions(-)

diff --git a/streampipes-processors-enricher-jvm/pom.xml b/streampipes-processors-enricher-jvm/pom.xml
index 7e388f9..40f2333 100644
--- a/streampipes-processors-enricher-jvm/pom.xml
+++ b/streampipes-processors-enricher-jvm/pom.xml
@@ -55,6 +55,21 @@
     <build>
         <plugins>
             <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <executions>
+                    <execution>
+                        <goals>
+                            <goal>jar</goal>
+                        </goals>
+                        <phase>package</phase>
+                        <configuration>
+                            <classifier>embed</classifier>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
                 <groupId>org.springframework.boot</groupId>
                 <artifactId>spring-boot-maven-plugin</artifactId>
                 <executions>
@@ -65,15 +80,6 @@
                     </execution>
                 </executions>
             </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-compiler-plugin</artifactId>
-                <version>3.8.1</version>
-                <configuration>
-                    <source>1.8</source>
-                    <target>1.8</target>
-                </configuration>
-            </plugin>
         </plugins>
         <finalName>streampipes-processors-enricher-jvm</finalName>