Skip to content

Commit

Permalink
Generate the combined uber-jar more carefully.
Browse files Browse the repository at this point in the history
* The resulting filename (in target/) is jgrapht-VERSION-combined.jar, not jgrapht-ext-VERSION-shaded.jar.
* The uber-jar no longer contains org.jgraph classes, and must be used alongside jgraph if using those features.
  • Loading branch information
Owen Jacobson authored and poison committed Mar 7, 2012
1 parent 6a627fc commit a5f70db
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion jgrapht-ext/pom.xml
Expand Up @@ -24,7 +24,14 @@
</execution>
</executions>
<configuration>
<finalName>${project.artifactId}-${project.version}-shade</finalName>
<artifactSet>
<includes>
<include>net.sf.jgrapht</include>
</includes>
</artifactSet>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>combined</shadedClassifierName>
<finalName>jgrapht-${project.version}-combined</finalName>
</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit a5f70db

Please sign in to comment.