[jbosstools-issues] [JBoss JIRA] (JBIDE-20687) Deployed war is NOT the specified war name

Alexey Kazakov (JIRA) issues at jboss.org
Tue Sep 15 10:02:00 EDT 2015


     [ https://issues.jboss.org/browse/JBIDE-20687?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alexey Kazakov updated JBIDE-20687:
-----------------------------------
              Project: Tools (JBoss Tools)  (was: Developer Studio (JBoss Developer Studio))
                  Key: JBIDE-20687  (was: JBDS-3522)
             Workflow: GIT Pull Request workflow   (was: CDW v1)
               Status: Open  (was: New)
       Docs QE Status:   (was: NEW)
          Component/s: maven
                       upstream
                           (was: maven)
    Affects Version/s: 4.3.0.CR1
                           (was: 9.0.0.Beta2)
        Fix Version/s:     (was: 9.0.0.CR1)


> Deployed war is NOT the specified war name
> ------------------------------------------
>
>                 Key: JBIDE-20687
>                 URL: https://issues.jboss.org/browse/JBIDE-20687
>             Project: Tools (JBoss Tools)
>          Issue Type: Bug
>          Components: maven, upstream
>    Affects Versions: 4.3.0.CR1
>            Reporter: ehsavoie Hugonnet
>            Assignee: Fred Bricon
>            Priority: Critical
>
> The deployed war name is the *artifactId* and not the specified *warName* from the war plugin nor the *finalName*.
> Sample pom.xml which exibits the issue
> {code:xml}<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
>          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
>     <modelVersion>4.0.0</modelVersion>
>     <groupId>org.glassfish-samples</groupId>
>     <artifactId>auction</artifactId>
>     <version>4.0-SNAPSHOT</version>
>     <packaging>war</packaging>
>     <name>WebSocket Auction Sample Application</name>
>     
>     <dependencies>
>         <dependency>
>             <groupId>javax</groupId>
>             <artifactId>javaee-api</artifactId>
>             <version>7.0</version>
>             <scope>provided</scope>
>         </dependency>
>     </dependencies>
>     
>     <build>
>         <finalName>websocket-auction</finalName>
>         <plugins>
>             <plugin>
>                 <artifactId>maven-compiler-plugin</artifactId>
>                 <version>3.1</version>
>                 <configuration>
>                     <source>1.8</source>
>                     <target>1.8</target>
>                 </configuration>
>             </plugin>
>             <plugin>
>                 <groupId>org.apache.maven.plugins</groupId>
>                 <artifactId>maven-war-plugin</artifactId>
>                 <version>2.3</version>
>                 <configuration>
>                     <failOnMissingWebXml>false</failOnMissingWebXml>
>                     <warName>websocket-auction</warName>
>                 </configuration>
>             </plugin>
>         </plugins>
>     </build>
> </project>
> {code}



--
This message was sent by Atlassian JIRA
(v6.4.11#64026)


More information about the jbosstools-issues mailing list