Changeset 14


Ignore:
Timestamp:
06/11/20 16:34:49 (4 years ago)
Author:
bart
Message:

Update to version 1.41

Files:
11 added
3 edited

Legend:

Unmodified
Added
Removed
  • pom.xml

    r13 r14  
    66        <artifactId>partiesserver</artifactId>
    77        <packaging>war</packaging>
    8         <version>1.3.2</version>
     8        <version>1.4.1</version> <!-- must equal ${geniusweb.version} -->
    99        <name>partiesserver Maven Webapp</name>
    1010        <url>http://maven.apache.org</url>
     
    1919                <!-- <tomcat.version>8.0.53</tomcat.version> -->
    2020                <tomcat.version>8.5.20</tomcat.version>
    21                 <geniusweb.version>1.4.0</geniusweb.version>
     21                <geniusweb.version>1.4.1</geniusweb.version>
    2222        </properties>
    2323
     
    8787                        <groupId>tudelft.utilities</groupId>
    8888                        <artifactId>tree</artifactId>
    89                         <version>1.0.0</version>
     89                        <version>1.1.0</version>
    9090                </dependency>
    9191                <dependency>
    9292                        <groupId>tudelft.utilities</groupId>
    9393                        <artifactId>files</artifactId>
    94                         <version>1.0.0</version>
     94                        <version>1.1.0</version>
    9595                </dependency>
    9696                <dependency>
    9797                        <groupId>tudelft.utilities</groupId>
    9898                        <artifactId>repository</artifactId>
    99                         <version>1.0.1</version>
     99                        <version>1.1.0</version>
    100100                </dependency>
    101101
     
    224224
    225225        <build>
    226                 <finalName>partiesserver-1.4.0</finalName>
    227 
     226                <!-- Don't specify finalName as the war number would mismatch the pom version -->
    228227
    229228                <resources>
  • src/test/java/geniusweb/partiesserver/AvailablePartiesUpdaterTest.java

    r13 r14  
    3131
    3232public class AvailablePartiesUpdaterTest {
    33         private static final String RANDOMPARTY = "target/jars/randomparty-1.4.0.jar";
     33        private static final String RANDOMPARTY = "target/jars/randomparty-1.4.1.jar";
    3434        private static final int TESTRATE = 200; // check file changes every 200ms
    3535        @SuppressWarnings("unchecked")
  • src/test/java/geniusweb/partiesserver/JavaClientTest.java

    r13 r14  
    3939 */
    4040public class JavaClientTest {
    41         private static final String RANDOMPARTY = "http://localhost:8080/partiesserver/run/randomparty-1.4.0";
     41        private static final String RANDOMPARTY = "http://localhost:8080/partiesserver/run/randomparty-1.4.1";
    4242        // private static final String JSON = "{\"jobs\":[\"jobs1\"]}";
    4343//      private static final String JOBS1PROFILE = "{\"LinearAdditiveUtilitySpace\":{\"issueUtilities\":{\"lease car\":{\"discreteutils\":{\"valueUtilities\":{\"no\":0,\"yes\":1}}},\"permanent contract\":{\"discreteutils\":{\"valueUtilities\":{\"no\":0,\"yes\":1}}},\"career development opportunities\":{\"discreteutils\":{\"valueUtilities\":{\"high\":1,\"low\":0,\"medium\":0.5}}},\"fte\":{\"discreteutils\":{\"valueUtilities\":{\"1.0\":0.75,\"0.6\":0.25,\"0.8\":0.5}}},\"salary\":{\"discreteutils\":{\"valueUtilities\":{\"4000\":1.0,\"2500\":0.25,\"3500\":0.75,\"2000\":0,\"3000\":0.3}}},\"work from home\":{\"discreteutils\":{\"valueUtilities\":{\"1\":0.5,\"2\":0.666666666666,\"0\":0.333333333}}}},\"issueWeights\":{\"lease car\":0.06,\"permanent contract\":0.16,\"career development opportunities\":0.04,\"fte\":0.32,\"salary\":0.24,\"work from home\":0.18},\"domain\":{\"name\":\"jobs\",\"issuesValues\":{\"lease car\":{\"values\":[\"yes\",\"no\"]},\"permanent contract\":{\"values\":[\"yes\",\"no\"]},\"career development opportunities\":{\"values\":[\"low\",\"medium\",\"high\"]},\"fte\":{\"values\":[\"0.6\",\"0.8\",\"1.0\"]},\"salary\":{\"values\":[\"2000\",\"2500\",\"3000\",\"3500\",\"4000\"]},\"work from home\":{\"values\":[\"0\",\"1\",\"2\"]}}},\"name\":\"jobs1\"}}";
Note: See TracChangeset for help on using the changeset viewer.