Changeset 24 for party


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:
party
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • party/pom.xml

    r23 r24  
    66        <groupId>geniusweb</groupId>
    77        <artifactId>party</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
     
    173173                                <groupId>org.apache.maven.plugins</groupId>
    174174                                <artifactId>maven-javadoc-plugin</artifactId>
    175                                 <version>2.10.1</version>
     175                                <version>3.2.0</version>
    176176                                <executions>
    177177                                        <execution>
     
    180180                                                        <goal>jar</goal>
    181181                                                </goals>
    182                                                 <configuration>
    183                                                         <additionalparam>${javadoc.opts}</additionalparam>
    184                                                         <additionalparam>-Xdoclint:none</additionalparam>
    185                                                 </configuration>
    186182                                        </execution>
    187183                                </executions>
  • party/src/main/java/geniusweb/party/Capabilities.java

    r10 r24  
    1414public class Capabilities {
    1515        /**
    16          * List of supported protocols
     16         * List of supported protocol names
    1717         */
    1818        private final Set<String> behaviours;
     
    2020        /**
    2121         *
    22          * @param protocols the protocols that a Party can handle
     22         * @param behaviours the protocols that a Party can handle
    2323         */
    2424        @JsonCreator
  • party/src/test/java/geniusweb/party/inform/FinishedTest.java

    r21 r24  
    8989        }
    9090
    91         @Test
     91        @Test(expected = NullPointerException.class)
    9292        public void nullTest() throws URISyntaxException {
    9393                new Finished(null);
Note: See TracChangeset for help on using the changeset viewer.