Skip to content

Commit

Permalink
Added nexus-staging-maven-plugin plugin, RELEASING.md, and fixed quick
Browse files Browse the repository at this point in the history
javadocs errors

Signed-off-by: Jim Hughes <jnh5y@ccri.com>
  • Loading branch information
jnh5y authored and jodygarnett committed Jul 2, 2020
1 parent 5cc0b89 commit e4949de
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 4 deletions.
4 changes: 4 additions & 0 deletions RELEASING.md
@@ -0,0 +1,4 @@
To release, one can use
> mvn clean deploy -DperformRelease -DskipTests=true
This does require access to the org.jaitools namespace on OSSRH.
Expand Up @@ -168,8 +168,8 @@
* </table>
*
* @see org.locationtech.jts.geom.Polygon
* @see org.jaitools.media.jai.regionalize.RegionalizeDescriptor
* @see org.jaitools.media.jai.rangelookup.RangeLookupDescriptor
* see org.jaitools.media.jai.regionalize.RegionalizeDescriptor
* see org.jaitools.media.jai.rangelookup.RangeLookupDescriptor
*
* @author Michael Bedward
* @since 1.1
Expand Down
11 changes: 11 additions & 0 deletions pom.xml
Expand Up @@ -277,6 +277,17 @@
</activation>
<build>
<plugins>
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
Expand Down
Expand Up @@ -450,7 +450,7 @@ public int[][] getAsBitmask(int x, int y, int width, int height, int[][] mask) {
* resulting image has a small memory footprint.
*
* @return a new image representing this ROI
* @see org.jaitools.media.jai.vectorbinarize.VectorBinarizeDescriptor
* see org.jaitools.media.jai.vectorbinarize.VectorBinarizeDescriptor
*/
@Override
public PlanarImage getAsImage() {
Expand Down
2 changes: 1 addition & 1 deletion utils/src/main/java/org/jaitools/numeric/Range.java
Expand Up @@ -52,7 +52,7 @@
*
* @param <T>
* @see RangeComparator
* @see org.jaitools.media.jai.rangelookup.RangeLookupDescriptor
* see org.jaitools.media.jai.rangelookup.RangeLookupDescriptor
*
* @author Michael Bedward
* @since 1.0
Expand Down

0 comments on commit e4949de

Please sign in to comment.