Link to home
Start Free TrialLog in
Avatar of dkim18
dkim18

asked on

help with deploying a war file to the local jboss server using maven

Hi,

I am trying to use the Maven to deploy the war file to the local JBoss server.
I don't have access to the Mojo or Condo(?? just had it ) or any other plugins other than
jboss-as-maven-plugin.
I read online that you still can do this with jboss-as-maven-plugin.
When I run this, I am getting this error message:
deployment failed: repository element was not specified in the POM insdie distributionManagement element or in -DaltdeploymentRespository=id::layout::url parameter

<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-war-plugin</artifactId>
				<version>2.1.1</version>
				<configuration>
					<filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
					<warName>${plugin.war.warName}</warName>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.jboss.as.plugins</groupId>
				<artifactId>jboss-as-maven-plugin</artifactId>
				<configuration>
					<force>true</force>
					<jboss_Home>C:\Servers\jboss-jpp-6.0.0\jboss-jpp-6.0\standalone\deployments</jboss_Home>
		
					<serverName>Standalone</serverName>
					<targetDir>target</targetDir>
					<hostname>${jboss.as.deploy.hostname}</hostname>
					<username>${jboss.as.deploy.username}</username>
					<password>${jboss.as.deploy.password}</password>
					<fileNames>
						<fileName>target/${plugin.war.warName}.war</fileName>
					</fileNames>                 
					
				</configuration>
			</plugin>

		</plugins>

Open in new window

Avatar of chaitu chaitu
chaitu chaitu
Flag of India image

i deployed the war in jboss-as-web-7.0.1.Final  version .

i ran the pom.xml using the goal as jboss-as:deploy in eclipse then the war is deploy in the server.if you need to deploy the war in remote system then use the tag as hostname otherwise below tags are enough to deploy in local jboss.

<plugin>
				<groupId>org.jboss.as.plugins</groupId>
				<artifactId>jboss-as-maven-plugin</artifactId>
              <configuration>
            <jbossHome>D:\jboss-as-web-7.0.1.Final\standalone\deployments</jbossHome>
             <serverName>standalone</serverName>
          </configuration>

Open in new window

Avatar of dkim18
dkim18

ASKER

No plugin found for prefix 'jboss-as' in the current project and in the
plugin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the r
epositories [local (C:\Users\xxxx\.m2\repository), nexus (http://xxxxxxxx:8
081/nexus/content/groups/public)] -> [Help 1]

This is the error I am getting, when I do mvn jboss-as:deploy.

I have th jboss-as-maven-plugin-7.4.Final.jar in the repository.
ASKER CERTIFIED SOLUTION
Avatar of chaitu chaitu
chaitu chaitu
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of dkim18

ASKER

<plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-war-plugin</artifactId>
				<version>2.1.1</version>
				<configuration>
					<filteringDeploymentDescriptors>true</filteringDeploymentDescriptors>
					<warName>${plugin.war.warName}</warName>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.jboss.as.plugins</groupId>
				<artifactId>jboss-as-maven-plugin</artifactId>
				<version>7.4.Final</version>
				
				<configuration>
					<force>true</force>
					<jbossHome>C:\Dev\Servers\jboss-jpp-6.0.0\jboss-jpp-6.0\standalone\deployments</jbossHome>		
					<serverName>standalone</serverName>						
					<fileNames>
						<fileName>target/${plugin.war.warName}.war</fileName>
					</fileNames>      
					
				</configuration>
			</plugin>

		</plugins>

Open in new window

remove <version>7.4.Final</version> and  below tag.

<fileNames>
                                    <fileName>target/${plugin.war.warName}.war</fileName>
                              </fileNames>
Avatar of dkim18

ASKER

<plugin>
				<groupId>org.jboss.as.plugins</groupId>
				<artifactId>jboss-as-maven-plugin</artifactId>
				<configuration>
					<jbossHome>C:\Dev\Servers\jboss-jpp-6.0.0\jboss-jpp-6.0\standalone\deployments</jbossHome>
					<serverName>standalone</serverName>					
				</configuration>
			</plugin>

Open in new window



Tried about and getting the same error.
I found more error info...

[WARNING] The POM for org.jboss.as.plugins:jboss-as-maven-plugin:jar:7.4.Final i
s missing, no dependency information available
[WARNING] Failed to retrieve plugin descriptor for org.jboss.as.plugins:jboss-as
-maven-plugin:7.4.Final: Plugin org.jboss.as.plugins:jboss-as-maven-plugin:7.4.F
inal or one of its dependencies could not be resolved: Failed to read artifact d
escriptor for org.jboss.as.plugins:jboss-as-maven-plugin:jar:7.4.Final
[WARNING] The POM for org.jboss.as.plugins:jboss-as-maven-plugin:jar:7.4.Final i
s missing, no dependency information available
[WARNING] Failed to retrieve plugin descriptor for org.jboss.as.plugins:jboss-as
-maven-plugin:7.4.Final: Plugin org.jboss.as.plugins:jboss-as-maven-plugin:7.4.F
inal or one of its dependencies could not be resolved: Failed to read artifact d
escriptor for org.jboss.as.plugins:jboss-as-maven-plugin:jar:7.4.Final
Downloading: http://xx:8081/nexus/content/groups/public/org/apache/mav
en/plugins/maven-metadata.xml
Downloading: http://xxx:8081/nexus/content/groups/public/org/codehaus/m
ojo/maven-metadata.xml
Downloaded: http://xxx:8081/nexus/content/groups/public/org/codehaus/mo
jo/maven-metadata.xml (2 KB at 1.3 KB/sec)
Downloaded: http://xx:8081/nexus/content/groups/public/org/apache/mave
n/plugins/maven-metadata.xml (1005 B at 1.1 KB/sec)

Open in new window



Sounds like I am missing a descriptor file or something in my jboss-as-maven-plugin folder.
I only have a jar file in there.
it seems there is some problem while downloading jars from nexus/content/groups/public/org/codehaus. i think  you are downloading jars from nexus repository.check your maven settings.xml file.

but my jars are downloaded from central maven repository.
Avatar of dkim18

ASKER

yes..I am getting them from our Nexus repository web server.
I will check.