Changeset 9 for exampleparties/timedependentparty
- Timestamp:
- 11/28/19 14:40:48 (5 years ago)
- Location:
- exampleparties/timedependentparty
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
exampleparties/timedependentparty/pom.xml
r8 r9 6 6 <groupId>geniusweb.exampleparties</groupId> 7 7 <artifactId>timedependentparty</artifactId> 8 <version>1. 0.0</version>8 <version>1.1.0</version> 9 9 <packaging>jar</packaging> 10 10 … … 16 16 <basedir>.</basedir> 17 17 <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> 19 19 </properties> 20 20 … … 33 33 <groupId>geniusweb</groupId> 34 34 <artifactId>party</artifactId> 35 <version>1. 0.0</version>35 <version>1.1.0</version> 36 36 </dependency> 37 37 … … 39 39 <groupId>geniusweb</groupId> 40 40 <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> 42 47 </dependency> 43 48 <dependency> 44 49 <groupId>tudelft.utilities</groupId> 45 50 <artifactId>logging</artifactId> 46 <version>1.0.0</version>47 </dependency>48 <dependency>49 <groupId>geniusweb</groupId>50 <artifactId>profileconnection</artifactId>51 51 <version>1.0.0</version> 52 52 </dependency> -
exampleparties/timedependentparty/src/test/java/geniusweb/exampleparties/timedependentparty/TimeDependentPartyTest.java
r8 r9 33 33 import geniusweb.actions.PartyId; 34 34 import geniusweb.bidspace.AllBidsList; 35 import geniusweb.connection.Connection ;35 import geniusweb.connection.ConnectionEnd; 36 36 import geniusweb.issuevalue.Bid; 37 37 import geniusweb.party.Capabilities; … … 118 118 public void testInformSettings() { 119 119 party.connect(connection); 120 connection.notify Change(settings);120 connection.notifyListeners(settings); 121 121 assertEquals(0, connection.getActions().size()); 122 122 } … … 223 223 */ 224 224 class TestConnection extends DefaultListenable<Inform> 225 implements Connection <Inform, Action> {225 implements ConnectionEnd<Inform, Action> { 226 226 private List<Action> actions = new LinkedList<>(); 227 227
Note:
See TracChangeset
for help on using the changeset viewer.