File tree Expand file tree Collapse file tree 4 files changed +23
-14
lines changed
Expand file tree Collapse file tree 4 files changed +23
-14
lines changed Original file line number Diff line number Diff line change @@ -3,3 +3,5 @@ rstaui_*.zip
33.gradle
44build
55out /
6+ .vscode /
7+
Original file line number Diff line number Diff line change 99}
1010
1111dependencies {
12- api ' com.fifesoft:rsyntaxtextarea:3.5.4 '
13- api ' com.fifesoft:autocomplete:3.3.2 '
12+ api ' com.fifesoft:rsyntaxtextarea:3.6.1 '
13+ api ' com.fifesoft:autocomplete:3.3.3 '
1414 testImplementation platform(' org.junit:junit-bom:5.12.1' )
1515 testImplementation ' org.junit.jupiter:junit-jupiter'
1616 testRuntimeOnly ' org.junit.platform:junit-platform-launcher'
4444}
4545
4646publishing {
47- repositories {
48- maven {
49- def releasesRepoUrl = ' https://oss.sonatype.org/service/local/staging/deploy/maven2/'
50- def snapshotsRepoUrl = ' https://oss.sonatype.org/content/repositories/snapshots/'
51- url = isReleaseVersion ? releasesRepoUrl : snapshotsRepoUrl
52- credentials { // Credentials usually kept in user's .gradle/gradle.properties
53- // We must defensively check for these properties so Travis CI build works
54- username = project. hasProperty(' ossrhUsername' ) ? ossrhUsername : ' unknown'
55- password = project. hasProperty(' ossrhPassword' ) ? ossrhPassword : ' unknown'
56- }
57- }
58- }
5947 publications {
6048 maven(MavenPublication ) {
6149
Original file line number Diff line number Diff line change 11plugins {
22 id ' com.github.spotbugs' version ' 6.1.7'
3+ id ' io.github.gradle-nexus.publish-plugin' version ' 2.0.0'
34}
45
56// We require building with JDK 17 or later. Built artifact compatibility
@@ -75,3 +76,15 @@ subprojects {
7576 options. compilerArgs << ' -Xlint:deprecation' << ' -Xlint:unchecked'
7677 }
7778}
79+
80+ nexusPublishing {
81+ repositories {
82+ sonatype {
83+ nexusUrl. set(uri(" https://ossrh-staging-api.central.sonatype.com/service/local/" ))
84+ snapshotRepositoryUrl. set(uri(" https://central.sonatype.com/repository/maven-snapshots/" ))
85+ // We must defensively check for these properties so CI builds work
86+ username. set(project. hasProperty(' sonatypeUsername' ) ? sonatypeUsername : ' unknown' )
87+ password. set(project. hasProperty(' sonatypePassword' ) ? sonatypePassword : ' unknown' )
88+ }
89+ }
90+ }
Original file line number Diff line number Diff line change 1+ pluginManagement {
2+ repositories {
3+ gradlePluginPortal()
4+ }
5+ }
6+
17rootProject. name = ' RSTAUI'
28
39include ' RSTAUI' , ' RSTAUIDemo'
You can’t perform that action at this time.
0 commit comments