我有"pom.xml"文件,它连接到maven并检查代码并创建war文件.现在我必须将创建的war文件部署到JBoss Application Server 7.下面是我的pom.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>com.mycompany.deploy</groupId>
<artifactId>deploy-app</artifactId>
<packaging>war</packaging>
<version>0.0.1-SNAPSHOT</version>
<name>deploy-app Maven Webapp</name>
<url>http://maven.apache.org</url>
<scm>
<connection>scm:svn:http://d-113017553/svn/PRONTO/trunk/dev</connection>
<developerConnection>scm:svn:http://d-113017553/svn/PRONTO/trunk /dev</developerConnection>
<url>http://d-113017553/svn/PRONTO/trunk/dev</url>
</scm>
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<finalName>deploy-app</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-scm-plugin</artifactId>
<version>1.8.1</version>
<configuration>
<connectionType>connection</connectionType>
<username>keerthana</username>
<password>keerthana</password>
<checkoutDirectory>${project.basedir}/co/src</checkoutDirectory>
<workingDirectory>${project.basedir}/co/src</workingDirectory>
</configuration>
</plugin>
<plugin>
<artifactId>maven-release-plugin</artifactId>
<version>2.2.2</version>
<configuration>
<releaseProfiles>release</releaseProfiles>
<goals>scm:checkout</goals>
</configuration>
</plugin>
<plugin>
<groupId>org.jboss.as.plugins</groupId>
<artifactId>jboss-as-maven-plugin</artifactId>
<version>7.3.Final</version>
<configuration>
<jboss_Home>D:\Workspace\deploy-app\target</jboss_Home>
<serverName>default</serverName>
<fileName>target/deploy-app.war</fileName>
</configuration>
</plugin>
</plugins>
</build>
</project>
Run Code Online (Sandbox Code Playgroud)
请告诉我将war文件部署到Jboss服务器的步骤.
首先,用于bin/add-user.sh
添加管理用户.
然后,将其存储到settings.xml中.
<profiles>
<profile>
<id>myproject-prod<id>
<activation><activeByDefault>true</activeByDefault></activation>
<properties>
<myproject.deploy.pass.prod>mySecretPassword</myproject.deploy.pass.prod>
</properties>
</profile>
</profiles>
Run Code Online (Sandbox Code Playgroud)
然后,配置pom.xml
.
<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>${myproject.deploy.pass.prod}</jboss-as.deploy.pass>
<plugin.war.warName>${project.build.finalName}</plugin.war.warName>
</properties>
Run Code Online (Sandbox Code Playgroud)
...
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.3</version>
<configuration>
<filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
<warName>${plugin.war.warName}</warName>
</configuration>
</plugin>
<!-- JBoss AS plugin to deploy the war. -->
<plugin>
<groupId>org.jboss.as.plugins</groupId>
<artifactId>jboss-as-maven-plugin</artifactId>
<version>7.4.Final</version>
<configuration>
<force>true</force>
<hostname>${jboss-as.deploy.hostname}</hostname>
<username>${jboss-as.deploy.user}</username>
<password>${jboss-as.deploy.pass.prod}</password>
<fileNames>
<fileName>target/${plugin.war.warName}.war</fileName>
</fileNames>
</configuration>
</plugin>
</plugins>
Run Code Online (Sandbox Code Playgroud)
然后简单地......
mvn clean deploy;
Run Code Online (Sandbox Code Playgroud)
这可以从一个JBoss项目中减少,可能包含错别字,但应该可以工作.
归档时间: |
|
查看次数: |
25488 次 |
最近记录: |