chore: generate MIT version

This commit is contained in:
Arnaud Roques 2023-05-12 16:03:57 +02:00
parent b3a0c52d40
commit 72f2d856f3
6 changed files with 8 additions and 5 deletions

View File

@ -20,6 +20,8 @@ cp "build/libs/plantuml-${RELEASE_VERSION}.jar" "github_release/plantuml-SNAPSHO
cp "build/libs/plantuml-${RELEASE_VERSION}-javadoc.jar" "github_release/plantuml-SNAPSHOT-javadoc.jar"
cp "build/libs/plantuml-${RELEASE_VERSION}-sources.jar" "github_release/plantuml-SNAPSHOT-sources.jar"
cp "build/libs/plantuml-pdf-${RELEASE_VERSION}.jar" "github_release/plantuml-pdf-SNAPSHOT.jar"
cp "plantuml-mit/build/libs/plantuml-mit-${RELEASE_VERSION}.jar" "github_release/plantuml-mit-SNAPSHOT.jar"
cp "plantuml-mit/build/libs/plantuml-mit-${RELEASE_VERSION}-sources.jar" "github_release/plantuml-mit-SNAPSHOT-sources.jar"
if [[ -e "build/publications/maven/module.json.asc" ]]; then
# signatures are optional so that forked repos can release snapshots without needing a gpg signing key

View File

@ -126,8 +126,8 @@ publishing {
url.set("https://plantuml.com/")
licenses {
license {
name.set("The GNU General Public License")
url.set("http://www.gnu.org/licenses/gpl.txt")
name.set("MIT License")
url.set("https://opensource.org/license/mit/")
}
}
developers {

View File

@ -2,3 +2,4 @@ rootProject.name = "plantuml"
val isCiBuild = System.getenv("CI") != null
include("plantuml-mit")

View File

@ -113,7 +113,7 @@ public interface Blake2b {
/** max tree inner length value */
int max_tree_inner_length = 0xFF;
/** initialization values map ref-Spec IV[i] -> slice iv[i*8:i*8+7] */
/** initialization values map ref-Spec IV[i] slice iv[i*8:i*8+7] */
long[] IV = { 0x6a09e667f3bcc908L, 0xbb67ae8584caa73bL, 0x3c6ef372fe94f82bL, 0xa54ff53a5f1d36f1L,
0x510e527fade682d1L, 0x9b05688c2b3e6c1fL, 0x1f83d9abfb41bd6bL, 0x5be0cd19137e2179L };

View File

@ -77,7 +77,7 @@ public class XLine2D implements UDrawable {
* specified line segment
* @return a double value that is the square of the distance from the specified
* point to the specified line segment.
* @see #ptLineDistSq(double, double, double, double, double, double)
*
* @since 1.2
*/
public static double ptSegDistSq(double x1, double y1, double x2, double y2, double px, double py) {

View File

@ -86,7 +86,7 @@ import net.sourceforge.plantuml.utils.LineLocation;
* ' loads a remote JSON from an endpoint (and default, if not reachable)
* !$STATUS_NO_CONNECTION={"status": "No connection"}
* !$JSON_REMOTE_DEF=%load_json("https://localhost:7778/management/health", $STATUS_NO_CONNECTION)
* status -> $JSON_REMOTE_DEF.status
* status -> $JSON_REMOTE_DEF.status
* @ enduml
* </pre>
*