Changeset 24 for simplerunner
- Timestamp:
- 10/06/20 13:12:20 (4 years ago)
- Location:
- simplerunner
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
simplerunner/pom.xml
r23 r24 6 6 <groupId>geniusweb</groupId> 7 7 <artifactId>simplerunner</artifactId> 8 <version>1.5. 2</version> <!-- must equal ${geniusweb.version} -->8 <version>1.5.3</version> <!-- must equal ${geniusweb.version} --> 9 9 <packaging>jar</packaging> 10 10 … … 17 17 <passwd>${env.ARTIFACTORY_PASS}</passwd> 18 18 <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> 20 20 </properties> 21 21 … … 139 139 <groupId>org.apache.maven.plugins</groupId> 140 140 <artifactId>maven-javadoc-plugin</artifactId> 141 <version> 2.10.1</version>141 <version>3.2.0</version> 142 142 <executions> 143 143 <execution> … … 146 146 <goal>jar</goal> 147 147 </goals> 148 <configuration>149 <additionalparam>${javadoc.opts}</additionalparam>150 <additionalparam>-Xdoclint:none</additionalparam>151 </configuration>152 148 </execution> 153 149 </executions> -
simplerunner/src/main/java/geniusweb/simplerunner/BasicConnection.java
r21 r24 43 43 * from us. Must be called first. 44 44 * 45 * @param handler a Listener<OUT>that can handle send actions.45 * @param newhandler a Listener<OUT> that can handle send actions. 46 46 * 47 47 */ -
simplerunner/src/main/java/geniusweb/simplerunner/NegoRunner.java
r21 r24 36 36 /** 37 37 * 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 41 41 * @param maxruntime limit in millisecs. Ignored if 0 42 42 */ … … 54 54 } 55 55 56 /** 57 * 58 * @return true if the runner has finished 59 */ 56 60 public boolean isProperlyStopped() { 57 61 return properlyStopped; … … 88 92 /** 89 93 * 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. 91 95 * 92 * @param level 93 * @param state 96 * @param level the log {@link Level} 97 * @param state the {@link NegoState} to log 94 98 */ 95 99 protected void logFinal(Level level, NegoState state) { … … 102 106 } 103 107 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 */ 104 114 public static void main(String[] args) throws IOException { 105 115 if (args.length != 1) {
Note:
See TracChangeset
for help on using the changeset viewer.