Changes between Version 19 and Version 20 of AccountServer


Ignore:
Timestamp:
05/18/20 10:53:36 (5 years ago)
Author:
wouter
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AccountServer

    v19 v20  
    5151* You can use these dependencies
    5252{{{
    53                 <dependency>
    54                         <groupId>javax.servlet</groupId>
    55                         <artifactId>javax.servlet-api</artifactId>
    56                         <version>3.1.0</version>
    57                         <scope>provided</scope>
    58                 </dependency>
    59                 <dependency>
    60                         <groupId>tudelft.utilities</groupId>
    61                         <artifactId>accountserver</artifactId>
    62                         <version>1.0.0</version>
    63                         <classifier>classes</classifier>
    64                 </dependency>
     53<dependency>
     54        <groupId>javax.servlet</groupId>
     55        <artifactId>javax.servlet-api</artifactId>
     56        <version>3.1.0</version>
     57        <scope>provided</scope>
     58</dependency>
     59<dependency>
     60        <groupId>tudelft.utilities</groupId>
     61        <artifactId>accountserver</artifactId>
     62        <version>1.0.0</version>
     63        <classifier>classes</classifier>
     64</dependency>
    6565
    6666}}}
    6767
    6868
    69 and the maven overlay in the maven war plugin:
     69and the maven overlay in the maven war plugin in your <build> section:
    7070{{{
    71                         <plugin>
    72                                 <groupId>org.apache.maven.plugins</groupId>
    73                                 <artifactId>maven-war-plugin</artifactId>
    74                                 <version>3.2.3</version>
    75                                 <configuration>
    76                                         <dependentWarIncludes>**</dependentWarIncludes>
    77                                         <overlays>
    78                                                 <overlay>
    79                                                         <groupId>tudelft.utilities</groupId>
    80                                                         <artifactId>accountserver</artifactId>
    81                                                 </overlay>
    82                                         </overlays>
    83 
    84                                         <failOnMissingWebXml>false</failOnMissingWebXml>
    85                                 </configuration>
    86                         </plugin>
     71        <plugin>
     72                <groupId>org.apache.maven.plugins</groupId>
     73                <artifactId>maven-war-plugin</artifactId>
     74                <version>3.2.3</version>
     75                <configuration>
     76                        <dependentWarIncludes>**</dependentWarIncludes>
     77                        <overlays>
     78                                <overlay>
     79                                        <groupId>tudelft.utilities</groupId>
     80                                        <artifactId>accountserver</artifactId>
     81                                </overlay>
     82                        </overlays>
     83                                <failOnMissingWebXml>false</failOnMissingWebXml>
     84                </configuration>
     85        </plugin>
    8786}}}
    8887