<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>com.tripod.demo</groupId>
<artifactId>Karthik-project</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>Karthik-project Maven Webapp</name>
<url>http://maven.apache.org</url>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<properties>
<jboss-as.deploy.hostname>localhost</jboss-as.deploy.hostname> <!-- Where to deploy. -->
<jboss-as.deploy.user>admin</jboss-as.deploy.user>
<jboss-as.deploy.pass>admin</jboss-as.deploy.pass>
<plugin.war.warName>target/Karthik-project.war</plugin.war.warName>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.3</version>
<configuration>
<filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
<warName>target/Karthik-project.war</warName>
</configuration>
</plugin>
<plugin>
<groupId>org.jboss.as.plugins</groupId>
<artifactId>jboss-as-maven-plugin</artifactId>
<version>7.3.Final</version>
<configuration>
<hostname>localhost</hostname>
<username>admin</username>
<password>admin</password>
<jbossHome>/home/smadugula/jboss-eas-5.2</jbossHome>
<serverName>Standalone</serverName>
<targetDir>target</targetDir>
<fileName>target/Karthik-project.war</fileName>
</configuration>
</plugin>
</plugins>
</build>
</project>
我已经参考了有关stackoverflow和google上其他链接的各种示例,我创建了这个文件。当我使用mvn jboss:deploy时,虽然我收到了Build-Success消息,但我得到的消息如下: [INFO]没有配置为部署/取消部署的文件。 如何配置war文件?任何人都可以帮我这个吗? 提前致谢
答案 0 :(得分:1)
我可能错了,但是maven-war-plugin主要用于将你的应用程序打包成war文件。
您应该尝试使用maven-cargo-plugin,因为它为部署,启动和停止容器提供了很多控制。
以下是Deploying to a local container配置示例。
答案 1 :(得分:-1)
看起来你没有read the documentation of the plugin因为部署看起来像这样:
<project>
...
<build>
...
<plugins>
...
<plugin>
<groupId>org.jboss.as.plugins</groupId>
<artifactId>jboss-as-maven-plugin</artifactId>
<version>7.4.Final</version>
<executions>
<execution>
<phase>install</phase>
<goals>
<goal>deploy</goal>
</goals>
<configuration>
...
</configuration>
</executions>
</plugin>
...
</plugins>
...
</build>
...
</project>
如果您不使用phase
标记,插件的执行将绑定到package
阶段。所以你必须致电mvn package
。