Skip to content

Commit e4949de

Browse files
jnh5yjodygarnett
authored andcommitted
Added nexus-staging-maven-plugin plugin, RELEASING.md, and fixed quick
javadocs errors Signed-off-by: Jim Hughes <jnh5y@ccri.com>
1 parent 5cc0b89 commit e4949de

File tree

5 files changed

+19
-4
lines changed

5 files changed

+19
-4
lines changed

RELEASING.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
To release, one can use
2+
> mvn clean deploy -DperformRelease -DskipTests=true
3+
4+
This does require access to the org.jaitools namespace on OSSRH.

operator/vectorize/src/main/java/org/jaitools/media/jai/vectorize/VectorizeDescriptor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,8 +168,8 @@
168168
* </table>
169169
*
170170
* @see org.locationtech.jts.geom.Polygon
171-
* @see org.jaitools.media.jai.regionalize.RegionalizeDescriptor
172-
* @see org.jaitools.media.jai.rangelookup.RangeLookupDescriptor
171+
* see org.jaitools.media.jai.regionalize.RegionalizeDescriptor
172+
* see org.jaitools.media.jai.rangelookup.RangeLookupDescriptor
173173
*
174174
* @author Michael Bedward
175175
* @since 1.1

pom.xml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,17 @@
277277
</activation>
278278
<build>
279279
<plugins>
280+
<plugin>
281+
<groupId>org.sonatype.plugins</groupId>
282+
<artifactId>nexus-staging-maven-plugin</artifactId>
283+
<version>1.6.7</version>
284+
<extensions>true</extensions>
285+
<configuration>
286+
<serverId>ossrh</serverId>
287+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
288+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
289+
</configuration>
290+
</plugin>
280291
<plugin>
281292
<groupId>org.apache.maven.plugins</groupId>
282293
<artifactId>maven-gpg-plugin</artifactId>

utils/src/main/java/org/jaitools/imageutils/ROIGeometry.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ public int[][] getAsBitmask(int x, int y, int width, int height, int[][] mask) {
450450
* resulting image has a small memory footprint.
451451
*
452452
* @return a new image representing this ROI
453-
* @see org.jaitools.media.jai.vectorbinarize.VectorBinarizeDescriptor
453+
* see org.jaitools.media.jai.vectorbinarize.VectorBinarizeDescriptor
454454
*/
455455
@Override
456456
public PlanarImage getAsImage() {

utils/src/main/java/org/jaitools/numeric/Range.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
*
5353
* @param <T>
5454
* @see RangeComparator
55-
* @see org.jaitools.media.jai.rangelookup.RangeLookupDescriptor
55+
* see org.jaitools.media.jai.rangelookup.RangeLookupDescriptor
5656
*
5757
* @author Michael Bedward
5858
* @since 1.0

0 commit comments

Comments
 (0)