[jira] [Commented] (HBASE-15753) Site does not build with the instructions in the book

2017-10-25 Thread Misty Stanley-Jones (JIRA)

[ 
https://issues.apache.org/jira/browse/HBASE-15753?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16219460#comment-16219460
 ] 

Misty Stanley-Jones commented on HBASE-15753:
-

Yeah, you still have to do 
{code:java}
mvn install
{code}
 before you can build the docs for the first time. I thought we fixed this. 
Anyway after I do 
{code:java}
mvn install
{code}
 I am able to build the docs with just 
{code:java}
mvn site -DskipTests
{code}
 and no errors.

> Site does not build with the instructions in the book
> -
>
> Key: HBASE-15753
> URL: https://issues.apache.org/jira/browse/HBASE-15753
> Project: HBase
>  Issue Type: Bug
>  Components: community, documentation, website
>Reporter: Enis Soztutar
>Assignee: Misty Stanley-Jones
>
> Originally reported by [~clarax98007] in HBASE-15337. 
> Instructions in the book say to run: 
> {code}
> mvn site -DskipTests
> {code}
> But it fails with javadoc related errors. 
> Seems that we are using this in the jenkins job that [~misty] had setup 
> (https://builds.apache.org/job/hbase_generate_website/): 
> {code}mvn  site -DskipTests -Dmaven.javadoc.skip=true -Dcheckstyle.skip=true 
> -Dfindbugs.skip=true {code}
> We should either fix the javadoc, or update the instructions. 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (HBASE-15753) Site does not build with the instructions in the book

2017-10-25 Thread Misty Stanley-Jones (JIRA)

[ 
https://issues.apache.org/jira/browse/HBASE-15753?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16219077#comment-16219077
 ] 

Misty Stanley-Jones commented on HBASE-15753:
-

It seems counter-intuitive that we'd need to skip the Javadoc when we are 
specifically building docs (which includes Javadoc).

> Site does not build with the instructions in the book
> -
>
> Key: HBASE-15753
> URL: https://issues.apache.org/jira/browse/HBASE-15753
> Project: HBase
>  Issue Type: Bug
>  Components: community, documentation, website
>Reporter: Enis Soztutar
>Assignee: Misty Stanley-Jones
>
> Originally reported by [~clarax98007] in HBASE-15337. 
> Instructions in the book say to run: 
> {code}
> mvn site -DskipTests
> {code}
> But it fails with javadoc related errors. 
> Seems that we are using this in the jenkins job that [~misty] had setup 
> (https://builds.apache.org/job/hbase_generate_website/): 
> {code}mvn  site -DskipTests -Dmaven.javadoc.skip=true -Dcheckstyle.skip=true 
> -Dfindbugs.skip=true {code}
> We should either fix the javadoc, or update the instructions. 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (HBASE-15753) Site does not build with the instructions in the book

2017-10-25 Thread Misty Stanley-Jones (JIRA)

[ 
https://issues.apache.org/jira/browse/HBASE-15753?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16219076#comment-16219076
 ] 

Misty Stanley-Jones commented on HBASE-15753:
-

The error I get is:


{code:java}
[ERROR] Failed to execute goal 
org.apache.maven.plugins:maven-site-plugin:3.4:site (default-site) on project 
hbase: failed to get report for org.apache.maven.plugins:maven-javadoc-plugin: 
Failed to execute goal on project hbase-server: Could not resolve dependencies 
for project org.apache.hbase:hbase-server:jar:3.0.0-SNAPSHOT: The following 
artifacts could not be resolved: 
org.apache.hbase:hbase-http:jar:3.0.0-SNAPSHOT, 
org.apache.hbase:hbase-http:jar:tests:3.0.0-SNAPSHOT: Could not find artifact 
org.apache.hbase:hbase-http:jar:3.0.0-SNAPSHOT in project.local 
(file:/Users/misty/repos/asf/hbase/hbase-server/src/site/resources/repo) -> 
[Help 1]
[ERROR] 
{code}



> Site does not build with the instructions in the book
> -
>
> Key: HBASE-15753
> URL: https://issues.apache.org/jira/browse/HBASE-15753
> Project: HBase
>  Issue Type: Bug
>  Components: community, documentation, website
>Reporter: Enis Soztutar
>Assignee: Misty Stanley-Jones
>
> Originally reported by [~clarax98007] in HBASE-15337. 
> Instructions in the book say to run: 
> {code}
> mvn site -DskipTests
> {code}
> But it fails with javadoc related errors. 
> Seems that we are using this in the jenkins job that [~misty] had setup 
> (https://builds.apache.org/job/hbase_generate_website/): 
> {code}mvn  site -DskipTests -Dmaven.javadoc.skip=true -Dcheckstyle.skip=true 
> -Dfindbugs.skip=true {code}
> We should either fix the javadoc, or update the instructions. 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (HBASE-15753) Site does not build with the instructions in the book

2016-05-03 Thread Sean Busbey (JIRA)

[ 
https://issues.apache.org/jira/browse/HBASE-15753?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15270076#comment-15270076
 ] 

Sean Busbey commented on HBASE-15753:
-

due to the more aggressive linter in jdk8, we turn off enforcement. So there 
will be a number of messages output that claim ERROR but don't actually fail 
the build.

> Site does not build with the instructions in the book
> -
>
> Key: HBASE-15753
> URL: https://issues.apache.org/jira/browse/HBASE-15753
> Project: HBase
>  Issue Type: Bug
>Reporter: Enis Soztutar
>
> Originally reported by [~clarax98007] in HBASE-15337. 
> Instructions in the book say to run: 
> {code}
> mvn site -DskipTests
> {code}
> But it fails with javadoc related errors. 
> Seems that we are using this in the jenkins job that [~misty] had setup 
> (https://builds.apache.org/job/hbase_generate_website/): 
> {code}mvn  site -DskipTests -Dmaven.javadoc.skip=true -Dcheckstyle.skip=true 
> -Dfindbugs.skip=true {code}
> We should either fix the javadoc, or update the instructions. 



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


[jira] [Commented] (HBASE-15753) Site does not build with the instructions in the book

2016-05-03 Thread Enis Soztutar (JIRA)

[ 
https://issues.apache.org/jira/browse/HBASE-15753?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15269637#comment-15269637
 ] 

Enis Soztutar commented on HBASE-15753:
---

I am building with jdk-8, and the build is failing with bunch of ERRORs being 
reported from the javadoc tool, and the maven javadoc plugin execution fails 
with that. Did not inspect what is the actual root cause. 

> Site does not build with the instructions in the book
> -
>
> Key: HBASE-15753
> URL: https://issues.apache.org/jira/browse/HBASE-15753
> Project: HBase
>  Issue Type: Bug
>Reporter: Enis Soztutar
>
> Originally reported by [~clarax98007] in HBASE-15337. 
> Instructions in the book say to run: 
> {code}
> mvn site -DskipTests
> {code}
> But it fails with javadoc related errors. 
> Seems that we are using this in the jenkins job that [~misty] had setup 
> (https://builds.apache.org/job/hbase_generate_website/): 
> {code}mvn  site -DskipTests -Dmaven.javadoc.skip=true -Dcheckstyle.skip=true 
> -Dfindbugs.skip=true {code}
> We should either fix the javadoc, or update the instructions. 



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


[jira] [Commented] (HBASE-15753) Site does not build with the instructions in the book

2016-05-03 Thread Sean Busbey (JIRA)

[ 
https://issues.apache.org/jira/browse/HBASE-15753?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=15268820#comment-15268820
 ] 

Sean Busbey commented on HBASE-15753:
-

do we have specific javadoc errors? I thought javadoc on master worked with 
jdk8?

> Site does not build with the instructions in the book
> -
>
> Key: HBASE-15753
> URL: https://issues.apache.org/jira/browse/HBASE-15753
> Project: HBase
>  Issue Type: Bug
>Reporter: Enis Soztutar
>
> Originally reported by [~clarax98007] in HBASE-15337. 
> Instructions in the book say to run: 
> {code}
> mvn site -DskipTests
> {code}
> But it fails with javadoc related errors. 
> Seems that we are using this in the jenkins job that [~misty] had setup 
> (https://builds.apache.org/job/hbase_generate_website/): 
> {code}mvn  site -DskipTests -Dmaven.javadoc.skip=true -Dcheckstyle.skip=true 
> -Dfindbugs.skip=true {code}
> We should either fix the javadoc, or update the instructions. 



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