Changes between Version 122 and Version 123 of WikiStart
- Timestamp:
- 01/14/19 09:53:01 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WikiStart
v122 v123 23 23 Example agents can be found [https://tracinsy.ewi.tudelft.nl/trac/Genius2/browser/exampleparties here]. An agent is compiled with maven. After compilation ({{{mvn package}}}) you get a {{{target/yourparty-X.Y.Z-jar-with-dependencies.jar}}} that can be copied into the parties server for deployment. 24 24 25 26 == Running a party27 28 Negotiation parties are run on a parties server, such as the one provided above. The provided parties server supports only java agents at this time.29 30 25 === Some technical info 31 26 Party jar files must have a Main-Class set in the MANIFEST.MF file. This main-class must implement Party and have a no-arg constructor. … … 35 30 The jar files are loaded with an isolated jar class loader that should avoid collisions 36 31 with possibly identically named but possibly different packages in other jar files. 32 33 34 35 36 == Running a party 37 38 Negotiation parties are run on a parties server, such as the one provided above. The provided parties server supports only java agents at this time. You do not need a run server or any of the runserver code to write and compile your party. 37 39 38 40