Changeset 24 for profileconnection


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

Legend:

Unmodified
Added
Removed
  • profileconnection/pom.xml

    r23 r24  
    66        <groupId>geniusweb</groupId>
    77        <artifactId>profileconnection</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
     
    162162                                <groupId>org.apache.maven.plugins</groupId>
    163163                                <artifactId>maven-javadoc-plugin</artifactId>
    164                                 <version>2.10.1</version>
     164                                <version>3.2.0</version>
    165165                                <executions>
    166166                                        <execution>
     
    169169                                                        <goal>jar</goal>
    170170                                                </goals>
    171                                                 <configuration>
    172                                                         <additionalparam>${javadoc.opts}</additionalparam>
    173                                                         <additionalparam>-Xdoclint:none</additionalparam>
    174                                                 </configuration>
    175171                                        </execution>
    176172                                </executions>
  • profileconnection/src/main/java/geniusweb/profileconnection/ProfileConnectionFactory.java

    r1 r24  
    1717
    1818        /**
    19          * @uri the URI that can provide the {@link Profile}. Support both the ws
    20          *      and the file scheme for the uri.
     19         * @param uri      the URI that can provide the {@link Profile}. Support
     20         *                 both the ws and the file scheme for the uri.
    2121         * @param reporter the {@link Reporter} to log issues to
     22         * @return a {@link ProfileInterface}
     23         * @throws IOException         if connection can't be made
     24         * @throws DeploymentException if endpoint can't be published
    2225         */
    2326        public static ProfileInterface create(URI uri, Reporter reporter)
  • profileconnection/src/main/java/geniusweb/profileconnection/ProfileInterface.java

    r10 r24  
    1414         * @return the latest version of the profile. May change at any time, after
    1515         *         someone updates the version on the server. Call to this may block
    16          *         for limited time if the profile is not yet available.
    17          *         @throws IOException if profile can not be fetched     */
     16         *         for limited time if the profile is not yet available.
     17         * @throws IOException if profile can not be fetched
     18         */
    1819        public Profile getProfile() throws IOException;
    1920}
  • profileconnection/src/main/java/geniusweb/profileconnection/WebsocketProfileConnector.java

    r20 r24  
    3737         *                    websockets. Typically ContainerProvider
    3838         *                    .getWebSocketContainer()
    39          * @throws DeploymentException
    40          * @throws IOException
     39         * @throws DeploymentException if the annotated endpoint instance is not
     40         *                             valid
     41         * @throws IOException         if there was a network or protocol problem
     42         *                             that prevented the client endpoint being
     43         *                             connected to its server.
     44         *
    4145         */
    4246        public WebsocketProfileConnector(URI uri, Reporter reporter,
Note: See TracChangeset for help on using the changeset viewer.