I have configured jboss-maven-plugin as, <build> <defaultGoal>package</defaultGoal> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>jboss-maven-plugin</artifactId> <version>1.3.1</version> <configuration> <jbossHome>H:/jboss-4.2.3.GA</jbossHome> <server>default</server> <hostName>localhost</hostName> <port>8080</port> </configuration> </plugin> </plugins> </build>
Also my settings.xml looks like this. <server> <id>default</id> <username>admin</username> <password>admin</password> </server> But when I run the jboss deploy command I get the following error. ------------------------------------------------------------------------ [INFO] Mojo error occurred: Server returned HTTP response code: 505 for URL: http://localhost:8080/jmx-console/HtmlAdaptor?action=invokeOpByName&name=jboss.system:service%3DMainDeployer&methodName=deploy&argType=java.net.URL&arg0=file:H:\Eclipse Workspace\testdilshan\target/testdilshan-0.0.1-SNAPSHOT.war What will be the possible reason for this ? -- View this message in context: http://www.nabble.com/Promblem-configuring-jboss-maven-plugin-tp20224178p20224178.html Sent from the Maven - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
