Skip to content

Commit

Permalink
Remove maven-shade-plugin to publish original pom (#132)
Browse files Browse the repository at this point in the history
The shade-plugin alters the pom.xml removing runtime dependencies.
This makes that components consuming asciidoclet cannot resolve required
dependencies like AsciidoctorJ, causing conversion to fail.

closes #120
  • Loading branch information
abelsromero authored Apr 15, 2024
1 parent 609d2c2 commit 0af010a
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@
<mavenExecutorId>forked-path</mavenExecutorId>
</configuration>
</plugin>
<!-- default plugins for build, if not defined in parent-pom -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
Expand Down Expand Up @@ -242,23 +241,6 @@
<strictCheck>true</strictCheck>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.2</version>
<configuration>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>shaded</shadedClassifierName>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 0af010a

Please sign in to comment.