Skip to content

Commit

Permalink
fixing pipeline of publishing task
Browse files Browse the repository at this point in the history
  • Loading branch information
dsalathe committed Nov 20, 2023
1 parent 5809365 commit 1dc69e1
Showing 1 changed file with 26 additions and 9 deletions.
35 changes: 26 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -195,22 +195,39 @@
</distributionManagement>
<build>
<plugins>
<!-- create scala-doc -->
<plugin>
<!-- see http://davidb.github.com/scala-maven-plugin -->
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>4.5.6</version>
<version>4.5.4</version>
<executions>
<execution>
<id>scala-doc</id>
<goals>
<goal>doc-jar</goal>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>io.smartdatalake.Main</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<args>
<arg>-no-link-warnings</arg>
</args>
</configuration>
</execution>
</executions>
</plugin>
Expand Down

0 comments on commit 1dc69e1

Please sign in to comment.