|
View:
New views
6 Messages
—
Rating Filter:
Alert me
|
|
|
[jira] Created: (CONTINUUM-2275) It shown errored message by maven2.
by JIRA jira@codehaus.org
::
Rate this Message:
Reply (Restricted by the Administrator) | Reply to Author | View Threaded | Show Only this Message It shown errored message by maven2.
----------------------------------- Key: CONTINUUM-2275 URL: http://jira.codehaus.org/browse/CONTINUUM-2275 Project: Continuum Issue Type: Bug Components: Integration - Maven 2 Affects Versions: 1.3.3 Environment: os - linux 32bit. Reporter: TaeSangGu Priority: Critical Hi. When I insert data at "add project" of maven2, It was displayed as below on continuum-1.3.3. "The specified resource cannot be accessed. Please try again later or contact your administrator." I did inserted data at maven2. scm:svn:https://hostname/svn/project/trunk/pom.xml And I did inserted data "scm" https://hostname/svn/project/trunk/pom.xml but It shown display erroed "Missing ''scm'' element in the POM, project " So I shown open sources of continuum. (AddMavenProjectAction.java) catch ( MalformedURLException e ) <-- alert execption. { addActionError( getText( "add.project.unknown.error" ) ); return doDefault(); } Could you please how to solve it to me? Best regards Thank you. -- 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 |
|
|
[jira] Updated: (CONTINUUM-2275) Unable to add maven2 project
by JIRA jira@codehaus.org
::
Rate this Message:
Reply (Restricted by the Administrator) | Reply to Author | View Threaded | Show Only this Message [ http://jira.codehaus.org/browse/CONTINUUM-2275?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Wendy Smoak updated CONTINUUM-2275: ----------------------------------- Priority: Minor (was: Critical) Summary: Unable to add maven2 project (was: It shown errored message by maven2.) If you used "scm:svn:https://hostname/svn/project/trunk/pom.xml" when you added the project, try it _without_ the scm:svn: prefix. If you're still having trouble, please ask on the user mailing list. You can find subscription info here: http://continuum.apache.org/mail-lists.html > Unable to add maven2 project > ----------------------------- > > Key: CONTINUUM-2275 > URL: http://jira.codehaus.org/browse/CONTINUUM-2275 > Project: Continuum > Issue Type: Bug > Components: Integration - Maven 2 > Affects Versions: 1.3.3 > Environment: os - linux 32bit. > Reporter: TaeSangGu > Priority: Minor > > Hi. > When I insert data at "add project" of maven2, It was displayed as below on continuum-1.3.3. > "The specified resource cannot be accessed. Please try again later or contact your administrator." > I did inserted data at maven2. > scm:svn:https://hostname/svn/project/trunk/pom.xml > And I did inserted data "scm" > https://hostname/svn/project/trunk/pom.xml > but It shown display erroed "Missing ''scm'' element in the POM, project " > So I shown open sources of continuum. (AddMavenProjectAction.java) > catch ( MalformedURLException e ) <-- alert execption. > { > > addActionError( getText( "add.project.unknown.error" ) ); > return doDefault(); > } > Could you please how to solve it to me? > Best regards Thank you. -- 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 |
|
|
[jira] Commented: (CONTINUUM-2275) Unable to add maven2 project
by JIRA jira@codehaus.org
::
Rate this Message:
Reply (Restricted by the Administrator) | Reply to Author | View Threaded | Show Only this Message [ http://jira.codehaus.org/browse/CONTINUUM-2275?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=181385#action_181385 ] Jevica Arianne B. Zurbano commented on CONTINUUM-2275: ------------------------------------------------------ If you are getting the "Missing ''scm'' element in the POM, project" error, you might need to add the <scm> tag in your project's pom.xml. It is configured similar to the following: {noformat} <scm> <connection>scm:svn:https://hostname/svn/project/trunk</connection> <developerConnection>scm:svn:https://hostname/svn/project/trunk</developerConnection> </scm> {noformat} And, as suggested by Wendy, add the project without the "scm:svn:" > Unable to add maven2 project > ----------------------------- > > Key: CONTINUUM-2275 > URL: http://jira.codehaus.org/browse/CONTINUUM-2275 > Project: Continuum > Issue Type: Bug > Components: Integration - Maven 2 > Affects Versions: 1.3.3 > Environment: os - linux 32bit. > Reporter: TaeSangGu > Priority: Minor > > Hi. > When I insert data at "add project" of maven2, It was displayed as below on continuum-1.3.3. > "The specified resource cannot be accessed. Please try again later or contact your administrator." > I did inserted data at maven2. > scm:svn:https://hostname/svn/project/trunk/pom.xml > And I did inserted data "scm" > https://hostname/svn/project/trunk/pom.xml > but It shown display erroed "Missing ''scm'' element in the POM, project " > So I shown open sources of continuum. (AddMavenProjectAction.java) > catch ( MalformedURLException e ) <-- alert execption. > { > > addActionError( getText( "add.project.unknown.error" ) ); > return doDefault(); > } > Could you please how to solve it to me? > Best regards Thank you. -- 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 |
|
|
[jira] Commented: (CONTINUUM-2275) Unable to add maven2 project
by JIRA jira@codehaus.org
::
Rate this Message:
Reply (Restricted by the Administrator) | Reply to Author | View Threaded | Show Only this Message [ http://jira.codehaus.org/browse/CONTINUUM-2275?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=181428#action_181428 ] TaeSangGu commented on CONTINUUM-2275: -------------------------------------- Hi. Wendy and Jevica. Thank you for your reply. I did insert into pom.xml configured about <scm> on fire fox, and then it looks good. Have a good day.~ Thanks. > Unable to add maven2 project > ----------------------------- > > Key: CONTINUUM-2275 > URL: http://jira.codehaus.org/browse/CONTINUUM-2275 > Project: Continuum > Issue Type: Bug > Components: Integration - Maven 2 > Affects Versions: 1.3.3 > Environment: os - linux 32bit. > Reporter: TaeSangGu > Priority: Minor > Fix For: 1.3.3 > > > Hi. > When I insert data at "add project" of maven2, It was displayed as below on continuum-1.3.3. > "The specified resource cannot be accessed. Please try again later or contact your administrator." > I did inserted data at maven2. > scm:svn:https://hostname/svn/project/trunk/pom.xml > And I did inserted data "scm" > https://hostname/svn/project/trunk/pom.xml > but It shown display erroed "Missing ''scm'' element in the POM, project " > So I shown open sources of continuum. (AddMavenProjectAction.java) > catch ( MalformedURLException e ) <-- alert execption. > { > > addActionError( getText( "add.project.unknown.error" ) ); > return doDefault(); > } > Could you please how to solve it to me? > Best regards Thank you. -- 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 |
|
|
[jira] Closed: (CONTINUUM-2275) Unable to add maven2 project
by JIRA jira@codehaus.org
::
Rate this Message:
Reply (Restricted by the Administrator) | Reply to Author | View Threaded | Show Only this Message [ http://jira.codehaus.org/browse/CONTINUUM-2275?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] TaeSangGu closed CONTINUUM-2275. -------------------------------- Resolution: Not A Bug Fix Version/s: 1.3.3 > Unable to add maven2 project > ----------------------------- > > Key: CONTINUUM-2275 > URL: http://jira.codehaus.org/browse/CONTINUUM-2275 > Project: Continuum > Issue Type: Bug > Components: Integration - Maven 2 > Affects Versions: 1.3.3 > Environment: os - linux 32bit. > Reporter: TaeSangGu > Priority: Minor > Fix For: 1.3.3 > > > Hi. > When I insert data at "add project" of maven2, It was displayed as below on continuum-1.3.3. > "The specified resource cannot be accessed. Please try again later or contact your administrator." > I did inserted data at maven2. > scm:svn:https://hostname/svn/project/trunk/pom.xml > And I did inserted data "scm" > https://hostname/svn/project/trunk/pom.xml > but It shown display erroed "Missing ''scm'' element in the POM, project " > So I shown open sources of continuum. (AddMavenProjectAction.java) > catch ( MalformedURLException e ) <-- alert execption. > { > > addActionError( getText( "add.project.unknown.error" ) ); > return doDefault(); > } > Could you please how to solve it to me? > Best regards Thank you. -- 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 |
|
|
[jira] Updated: (CONTINUUM-2275) Unable to add maven2 project
by JIRA jira@codehaus.org
::
Rate this Message:
Reply (Restricted by the Administrator) | Reply to Author | View Threaded | Show Only this Message [ http://jira.codehaus.org/browse/CONTINUUM-2275?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Wendy Smoak updated CONTINUUM-2275: ----------------------------------- Assignee: Jevica Arianne B. Zurbano Fix Version/s: (was: 1.3.3) Unsetting fix-for version since it was considered not a bug. Though we should check the docs to make sure this is clear... > Unable to add maven2 project > ----------------------------- > > Key: CONTINUUM-2275 > URL: http://jira.codehaus.org/browse/CONTINUUM-2275 > Project: Continuum > Issue Type: Bug > Components: Integration - Maven 2 > Affects Versions: 1.3.3 > Environment: os - linux 32bit. > Reporter: TaeSangGu > Assignee: Jevica Arianne B. Zurbano > Priority: Minor > > Hi. > When I insert data at "add project" of maven2, It was displayed as below on continuum-1.3.3. > "The specified resource cannot be accessed. Please try again later or contact your administrator." > I did inserted data at maven2. > scm:svn:https://hostname/svn/project/trunk/pom.xml > And I did inserted data "scm" > https://hostname/svn/project/trunk/pom.xml > but It shown display erroed "Missing ''scm'' element in the POM, project " > So I shown open sources of continuum. (AddMavenProjectAction.java) > catch ( MalformedURLException e ) <-- alert execption. > { > > addActionError( getText( "add.project.unknown.error" ) ); > return doDefault(); > } > Could you please how to solve it to me? > Best regards Thank you. -- 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 |
| Free embeddable forum powered by Nabble | Forum Help |