Fonts: added font license to maven pom

This commit is contained in:
Karl Tauber
2022-11-19 11:31:06 +01:00
parent 05240abfe0
commit 1762e0b7a6
2 changed files with 30 additions and 0 deletions

View File

@@ -60,3 +60,18 @@ flatlafPublish {
artifactId = "flatlaf-fonts-inter"
name = "FlatLaf Inter Fonts Pack"
}
publishing {
publications {
named<MavenPublication>( "maven" ) {
pom {
licenses {
license {
name.set( "SIL OPEN FONT LICENSE Version 1.1" )
url.set( "https://choosealicense.com/licenses/ofl-1.1/" )
}
}
}
}
}
}

View File

@@ -60,3 +60,18 @@ flatlafPublish {
artifactId = "flatlaf-fonts-jetbrains-mono"
name = "FlatLaf JetBrains Mono Fonts Pack"
}
publishing {
publications {
named<MavenPublication>( "maven" ) {
pom {
licenses {
license {
name.set( "SIL OPEN FONT LICENSE Version 1.1" )
url.set( "https://choosealicense.com/licenses/ofl-1.1/" )
}
}
}
}
}
}