You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Your lombok clone does not include the OSSRH deployment keys. Contact the core maintainers for these keys;
73
+
place them in ${gpg.keyrings} to continue.
74
+
75
+
<condition>
76
+
<not><availablefile="${gpg.keyrings}" /></not>
77
+
</condition>
78
+
</fail>
79
+
80
+
<failunless="ossrh.password">
81
+
Your lombok clone does not include the OSSRH (sonatype maven central) password, needed to upload and deploy to maven central. Contact the core maintainers.
gpg (Gnu Privacy Guard) is not on your path, or ant property exe.gpg is not properly set. Install gpg/add it to your PATH. Alternatively, run with ant -Dexe.gpg=/loc/to/gpg to continue.
<echo>The artifact has been published to staging. Now go to https://oss.sonatype.org/ and log in as Reinier, then doublecheck if all is well and 'release' it.</echo>
<targetname="maven.edge"depends="version, dist, javadoc.build"description="Create a maven repo for the current snapshot into a build dir. The intent is for you to put that on a server someplace. Will invoke your local mvn installation.">
@@ -116,12 +140,25 @@ This buildfile is part of projectlombok.org. It makes maven-compatible repositor
<targetname="maven.edge.publish"depends="maven.edge, compile.support"description="Creates the maven repo for the snapshot build and publishes it to projectlombok.org">
@@ -60,55 +64,6 @@ This buildfile is part of projectlombok.org. It sets up the build itself.
60
64
</condition>
61
65
<failunless="os.specific.native-swt-lib">Full eclipse testing requires downloading a native SWT binding. This script knows how to download for OS = [mac, linux, or windows] and architecture = [aarch64 or x86-64]. You have something different, you unique snowflake you. Your OS: "${os.name}", Your arch: "${os.arch}".</fail>
62
66
63
-
<targetname="-setup.ssh.ask">
64
-
<propertyfile="${ssh.configuration.file}" />
65
-
<fail>
66
-
Your ssh.configuration file is corrupted; delete it and rerun this script.
67
-
<condition>
68
-
<or>
69
-
<and>
70
-
<issetproperty="ssh.username" />
71
-
<equalsarg1=""arg2="${ssh.username}" />
72
-
</and>
73
-
<and>
74
-
<issetproperty="ssh.keyfile" />
75
-
<equalsarg1=""arg2="${ssh.keyfile}" />
76
-
</and>
77
-
</or>
78
-
</condition>
79
-
</fail>
80
-
<fail>
81
-
The keyfile configured in your ${ssh.configuration.file} file does not exist.
82
-
<condition>
83
-
<and>
84
-
<issetproperty="ssh.keyfile" />
85
-
<not><availablefile="${ssh.keyfile}" /></not>
86
-
</and>
87
-
</condition>
88
-
</fail>
89
-
90
-
<conditionproperty="ssh.configuration.write">
91
-
<or>
92
-
<not><issetproperty="ssh.username" /></not>
93
-
<not><issetproperty="ssh.keyfile" /></not>
94
-
</or>
95
-
</condition>
96
-
<inputmessage="What is your SSH username on the projectlombok.org server? (Enter to abort)."addproperty="ssh.username" />
Copy file name to clipboardexpand all lines: buildScripts/website.ant.xml
+4-4
Original file line number
Diff line number
Diff line change
@@ -136,7 +136,7 @@ such as applying the templates to produce the website, converting the changelog
136
136
</tar>
137
137
</target>
138
138
139
-
<targetname="website.publish"depends="setup.ssh, website.pack"description="Builds the website, compresses it, sends it to the projectlombok.org server and deploys it">
139
+
<targetname="website.publish"depends="website.pack"description="Builds the website, compresses it, sends it to the projectlombok.org server and deploys it">
140
140
<ivy:scpUpload
141
141
from="dist/website.tar.bz2"
142
142
to="/data/lombok/staging"
@@ -215,7 +215,7 @@ such as applying the templates to produce the website, converting the changelog
215
215
<echo>File dist/javadoc.tar.bz2 is available</echo>
@@ -298,7 +298,7 @@ such as applying the templates to produce the website, converting the changelog
298
298
</tar>
299
299
</target>
300
300
301
-
<targetname="edge.publish"depends="setup.ssh, edge.pack"description="Builds an edge release, sends it to the projectlombok.org server and deploys it by updating the download-edge link">
301
+
<targetname="edge.publish"depends="edge.pack"description="Builds an edge release, sends it to the projectlombok.org server and deploys it by updating the download-edge link">
0 commit comments