- Timestamp:
- 10/06/20 13:12:20 (4 years ago)
- Location:
- party
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
party/pom.xml
r23 r24 6 6 <groupId>geniusweb</groupId> 7 7 <artifactId>party</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 … … 173 173 <groupId>org.apache.maven.plugins</groupId> 174 174 <artifactId>maven-javadoc-plugin</artifactId> 175 <version> 2.10.1</version>175 <version>3.2.0</version> 176 176 <executions> 177 177 <execution> … … 180 180 <goal>jar</goal> 181 181 </goals> 182 <configuration>183 <additionalparam>${javadoc.opts}</additionalparam>184 <additionalparam>-Xdoclint:none</additionalparam>185 </configuration>186 182 </execution> 187 183 </executions> -
party/src/main/java/geniusweb/party/Capabilities.java
r10 r24 14 14 public class Capabilities { 15 15 /** 16 * List of supported protocol s16 * List of supported protocol names 17 17 */ 18 18 private final Set<String> behaviours; … … 20 20 /** 21 21 * 22 * @param protocols the protocols that a Party can handle22 * @param behaviours the protocols that a Party can handle 23 23 */ 24 24 @JsonCreator -
party/src/test/java/geniusweb/party/inform/FinishedTest.java
r21 r24 89 89 } 90 90 91 @Test 91 @Test(expected = NullPointerException.class) 92 92 public void nullTest() throws URISyntaxException { 93 93 new Finished(null);
Note:
See TracChangeset
for help on using the changeset viewer.