Changeset 24 for issuevalue


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:
issuevalue
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • issuevalue/pom.xml

    r23 r24  
    66        <groupId>geniusweb</groupId>
    77        <artifactId>issuevalue</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
     
    148148                                <groupId>org.apache.maven.plugins</groupId>
    149149                                <artifactId>maven-javadoc-plugin</artifactId>
    150                                 <version>2.10.1</version>
     150                                <version>3.2.0</version>
    151151                                <executions>
    152152                                        <execution>
     
    155155                                                        <goal>jar</goal>
    156156                                                </goals>
    157                                                 <configuration>
    158                                                         <additionalparam>${javadoc.opts}</additionalparam>
    159                                                         <additionalparam>-Xdoclint:none</additionalparam>
    160                                                 </configuration>
    161157                                        </execution>
    162158                                </executions>
  • issuevalue/src/main/java/geniusweb/issuevalue/Bid.java

    r9 r24  
    5656
    5757        /**
    58          * @param issue
     58         * @param issue name of the issue
    5959         * @return the value for the given issue, or null if there is no value for
    6060         *         the given issue.
     
    6565
    6666        /**
    67          *
    68          * @param issue
     67         * @param issue name of the issue
    6968         * @return true iff the bid contains a value for the given issue.
    7069         */
  • issuevalue/src/main/java/geniusweb/issuevalue/Domain.java

    r1 r24  
    7373        /**
    7474         *
    75          * @param domain the domain to check the bid in
     75         * @param bid a Bid
    7676         * @return null if this bid is complete, or an error message explaining why
    7777         *         the bid is not complete. Complete means that the bid contains a
  • issuevalue/src/main/java/geniusweb/issuevalue/ValueSet.java

    r1 r24  
    1717 * by a String)).
    1818 *
    19  * @param <T> type of objects in this value set. We do not implement ValueSet
    20  *        right away because types are lost at runtime. Implementing separate
    21  *        classes for implementing the ValueSet ensures we can get back the type
    22  *        at runtime. immutable. Thread safe.
     19 * Value is the type of objects in this value set. We do not implement ValueSet
     20 * right away because types are lost at runtime. Implementing separate classes
     21 * for implementing the ValueSet ensures we can get back the type at runtime.
     22 * immutable. Thread safe.
    2323 */
    2424@JsonDeserialize(using = ValueSetDeserializer.class)
     
    6262                        return codec.treeToValue(node, DiscreteValueSet.class);
    6363                }
    64                 throw new IllegalArgumentException("Expected 'range' or 'values' property for ValueSet contents");
     64                throw new IllegalArgumentException(
     65                                "Expected 'range' or 'values' property for ValueSet contents");
    6566        }
    6667
Note: See TracChangeset for help on using the changeset viewer.