[
http://jira.codehaus.org/browse/MOJO-1239?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=176984#action_176984
]
Jon Osborn commented on MOJO-1239:
----------------------------------
There are two known ways around this bug:
1. change your repository setting in either maven/conf/settings.xml or
{home}/.m2/settingd.xml so the repo path does not have spaces
2. change your repository setting in either maven/conf/settings.xml or
{home}/.m2/settingd.xml so the repo path ON WINDOWS uses the 8 character style:
C:\Docume~1\{user}\.m2\repository
This is an internal defect in the way the command line is parsed and there is
not much we (weblogic mojo people) can do about it. Feel free to file a jira
for maven though.
> error while runing mvn weblogic:deploy
> --------------------------------------
>
> Key: MOJO-1239
> URL: http://jira.codehaus.org/browse/MOJO-1239
> Project: Mojo
> Issue Type: Bug
> Components: weblogic
> Reporter: Ashish
> Original Estimate: 0 minutes
> Remaining Estimate: 0 minutes
>
> Hi Scott,
>
> I am getting following error when I try to run mvn weblogic:deploy
>
> E:\Ashish Updated\SushilAFM\MegaMatrix>mvn -o weblogic:deploy
> [INFO]
> NOTE: Maven is executing in offline mode. Any artifacts not already in your
> loca
> l
> repository will be inaccessible.
>
> [INFO] Scanning for projects...
> [INFO] Searching repository for plugin with prefix: 'weblogic'.
> WAGON_VERSION: 1.0-beta-2
> [INFO]
> ------------------------------------------------------------------------
> [INFO] Building Mega Matrix
> [INFO] task-segment: [weblogic:deploy]
> [INFO]
> ------------------------------------------------------------------------
> [INFO] [weblogic:deploy]
> [INFO] Weblogic Deployment beginning with parameters
> DeployMojoBase[adminServerH
> ostName = localhost, adminServerProtocol = t3, adminServerPort = 7001, userId
> =
> weblogic, password = weblogic, artifactPath = E:\Ashish
> Updated\SushilAFM\MegaMa
> trix\target/megamatrix-2.0-SNAPSHOT, projectPackaging = war, name =
> megamatrix,
> targetNames = AdminServer, remote = false]
> weblogic.Deployer invoked with options: -adminurl t3://localhost:7001
> -username
> weblogic -name megamatrix -targets AdminServer -source E:\Ashish
> Updated\Sushil
> AFM\MegaMatrix\target/megamatrix-2.0-SNAPSHOT.war -deploy
> <Oct 3, 2008 10:32:13 AM IST> <Info> <J2EE Deployment SPI> <BEA-260121>
> <Initiat
> ing deploy operation for application, megamatrix [archive: E:\Ashish
> Updated\Sus
> hilAFM\MegaMatrix\target\megamatrix-2.0-SNAPSHOT.war], to AdminServer .>
> no protocol: and
>
> My pom.xml is :
> Pom.xml
>
> <?xml version="1.0" encoding="UTF-8"?>
> <project>
> <modelVersion>4.0.0</modelVersion>
> <parent>
> <groupId>com.fareis</groupId>
> <artifactId>pom-web</artifactId>
> <version>1.4.0</version>
> </parent>
> <groupId>com.fareis</groupId>
> <artifactId>megamatrix</artifactId>
> <version>2.0-SNAPSHOT</version>
> <name>Mega Matrix</name>
> <url>http://fada1scmd01.firstam-reis.net/megamatrix</url>
> <packaging>war</packaging>
> <description>Internal First American web application used to
> search
> agencies for current and delinquent tax information.</description>
> <dependencies>
> <dependency>
> <groupId>org.springframework</groupId>
> <artifactId>spring</artifactId>
> <version>2.0.6</version>
> </dependency>
> <dependency>
> <groupId>org.springframework</groupId>
> <artifactId>spring-webmvc</artifactId>
> <version>2.0.6</version>
> </dependency>
> <dependency>
> <groupId>org.springframework</groupId>
> <artifactId>spring-beans</artifactId>
> <version>2.0.6</version>
> </dependency>
>
> <dependency>
> <groupId>uk.ltd.getahead</groupId>
> <artifactId>dwr</artifactId>
> <version>1.1.1</version>
> </dependency>
> <dependency>
> <groupId>commons-logging</groupId>
> <artifactId>commons-logging</artifactId>
> <version>1.1.1</version>
> </dependency>
> <dependency>
> <groupId>log4j</groupId>
> <artifactId>log4j</artifactId>
> <version>1.2.14</version>
> </dependency>
> <dependency>
> <groupId>javax.servlet</groupId>
> <artifactId>jstl</artifactId>
> <version>1.1.2</version>
> </dependency>
> <dependency>
> <groupId>javax.servlet</groupId>
> <artifactId>servlet-api</artifactId>
> <version>2.3</version>
> </dependency>
> <dependency>
> <groupId>taglibs</groupId>
> <artifactId>standard</artifactId>
> <version>1.1.2</version>
> </dependency>
> <dependency>
>
> <groupId>com.fareis.authentication</groupId>
>
> <artifactId>fareis-authentication</artifactId>
> <version>1.0.0</version>
> </dependency>
> <dependency>
> <groupId>commons-collections</groupId>
>
> <artifactId>commons-collections</artifactId>
> <version>3.2</version>
> </dependency>
> <dependency>
> <groupId>com.fareis</groupId>
>
> <artifactId>mainframe-services</artifactId>
> <version>1.0.0</version>
> </dependency>
> <dependency>
> <groupId>commons-dbcp</groupId>
> <artifactId>commons-dbcp</artifactId>
> <version>1.2</version>
> </dependency>
> <dependency>
> <groupId>com.ibm</groupId>
> <artifactId>db2jcc</artifactId>
> <version>1.9.23</version>
> </dependency>
> <dependency>
> <groupId>com.ibm</groupId>
>
> <artifactId>db2jcc_license_cisuz</artifactId>
> <version>1.9.23</version>
> </dependency>
> <dependency>
> <groupId>commons-validator</groupId>
> <artifactId>commons-validator</artifactId>
> <version>1.3.1</version>
> </dependency>
> </dependencies>
>
> <repositories>
> <repository>
> <id>Codehaus Snapshots</id>
> <url>http://snapshots.repository.codehaus.org/</url>
> <snapshots>
> <enabled>true</enabled>
> </snapshots>
> <releases>
> <enabled>false</enabled>
> </releases>
> </repository>
> </repositories>
> <pluginRepositories>
> <pluginRepository>
> <id>Codehaus Snapshots</id>
> <url>http://snapshots.repository.codehaus.org/</url>
> <snapshots>
> <enabled>true</enabled>
> </snapshots>
> <releases>
> <enabled>false</enabled>
> </releases>
> </pluginRepository>
> </pluginRepositories>
>
> <scm>
> <connection>
>
> scm:svn:http://fada1scmd01.firstam-reis.net/svn/repos/mega-matrix/trunk/
> </connection>
> <developerConnection>
>
> scm:svn:http://fada1scmd01.firstam-reis.net/svn/repos/mega-matrix/trunk/
> </developerConnection>
> <url>
>
> http://fada1scmd01.firstam-reis.net/svn/repos/mega-matrix/
> </url>
> </scm>
> <build>
> <plugins>
> <plugin>
>
> <groupId>org.apache.maven.plugins</groupId>
>
> <artifactId>maven-compiler-plugin</artifactId>
> <configuration>
>
> <source>1.5</source>
>
> <target>1.5</target>
> </configuration>
> </plugin>
> <plugin>
>
> <groupId>org.apache.maven.plugins</groupId>
>
> <artifactId>maven-pmd-plugin</artifactId>
> <configuration>
>
>
> <targetJdk>1.5</targetJdk>
> </configuration>
> </plugin>
>
>
> <plugin>
> <groupId>org.codehaus.mojo</groupId>
> <artifactId>weblogic-maven-plugin</artifactId>
> <version>2.9.0-SNAPSHOT</version>
> <configuration>
> <adminServerHostName>localhost</adminServerHostName>
> <adminServerPort>7001</adminServerPort>
> <adminServerProtocol>t3</adminServerProtocol>
> <userId>weblogic</userId>
> <password>weblogic</password>
> <upload>false</upload>
> <remote>false</remote>
> <verbose>false</verbose>
> <debug>false</debug>
> <targetNames>AdminServer</targetNames>
> </configuration>
> </plugin>
>
>
>
>
> </plugins>
> </build>
> </project>
>
>
> Please suggest what to do?
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe from this list, please visit:
http://xircles.codehaus.org/manage_email