Changeset 24 for simplerunner


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

Legend:

Unmodified
Added
Removed
  • simplerunner/pom.xml

    r23 r24  
    66        <groupId>geniusweb</groupId>
    77        <artifactId>simplerunner</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
     
    139139                                <groupId>org.apache.maven.plugins</groupId>
    140140                                <artifactId>maven-javadoc-plugin</artifactId>
    141                                 <version>2.10.1</version>
     141                                <version>3.2.0</version>
    142142                                <executions>
    143143                                        <execution>
     
    146146                                                        <goal>jar</goal>
    147147                                                </goals>
    148                                                 <configuration>
    149                                                         <additionalparam>${javadoc.opts}</additionalparam>
    150                                                         <additionalparam>-Xdoclint:none</additionalparam>
    151                                                 </configuration>
    152148                                        </execution>
    153149                                </executions>
  • simplerunner/src/main/java/geniusweb/simplerunner/BasicConnection.java

    r21 r24  
    4343         * from us. Must be called first.
    4444         *
    45          * @param handler a Listener<OUT> that can handle send actions.
     45         * @param newhandler a Listener&lt;OUT&gt; that can handle send actions.
    4646         *
    4747         */
  • simplerunner/src/main/java/geniusweb/simplerunner/NegoRunner.java

    r21 r24  
    3636        /**
    3737         *
    38          * @param settings
    39          * @param connectionfactory
    40          * @param logger
     38         * @param settings          the {@link NegoSettings}
     39         * @param connectionfactory the {@link ProtocolToPartyConnFactory}
     40         * @param logger            the {@link Reporter} to log problems
    4141         * @param maxruntime        limit in millisecs. Ignored if 0
    4242         */
     
    5454        }
    5555
     56        /**
     57         *
     58         * @return true if the runner has finished
     59         */
    5660        public boolean isProperlyStopped() {
    5761                return properlyStopped;
     
    8892        /**
    8993         * Separate so that we can intercept this when mocking, as this will crash
    90          * on mocks
     94         * on mocks because {@link #jackson} can not handle mocks.
    9195         *
    92          * @param level
    93          * @param state
     96         * @param level the log {@link Level}
     97         * @param state the {@link NegoState} to log
    9498         */
    9599        protected void logFinal(Level level, NegoState state) {
     
    102106        }
    103107
     108        /**
     109         * The main runner
     110         *
     111         * @param args should have 1 argument, the settings.json file to be used.
     112         * @throws IOException if problem occurs
     113         */
    104114        public static void main(String[] args) throws IOException {
    105115                if (args.length != 1) {
Note: See TracChangeset for help on using the changeset viewer.