You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@cassandra.apache.org by "Steinmaurer, Thomas" <th...@dynatrace.com> on 2018/11/12 09:21:10 UTC

Cassandra 4.0 (Trunk) - "ant artifacts" does not create binary tarball

Hello,

I'm trying to start with some first C* 4.0 experiments, thus tried to locally build and create binary tarball artifcats. While this has worked e.g. with 3.11, I can't create a binary tarball for 4.0 anymore.

What I did locally:
* Switched from branch cassandra-3.11 to trunk
* ant realclean
* ant artifacts

I get the apache-cassandra-4.0-SNAPSHOT.jar created but no binary tarball.

End of "ant artifacts" console output is:

  [javadoc]  * the compaction strategy placement reflect most up-to-date disk boundaries, call {@link this#maybeReloadDiskBoundaries()}
  [javadoc]                                                                                    ^
  [javadoc] Building index for all the packages and classes...
  [javadoc] Building index for all classes...
  [javadoc] Generating C:\workspaces\git\cassandra\build\javadoc\help-doc.html...
  [javadoc] 92 errors
  [javadoc] 100 warnings

gen-doc:
     [exec]
     [exec] The 'sphinx-build' command was not found. Make sure you have Sphinx
     [exec] installed, then set the SPHINXBUILD environment variable to point
     [exec] to the full path of the 'sphinx-build' executable. Alternatively you
     [exec] may add the Sphinx directory to PATH.
     [exec]
     [exec] If you don't have Sphinx installed, grab it from
     [exec] http://sphinx-doc.org/
     [exec] Result: 1

artifacts:

BUILD SUCCESSFUL
Total time: 3 minutes 14 seconds


Thanks,
Thomas

The contents of this e-mail are intended for the named addressee only. It contains information that may be confidential. Unless you are the named addressee or an authorized designee, you may not copy or use it, or disclose it to anyone else. If you received it in error please notify us immediately and then destroy it. Dynatrace Austria GmbH (registration number FN 91482h) is a company registered in Linz whose registered office is at 4040 Linz, Austria, Freist?dterstra?e 313

RE: Cassandra 4.0 (Trunk) - "ant artifacts" does not create binary tarball

Posted by "Steinmaurer, Thomas" <th...@dynatrace.com>.
Marcus,

that did the trick. Thx a lot.

T.

> -----Original Message-----
> From: Marcus Eriksson <ma...@apache.org>
> Sent: Montag, 12. November 2018 10:31
> To: dev@cassandra.apache.org
> Subject: Re: Cassandra 4.0 (Trunk) - "ant artifacts" does not create binary
> tarball
>
> In trunk you need to provide JAVA_HOME to both java8 and java11, like this
> for example;
>
> $ JAVA8_HOME=<java8 home> JAVA_HOME=<java11 home> ant artifacts
>
> /Marcus
>
> On Mon, Nov 12, 2018 at 09:21:10AM +0000, Steinmaurer, Thomas wrote:
> > Hello,
> >
> > I'm trying to start with some first C* 4.0 experiments, thus tried to locally
> build and create binary tarball artifcats. While this has worked e.g. with 3.11, I
> can't create a binary tarball for 4.0 anymore.
> >
> > What I did locally:
> > * Switched from branch cassandra-3.11 to trunk
> > * ant realclean
> > * ant artifacts
> >
> > I get the apache-cassandra-4.0-SNAPSHOT.jar created but no binary tarball.
> >
> > End of "ant artifacts" console output is:
> >
> >   [javadoc]  * the compaction strategy placement reflect most up-to-date
> disk boundaries, call {@link this#maybeReloadDiskBoundaries()}
> >   [javadoc]                                                                                    ^
> >   [javadoc] Building index for all the packages and classes...
> >   [javadoc] Building index for all classes...
> >   [javadoc] Generating C:\workspaces\git\cassandra\build\javadoc\help-
> doc.html...
> >   [javadoc] 92 errors
> >   [javadoc] 100 warnings
> >
> > gen-doc:
> >      [exec]
> >      [exec] The 'sphinx-build' command was not found. Make sure you have
> Sphinx
> >      [exec] installed, then set the SPHINXBUILD environment variable to
> point
> >      [exec] to the full path of the 'sphinx-build' executable. Alternatively you
> >      [exec] may add the Sphinx directory to PATH.
> >      [exec]
> >      [exec] If you don't have Sphinx installed, grab it from
> >      [exec]
> https://na01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fsphinx-
> doc.org%2F&amp;data=01%7C01%7Cthomas.steinmaurer%40dynatrace.com
> %7C03eca1f6cc28486eb1b708d648828988%7C70ebe3a35b30435d9d677716d7
> 4ca190%7C1&amp;sdata=tQAjTlSRkHXB5m3760%2BmcduWkgBFKTdFBHCc7S
> RNR%2FQ%3D&amp;reserved=0
> >      [exec] Result: 1
> >
> > artifacts:
> >
> > BUILD SUCCESSFUL
> > Total time: 3 minutes 14 seconds
> >
> >
> > Thanks,
> > Thomas
> >
> > The contents of this e-mail are intended for the named addressee only. It
> contains information that may be confidential. Unless you are the named
> addressee or an authorized designee, you may not copy or use it, or disclose
> it to anyone else. If you received it in error please notify us immediately and
> then destroy it. Dynatrace Austria GmbH (registration number FN 91482h) is a
> company registered in Linz whose registered office is at 4040 Linz, Austria,
> Freist?dterstra?e 313
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@cassandra.apache.org
> For additional commands, e-mail: dev-help@cassandra.apache.org

The contents of this e-mail are intended for the named addressee only. It contains information that may be confidential. Unless you are the named addressee or an authorized designee, you may not copy or use it, or disclose it to anyone else. If you received it in error please notify us immediately and then destroy it. Dynatrace Austria GmbH (registration number FN 91482h) is a company registered in Linz whose registered office is at 4040 Linz, Austria, Freistädterstraße 313

Re: Cassandra 4.0 (Trunk) - "ant artifacts" does not create binary tarball

Posted by Marcus Eriksson <ma...@apache.org>.
In trunk you need to provide JAVA_HOME to both java8 and java11, like this for example;

$ JAVA8_HOME=<java8 home> JAVA_HOME=<java11 home> ant artifacts

/Marcus

On Mon, Nov 12, 2018 at 09:21:10AM +0000, Steinmaurer, Thomas wrote:
> Hello,
> 
> I'm trying to start with some first C* 4.0 experiments, thus tried to locally build and create binary tarball artifcats. While this has worked e.g. with 3.11, I can't create a binary tarball for 4.0 anymore.
> 
> What I did locally:
> * Switched from branch cassandra-3.11 to trunk
> * ant realclean
> * ant artifacts
> 
> I get the apache-cassandra-4.0-SNAPSHOT.jar created but no binary tarball.
> 
> End of "ant artifacts" console output is:
> 
>   [javadoc]  * the compaction strategy placement reflect most up-to-date disk boundaries, call {@link this#maybeReloadDiskBoundaries()}
>   [javadoc]                                                                                    ^
>   [javadoc] Building index for all the packages and classes...
>   [javadoc] Building index for all classes...
>   [javadoc] Generating C:\workspaces\git\cassandra\build\javadoc\help-doc.html...
>   [javadoc] 92 errors
>   [javadoc] 100 warnings
> 
> gen-doc:
>      [exec]
>      [exec] The 'sphinx-build' command was not found. Make sure you have Sphinx
>      [exec] installed, then set the SPHINXBUILD environment variable to point
>      [exec] to the full path of the 'sphinx-build' executable. Alternatively you
>      [exec] may add the Sphinx directory to PATH.
>      [exec]
>      [exec] If you don't have Sphinx installed, grab it from
>      [exec] http://sphinx-doc.org/
>      [exec] Result: 1
> 
> artifacts:
> 
> BUILD SUCCESSFUL
> Total time: 3 minutes 14 seconds
> 
> 
> Thanks,
> Thomas
> 
> The contents of this e-mail are intended for the named addressee only. It contains information that may be confidential. Unless you are the named addressee or an authorized designee, you may not copy or use it, or disclose it to anyone else. If you received it in error please notify us immediately and then destroy it. Dynatrace Austria GmbH (registration number FN 91482h) is a company registered in Linz whose registered office is at 4040 Linz, Austria, Freist?dterstra?e 313

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@cassandra.apache.org
For additional commands, e-mail: dev-help@cassandra.apache.org