- Javadoc doesn't like angle brackets
 - Add jar to artifacts
This commit is contained in:
Jozufozu 2021-08-06 12:13:51 -07:00
parent 333ef9ecbb
commit 0349d57929
3 changed files with 15 additions and 15 deletions

View file

@ -201,7 +201,7 @@ task javadocJar(type: Jar, dependsOn: javadoc) {
} }
artifacts { artifacts {
archives shadowJar, sourcesJar, javadocJar archives jar, shadowJar, sourcesJar, javadocJar
} }
publishing { publishing {

View file

@ -282,8 +282,8 @@ public class PipeConnection {
/** /**
* @return zero if outward == inbound <br> * @return zero if outward == inbound <br>
* positive if outward > inbound <br> * positive if outward {@literal >} inbound <br>
* negative if outward < inbound * negative if outward {@literal <} inbound
*/ */
public float comparePressure() { public float comparePressure() {
return getOutwardPressure() - getInboundPressure(); return getOutwardPressure() - getInboundPressure();

View file

@ -165,7 +165,7 @@ public class SceneBuilder {
* Use this in case you are not happy with the scale of the scene relative to * Use this in case you are not happy with the scale of the scene relative to
* the overlay * the overlay
* *
* @param factor >1 will make the scene appear larger, smaller otherwise * @param factor {@literal >}1 will make the scene appear larger, smaller otherwise
*/ */
public void scaleSceneView(float factor) { public void scaleSceneView(float factor) {
scene.scaleFactor = factor; scene.scaleFactor = factor;
@ -175,7 +175,7 @@ public class SceneBuilder {
* Use this in case you are not happy with the vertical alignment of the scene * Use this in case you are not happy with the vertical alignment of the scene
* relative to the overlay * relative to the overlay
* *
* @param yOffset >0 moves the scene up, down otherwise * @param yOffset {@literal >}0 moves the scene up, down otherwise
*/ */
public void setSceneOffsetY(float yOffset) { public void setSceneOffsetY(float yOffset) {
scene.yOffset = yOffset; scene.yOffset = yOffset;