Changeset 24 for references


Ignore:
Timestamp:
10/06/20 13:12:20 (4 years ago)
Author:
bart
Message:

Fixes an issue with processing maxPower of a vote. Javadoc maven plugin now uses latest version.

Location:
references
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • references/pom.xml

    r23 r24  
    66        <groupId>geniusweb</groupId>
    77        <artifactId>references</artifactId>
    8         <version>1.5.2</version> <!-- must equal ${geniusweb.version} -->
     8        <version>1.5.3</version> <!-- must equal ${geniusweb.version} -->
    99        <packaging>jar</packaging>
    1010
     
    1717                <passwd>${env.ARTIFACTORY_PASS}</passwd>
    1818                <jackson-2-version>2.9.10</jackson-2-version>
    19                 <geniusweb.version>1.5.2</geniusweb.version>
     19                <geniusweb.version>1.5.3</geniusweb.version>
    2020        </properties>
    2121
     
    152152                                <groupId>org.apache.maven.plugins</groupId>
    153153                                <artifactId>maven-javadoc-plugin</artifactId>
    154                                 <version>2.10.1</version>
     154                                <version>3.2.0</version>
    155155                                <executions>
    156156                                        <execution>
     
    159159                                                        <goal>jar</goal>
    160160                                                </goals>
    161                                                 <configuration>
    162                                                         <additionalparam>${javadoc.opts}</additionalparam>
    163                                                         <additionalparam>-Xdoclint:none</additionalparam>
    164                                                 </configuration>
    165161                                        </execution>
    166162                                </executions>
  • references/src/main/java/geniusweb/connection/DefaultConnection.java

    r9 r24  
    66 * Default implementation of connection. Connection implementors only need to
    77 * implement the send (which moves the data sent into the connection to the
    8  * other side) and they can call {@link DefaultListenable#notifyChange(Object)}
    9  * to inform the users of the connection that something came in from the other
    10  * side.
     8 * other side) and they can call
     9 * {@link DefaultListenable#notifyListeners(Object)} to inform the users of the
     10 * connection that something came in from the other side.
    1111 *
    12  * @param <INTYPE> the datatype of objects received from the other side
    13  * @param <OUTTYPE> the datatype of objects sent to the other side.
     12 * @param INTYPE the datatype of objects received from the other side
     13 * @param OUTTYPE the datatype of objects sent to the other side.
    1414 */
    1515public abstract class DefaultConnection<INTYPE, OUTTYPE> extends
Note: See TracChangeset for help on using the changeset viewer.