Ignore:
Timestamp:
11/28/19 14:40:48 (5 years ago)
Author:
bart
Message:

Release 1.1.0

Location:
exampleparties/timedependentparty
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • exampleparties/timedependentparty/pom.xml

    r8 r9  
    66        <groupId>geniusweb.exampleparties</groupId>
    77        <artifactId>timedependentparty</artifactId>
    8         <version>1.0.0</version>
     8        <version>1.1.0</version>
    99        <packaging>jar</packaging>
    1010
     
    1616                <basedir>.</basedir>
    1717                <passwd>${env.ARTIFACTORY_PASS}</passwd>
    18                 <jackson-2-version>2.9.6</jackson-2-version>
     18                <jackson-2-version>2.9.10</jackson-2-version>
    1919        </properties>
    2020
     
    3333                        <groupId>geniusweb</groupId>
    3434                        <artifactId>party</artifactId>
    35                         <version>1.0.0</version>
     35                        <version>1.1.0</version>
    3636                </dependency>
    3737
     
    3939                        <groupId>geniusweb</groupId>
    4040                        <artifactId>bidspace</artifactId>
    41                         <version>1.0.0</version>
     41                        <version>1.1.0</version>
     42                </dependency>
     43                <dependency>
     44                        <groupId>geniusweb</groupId>
     45                        <artifactId>profileconnection</artifactId>
     46                        <version>1.1.0</version>
    4247                </dependency>
    4348                <dependency>
    4449                        <groupId>tudelft.utilities</groupId>
    4550                        <artifactId>logging</artifactId>
    46                         <version>1.0.0</version>
    47                 </dependency>
    48                 <dependency>
    49                         <groupId>geniusweb</groupId>
    50                         <artifactId>profileconnection</artifactId>
    5151                        <version>1.0.0</version>
    5252                </dependency>
  • exampleparties/timedependentparty/src/test/java/geniusweb/exampleparties/timedependentparty/TimeDependentPartyTest.java

    r8 r9  
    3333import geniusweb.actions.PartyId;
    3434import geniusweb.bidspace.AllBidsList;
    35 import geniusweb.connection.Connection;
     35import geniusweb.connection.ConnectionEnd;
    3636import geniusweb.issuevalue.Bid;
    3737import geniusweb.party.Capabilities;
     
    118118        public void testInformSettings() {
    119119                party.connect(connection);
    120                 connection.notifyChange(settings);
     120                connection.notifyListeners(settings);
    121121                assertEquals(0, connection.getActions().size());
    122122        }
     
    223223 */
    224224class TestConnection extends DefaultListenable<Inform>
    225                 implements Connection<Inform, Action> {
     225                implements ConnectionEnd<Inform, Action> {
    226226        private List<Action> actions = new LinkedList<>();
    227227
Note: See TracChangeset for help on using the changeset viewer.