Changeset 11


Ignore:
Timestamp:
03/02/20 10:29:53 (5 years ago)
Author:
bart
Message:

All refs to bintray now use https

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • pom.xml

    r10 r11  
    66        <artifactId>runserver</artifactId>
    77        <packaging>war</packaging>
    8         <version>1.3.0</version>
     8        <version>1.3.1</version>
    99        <name>runserver Maven Webapp</name>
    1010        <url>http://maven.apache.org</url>
     
    4444                <pluginRepository>
    4545                        <id>jcenter</id>
    46                         <url>http://jcenter.bintray.com</url>
     46                        <url>https://jcenter.bintray.com</url>
    4747                </pluginRepository>
    4848        </pluginRepositories>
     
    5353                        <groupId>geniusweb</groupId>
    5454                        <artifactId>profile</artifactId>
    55                         <version>1.2.0</version>
     55                        <version>1.3.1</version>
    5656                </dependency>
    5757
     
    5959                        <groupId>geniusweb</groupId>
    6060                        <artifactId>party</artifactId>
    61                         <version>1.2.0</version>
     61                        <version>1.3.1</version>
    6262                </dependency>
    6363
     
    6565                        <groupId>geniusweb</groupId>
    6666                        <artifactId>references</artifactId>
    67                         <version>1.2.0</version>
     67                        <version>1.3.1</version>
    6868                </dependency>
    6969
     
    7171                        <groupId>geniusweb</groupId>
    7272                        <artifactId>protocol</artifactId>
    73                         <version>1.2.0</version>
     73                        <version>1.3.1</version>
    7474                </dependency>
    7575
  • src/main/webapp/newsession.xhtml

    r10 r11  
    2929        <br /> Domain/Profile Server:
    3030        <input type="url" name="url" id="profilesserverurl"
    31                 value="localhost:8080/profilesserver-1.3.0"
     31                value="localhost:8080/profilesserver-1.3.1"
    3232                pattern=".*:[0-9]+/profilesserver" size="30"
    3333                onchange="connectDomain()"> </input>
     
    4343                <br /> <b>Participants</b> <br /> Parties Server: <input type="url"
    4444                        name="url" id="partiesserverurl"
    45                         value="localhost:8080/partiesserver-1.3.0"
     45                        value="localhost:8080/partiesserver-1.3.1"
    4646                        pattern=".*:[0-9]+/partiesserver" size="30"
    4747                        onchange="connectParties()"> </input> <br /> <br /> <b>Party
     
    273273         refresh table: copy all parties elements in there.
    274274         Typically parties is something like
    275          [{"uri":"http:130.161.180.1:8080/partiesserver/run/randomparty-1.3.0",
     275         [{"uri":"http:130.161.180.1:8080/partiesserver/run/randomparty-1.3.1",
    276276                 "capabilities":{"protocols":["SAOP"]},
    277277                 "description":"places random bids until it can accept an offer with utility >0.6",
    278                  "id":"randomparty-1.3.0",
     278                 "id":"randomparty-1.3.1",
    279279                 "partyClass":"geniusweb.exampleparties.randomparty.RandomParty"},
    280280                                 ...]
     
    571571        function init() {
    572572                selectProtocol();
    573                 document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.3.0"
    574                 document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.3.0"
     573                document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.3.1"
     574                document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.3.1"
    575575                connectDomain();
    576576                connectParties();
  • src/main/webapp/newtournament.xhtml

    r10 r11  
    4747        <div id="box" class="box">
    4848                <br /> Domain/Profile Server: <input type="url" name="url"
    49                         id="profilesserverurl" value="localhost:8080/profilesserver-1.3.0"
     49                        id="profilesserverurl" value="localhost:8080/profilesserver-1.3.1"
    5050                        pattern=".*:[0-9]+/profilesserver" size="30"
    5151                        onchange="connectDomain()"> </input> <br /> Domain: <select
     
    7676        <div id="box" class="box">
    7777                <br /> Parties Server: <input type="url" name="url"
    78                         id="partiesserverurl" value="localhost:8080/partiesserver-1.3.0"
     78                        id="partiesserverurl" value="localhost:8080/partiesserver-1.3.1"
    7979                        pattern=".*:[0-9]+/partiesserver" size="30"
    8080                        onchange="connectParties()"> </input> <br /> <br />
     
    423423        */
    424424        function init() {
    425                 document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.3.0";
    426                 document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.3.0";
     425                document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.3.1";
     426                document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.3.1";
    427427
    428428
Note: See TracChangeset for help on using the changeset viewer.