Tony CHEMIT pushed to branch develop at ultreiaio / ird-observe

Commits:

2 changed files:

Changes:

  • server-runner/pom.xml
    ... ... @@ -61,6 +61,25 @@
    61 61
         <pluginManagement>
    
    62 62
           <plugins>
    
    63 63
     
    
    64
    +        <plugin>
    
    65
    +          <groupId>org.apache.maven.plugins</groupId>
    
    66
    +          <artifactId>maven-war-plugin</artifactId>
    
    67
    +          <configuration>
    
    68
    +            <filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
    
    69
    +<!--            <webResources>-->
    
    70
    +<!--              <resource>-->
    
    71
    +<!--                <filtering>true</filtering>-->
    
    72
    +<!--                <directory>src/main/webapp</directory>-->
    
    73
    +<!--                <includes>-->
    
    74
    +<!--                  <include>**/web.xml</include>-->
    
    75
    +<!--                </includes>-->
    
    76
    +<!--              </resource>-->
    
    77
    +<!--            </webResources>-->
    
    78
    +<!--            <warSourceDirectory>src/main/webapp</warSourceDirectory>-->
    
    79
    +<!--            <webXml>src/main/webapp/WEB-INF/web.xml</webXml>-->
    
    80
    +          </configuration>
    
    81
    +        </plugin>
    
    82
    +
    
    64 83
             <plugin>
    
    65 84
               <groupId>org.mortbay.jetty</groupId>
    
    66 85
               <artifactId>jetty-maven-plugin</artifactId>
    

  • server-runner/src/main/webapp/WEB-INF/web.xml
    ... ... @@ -23,25 +23,13 @@
    23 23
              xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
    
    24 24
       http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" >
    
    25 25
     
    
    26
    -  <display-name>Observe Web Application by WebMotion</display-name>
    
    26
    +  <display-name>Observe Web v ${project.version} Application by WebMotion</display-name>
    
    27 27
     
    
    28 28
       <context-param>
    
    29 29
         <param-name>wm.skip.conventionScan</param-name>
    
    30 30
         <param-value>true</param-value>
    
    31 31
       </context-param>
    
    32 32
     
    
    33
    -  <!--filter>
    
    34
    -    <filter-name>topiaTransaction</filter-name>
    
    35
    -    <filter-class>
    
    36
    -      fr.ird.observe.services.rest.ObserveRestTransactionFilter
    
    37
    -    </filter-class>
    
    38
    -  </filter-->
    
    39
    -
    
    40
    -  <!--filter-mapping>
    
    41
    -    <filter-name>topiaTransaction</filter-name>
    
    42
    -    <url-pattern>/*</url-pattern>
    
    43
    -  </filter-mapping-->
    
    44
    -
    
    45 33
       <listener>
    
    46 34
         <listener-class>fr.ird.observe.server.ObserveWebApplicationListener</listener-class>
    
    47 35
       </listener>