-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Monocle for JDK 8.0.372 * Enable GitHub actions * Set JDK to 8.0.372 * Fix gradle build for JDK 8 * Fix gradle build for JDK 8 * Initial release script * Initial bundle script * Include gradle script to publish a pom * Gradle build for Maven artifacts * Gradle build for Maven artifacts * Add engineer notes * Update developer notes * Start work on Monocle 11 build * Fix build for Java 11 * Fix pom for Java 11 * Update to version 17.0.10 * Update gradle, script and configuration * Fix build configuration * Fix build configuration * Update to JFX 21.0.2 * Update to JFX 21.0.2 * Update to JFX 21.0.2
- Loading branch information
Showing
77 changed files
with
3,769 additions
and
284 deletions.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/* | ||
* Copyright 2013-2014 SmartBear Software | ||
* Copyright 2014-2023 The TestFX Contributors | ||
* | ||
* Licensed under the EUPL, Version 1.1 or - as soon they will be approved by the | ||
* European Commission - subsequent versions of the EUPL (the "Licence"); You may | ||
* not use this work except in compliance with the Licence. | ||
* | ||
* You may obtain a copy of the Licence at: | ||
* http://ec.europa.eu/idabc/eupl | ||
* | ||
* Unless required by applicable law or agreed to in writing, software distributed | ||
* under the Licence is distributed on an "AS IS" basis, WITHOUT WARRANTIES OR | ||
* CONDITIONS OF ANY KIND, either express or implied. See the Licence for the | ||
* specific language governing permissions and limitations under the Licence. | ||
*/ | ||
|
||
publishing { | ||
publications { | ||
maven(MavenPublication) { | ||
pom { | ||
name = "${project.pomName}" | ||
description = "${project.description}" | ||
url = "https://openjfx.io/" | ||
|
||
licenses { | ||
license { | ||
name = "GNU General Public License, version 2, with the Classpath Exception" | ||
url = "https://github.com/TestFX/Monocle/blob/main/LICENSE" | ||
distribution = "repo" | ||
} | ||
} | ||
|
||
scm { | ||
url = "https://github.com/TestFX/Monocle" | ||
} | ||
|
||
developers { | ||
developer { | ||
name = "The OpenJDK Community" | ||
} | ||
} | ||
|
||
withXml { | ||
asNode().appendNode('dependencies') | ||
.appendNode('dependency') | ||
.appendNode('groupId', 'org.openjfx') | ||
.parent() | ||
.appendNode('artifactId', 'javafx-base') | ||
.parent() | ||
.appendNode('version', "${project.pomDependencyVersion}") | ||
.parent() | ||
.appendNode('scope', 'provided') | ||
.parent() | ||
.parent() | ||
.appendNode('dependency') | ||
.appendNode('groupId', 'org.openjfx') | ||
.parent() | ||
.appendNode('artifactId', 'javafx-graphics') | ||
.parent() | ||
.appendNode('version', "${project.pomDependencyVersion}") | ||
.parent() | ||
.appendNode('scope', 'provided') | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
tasks.named("generatePomFileForMavenPublication") { | ||
destination = "$buildDir/libs/${project.name}-${project.version}.pom" | ||
} |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.