-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[JBEAP-25435] Add licenses to the prospero feature packs #442
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||
<licenseSummary> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.jboss</groupId> | ||
<artifactId>staxmapper</artifactId> | ||
<licenses> | ||
<license> | ||
<name>GNU Lesser General Public License v2.1 or later</name> | ||
<url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.wildfly.channel</groupId> | ||
<artifactId>channel-core</artifactId> | ||
<licenses> | ||
<license> | ||
<name>Apache License 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.wildfly.channel</groupId> | ||
<artifactId>maven-resolver</artifactId> | ||
<licenses> | ||
<license> | ||
<name>Apache License 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.wildfly.prospero</groupId> | ||
<artifactId>prospero-cli</artifactId> | ||
<licenses> | ||
<license> | ||
<name>Apache License 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.wildfly.prospero</groupId> | ||
<artifactId>prospero-common</artifactId> | ||
<licenses> | ||
<license> | ||
<name>Apache License 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.wildfly.prospero</groupId> | ||
<artifactId>prospero-common</artifactId> | ||
<licenses> | ||
<license> | ||
<name>Apache License 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.wildfly.prospero</groupId> | ||
<artifactId>prospero-metadata</artifactId> | ||
<licenses> | ||
<license> | ||
<name>Apache License 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.wildfly.prospero</groupId> | ||
<artifactId>prospero-core</artifactId> | ||
<licenses> | ||
<license> | ||
<name>Apache License 2.0</name> | ||
<url>http://www.apache.org/licenses/LICENSE-2.0</url> | ||
<distribution>repo</distribution> | ||
</license> | ||
</licenses> | ||
</dependency> | ||
</dependencies> | ||
</licenseSummary> |
98 changes: 98 additions & 0 deletions
98
...mon/src/main/resources/packages/docs.licenses/content/docs/licenses/prospero-licenses.xsl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
<?xml version="1.0"?> | ||
<xsl:stylesheet version="1.0" | ||
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | ||
|
||
<xsl:output method="html" encoding="utf-8" standalone="no" media-type="text/html" /> | ||
<xsl:param name="version"/> | ||
<xsl:param name="product.release.name"/> | ||
<xsl:variable name="lowercase" select="'abcdefghijklmnopqrstuvwxyz '" /> | ||
<xsl:variable name="uppercase" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ!'" /> | ||
|
||
<xsl:template match="/"> | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> | ||
<link rel="stylesheet" type="text/css" href="licenses.css"/> | ||
</head> | ||
<body> | ||
<h2><xsl:value-of select="$product.release.name"/><xsl:text> </xsl:text><xsl:value-of select="substring-before($version, '-')"/></h2> | ||
<p>The following material has been provided for informational purposes only, and should not be relied upon or construed as a legal opinion or legal advice.</p> | ||
<!-- Read matching templates --> | ||
<table> | ||
<tr> | ||
<th>Package Group</th> | ||
<th>Package Artifact</th> | ||
<th>Package Version</th> | ||
<th>Remote Licenses</th> | ||
<th>Local Licenses</th> | ||
</tr> | ||
<xsl:for-each select="licenseSummary/dependencies/dependency"> | ||
<xsl:sort select="concat(groupId, '.', artifactId)"/> | ||
<xsl:variable name="GAV" select="concat(groupId, ':', artifactId, ':', version)"/> | ||
<xsl:variable name="countOfPrevious" select="count(preceding-sibling::*[(concat(groupId, ':', artifactId, ':', version) = $GAV)])"/> | ||
<xsl:if test="$countOfPrevious = 0"> | ||
<tr> | ||
<td><xsl:value-of select="groupId"/></td> | ||
<td><xsl:value-of select="artifactId"/></td> | ||
<td><xsl:value-of select="version"/></td> | ||
<td> | ||
<xsl:for-each select="licenses/license"> | ||
<xsl:choose> | ||
<xsl:when test="name = 'Public Domain'"> | ||
<xsl:value-of select="name"/><br/> | ||
</xsl:when> | ||
<xsl:otherwise> | ||
<a href="{./url}"><xsl:value-of select="name"/></a><br/> | ||
</xsl:otherwise> | ||
</xsl:choose> | ||
</xsl:for-each> | ||
</td> | ||
<td> | ||
<xsl:for-each select="licenses/license"> | ||
<xsl:variable name="filename"> | ||
<xsl:call-template name="remap-local-filename"> | ||
<xsl:with-param name="name" select="name" /> | ||
</xsl:call-template> | ||
</xsl:variable> | ||
<a href="{$filename}"><xsl:value-of select="$filename"/></a><br/> | ||
</xsl:for-each> | ||
</td> | ||
</tr> | ||
</xsl:if> | ||
</xsl:for-each> | ||
</table> | ||
</body> | ||
</html> | ||
</xsl:template> | ||
|
||
<xsl:template name="remap-local-filename"> | ||
<xsl:param name="name"/> | ||
<xsl:choose> | ||
<xsl:when test="$name = 'BSD 2-clause "Simplified" License'"> | ||
<xsl:text>bsd 2-clause simplified license.html</xsl:text> | ||
</xsl:when> | ||
<xsl:when test="$name = 'BSD 3-Clause "New" or "Revised" License'"> | ||
<xsl:text>bsd 3-clause new or revised license.html</xsl:text> | ||
</xsl:when> | ||
<xsl:when test="$name = 'Creative Commons Attribution 2.5'"> | ||
<xsl:text>creative commons attribution 2.5.html</xsl:text> | ||
</xsl:when> | ||
<xsl:when test="$name = 'FSF All Permissive License'"> | ||
<xsl:text>fsf all permissive license.html</xsl:text> | ||
</xsl:when> | ||
<xsl:when test="$name = 'Indiana University Extreme! Lab Software License 1.1.1'"> | ||
<xsl:text>indiana university extreme lab software license 1.1.1.html</xsl:text> | ||
</xsl:when> | ||
<xsl:when test="$name = 'MIT-0'"> | ||
<xsl:text>mit-0.html</xsl:text> | ||
</xsl:when> | ||
<xsl:when test="$name = 'Mozilla Public License 2.0'"> | ||
<xsl:text>mozilla public license 2.0.html</xsl:text> | ||
</xsl:when> | ||
<xsl:otherwise> | ||
<xsl:value-of select="concat(translate($name, $uppercase, $lowercase), '.txt')"/> | ||
</xsl:otherwise> | ||
</xsl:choose> | ||
</xsl:template> | ||
<!-- foobar --> | ||
</xsl:stylesheet> |
1 change: 1 addition & 0 deletions
1
dist/common/src/main/resources/packages/docs.licenses/package.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<package-spec xmlns="urn:jboss:galleon:package:2.0" name="docs.licenses"/> |
11 changes: 11 additions & 0 deletions
11
dist/common/src/main/resources/packages/docs.licenses/pm/wildfly/tasks.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?xml version="1.0" ?> | ||
|
||
<tasks xmlns="urn:wildfly:wildfly-feature-pack-tasks:3.1"> | ||
<transform stylesheet="docs/licenses/prospero-licenses.xsl" src="docs/licenses/${prospero.dist.name}-feature-pack-licenses.xml" output="docs/licenses/${prospero.dist.name}-feature-pack-licenses.html" feature-pack-properties="true" phase="FINALIZING"/> | ||
<delete path="docs/licenses/prospero-licenses.xsl"/> | ||
<line-endings phase="FINALIZING"> | ||
<unix> | ||
<filter pattern="docs?licenses?${prospero.dist.name}-feature-pack-licenses.html" include="true"/> | ||
</unix> | ||
</line-endings> | ||
</tasks> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jfdenise in the wildfly's version the renamed licenses.xsl is removed - do you know why that's done and if Prospero should also remove the XSL file?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suspect it is removed because useless inside an installation. Prospero should also remove it I think.