Repository: incubator-juneau Updated Branches: refs/heads/master 2a37f3103 -> 24209d4b8
Build a juneau-all-sources.jar. Project: http://git-wip-us.apache.org/repos/asf/incubator-juneau/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-juneau/commit/24209d4b Tree: http://git-wip-us.apache.org/repos/asf/incubator-juneau/tree/24209d4b Diff: http://git-wip-us.apache.org/repos/asf/incubator-juneau/diff/24209d4b Branch: refs/heads/master Commit: 24209d4b830d4aea7d2ac891eeddcfd8384e32c1 Parents: 2a37f31 Author: JamesBognar <[email protected]> Authored: Mon Jul 31 16:58:55 2017 -0400 Committer: JamesBognar <[email protected]> Committed: Mon Jul 31 16:58:55 2017 -0400 ---------------------------------------------------------------------- juneau-all/pom.xml | 9 +++++++++ juneau-distrib/pom.xml | 16 ++++++++-------- 2 files changed, 17 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/24209d4b/juneau-all/pom.xml ---------------------------------------------------------------------- diff --git a/juneau-all/pom.xml b/juneau-all/pom.xml index a5962df..75b4565 100644 --- a/juneau-all/pom.xml +++ b/juneau-all/pom.xml @@ -85,6 +85,15 @@ <goal>shade</goal> </goals> </execution> + <execution> + <id>source-jar</id> + <goals> + <goal>shade</goal> + </goals> + <configuration> + <createSourcesJar>true</createSourcesJar> + </configuration> + </execution> </executions> </plugin> </plugins> http://git-wip-us.apache.org/repos/asf/incubator-juneau/blob/24209d4b/juneau-distrib/pom.xml ---------------------------------------------------------------------- diff --git a/juneau-distrib/pom.xml b/juneau-distrib/pom.xml index 7ed5bfe..463b6d2 100644 --- a/juneau-distrib/pom.xml +++ b/juneau-distrib/pom.xml @@ -47,6 +47,14 @@ <artifactId>juneau-all</artifactId> <version>${project.version}</version> </artifactItem> + <artifactItem> + <outputDirectory>${project.build.directory}/src</outputDirectory> + <groupId>org.apache.juneau</groupId> + <artifactId>juneau-all</artifactId> + <version>${project.version}</version> + <type>jar</type> + <classifier>sources</classifier> + </artifactItem> <artifactItem> <outputDirectory>${project.build.directory}/src/osgi-bundles</outputDirectory> @@ -138,14 +146,6 @@ <version>${project.version}</version> </artifactItem> - <artifactItem> - <outputDirectory>${project.build.directory}/src</outputDirectory> - <groupId>org.apache.juneau</groupId> - <artifactId>juneau-examples-rest</artifactId> - <version>${project.version}</version> - <type>jar</type> - <classifier>sources</classifier> - </artifactItem> </artifactItems> </configuration> </execution>
