Skip to content

Commit

Permalink
(apache#25) Add profile to create shaded source-jars
Browse files Browse the repository at this point in the history
  • Loading branch information
zentol committed Aug 28, 2017
1 parent c696129 commit d5d4548
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 0 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ The shaded dependencies contained here do not expose any transitive dependencies

When using these dependencies it is recommended to work directly against the shaded namespaces.

## Sources

We currently)do not release jars containing the shaded sources due to the unanswered legal questions in #25.

However, it is possible to build these jars locally by cloning the repository and calling `mvn package -Dshade-sources`.

## About

Apache Flink is an open source project of [The Apache Software Foundation](https://apache.org/) (ASF).
22 changes: 22 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,28 @@ under the License.
</plugins>
</build>
</profile>
<profile>
<id>shade-sources</id>
<activation>
<property>
<name>shade-sources</name>
</property>
</activation>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<configuration combine.children="append">
<createSourcesJar>true</createSourcesJar>
<shadeSourcesContent>true</shadeSourcesContent>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</profile>
</profiles>

<build>
Expand Down

0 comments on commit d5d4548

Please sign in to comment.