[ 
https://issues.apache.org/jira/browse/MRELEASE-974?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15803229#comment-15803229
 ] 

Jeremy Landis edited comment on MRELEASE-974 at 1/6/17 2:04 AM:
----------------------------------------------------------------

Not really a misunderstanding issue but rather I am trying to remove any 
reference from 'http' throughout my code bases.  What I didn't expect was the 
release plugin to fail.  The addSchema false option makes sense as maven has 
always rewritten the project tag which affects my formatting.  Eventually I 
gave up on that formatting not knowing I could disable that behaviour.  If that 
works for me (haven't tried yet), then the work around is perfect.

Can you tell me a bit more on what exactly maven is doing internally that 
required the rewriting of project tag in the first place?


was (Author: hazendaz):
Not really a misunderstanding issue but rather I am trying to remove any 
reference from 'http' throughout my code bases.  What I didn't expect was the 
release plugin to fail.  The addSchema false optino makes sense as maven has 
always rewritten the project tag which affects my formatting.  Eventually I 
gave up on that formatting not knowing I could disable that behaviour.  If that 
works for me (haven't tried yet), then the work around is perfect.

Can you tell me a bit more on what exactly maven is doing internally that 
required the rewriting of project tag in the first place?

> https in project tag
> --------------------
>
>                 Key: MRELEASE-974
>                 URL: https://issues.apache.org/jira/browse/MRELEASE-974
>             Project: Maven Release Plugin
>          Issue Type: Bug
>          Components: prepare
>    Affects Versions: 2.5.3
>            Reporter: Jeremy Landis
>            Priority: Minor
>
> In the pom on the <project> tag, I'd like to use https as they are available 
> for the xmlns, xmlns:xsi, and xsi:schemaLocation locations.  When I run other 
> plugins it's fine but if I try to release it fails.  It initially fails with 
> xmlns:xsi issue.  If I set that back to http, then it flags tags all with 
> http throughout and crashes.  
> What I have to use now...
> ```
> <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/xsd/maven-4.0.0.xsd";>
> ```
> What I would like to use...
> ```
> <project xmlns="https://maven.apache.org/POM/4.0.0"; 
> xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance"; 
> xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 
> https://maven.apache.org/xsd/maven-4.0.0.xsd";>
> ```
> Is this possible?



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to