You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Jahangir Mohammed (JIRA)" <ji...@apache.org> on 2011/03/08 20:12:59 UTC

[jira] Created: (CASSANDRA-2291) Ant build script in contrib/stress fails.

Ant build script in contrib/stress fails.
-----------------------------------------

                 Key: CASSANDRA-2291
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-2291
             Project: Cassandra
          Issue Type: Bug
          Components: Contrib
         Environment: Apache Ant version 1.8.0.
            Reporter: Jahangir Mohammed
            Priority: Minor


Build fails in contrib/stress with following message:
/mnt/hgfs/workspace/cassandra-source/contrib/stress/build.xml:38: javac doesn't support the nested "path" element.

Fix:
Needs to move <path refid="cassandra.classes" /> inside path element.

SVN copy:
            <path refid="cassandra.classes" />
            <classpath>
                <path>
                    <fileset dir="${cassandra.lib}">
                        <include name="**/*.jar" />
                    </fileset>
                </path>
            </classpath>

To be changed to:
            <classpath>
                <path>
                    <path refid="cassandra.classes" />
                    <fileset dir="${cassandra.lib}">
                        <include name="**/*.jar" />
                    </fileset>
                </path>
            </classpath>

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] Updated: (CASSANDRA-2291) Ant build script in contrib/stress fails.

Posted by "Jonathan Ellis (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CASSANDRA-2291?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jonathan Ellis updated CASSANDRA-2291:
--------------------------------------

    Affects Version/s: 0.8
        Fix Version/s: 0.8
             Assignee: Jonathan Ellis

> Ant build script in contrib/stress fails.
> -----------------------------------------
>
>                 Key: CASSANDRA-2291
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-2291
>             Project: Cassandra
>          Issue Type: Bug
>          Components: Contrib
>    Affects Versions: 0.8
>         Environment: Apache Ant version 1.8.0.
>            Reporter: Jahangir Mohammed
>            Assignee: Jonathan Ellis
>            Priority: Minor
>             Fix For: 0.8
>
>
> Build fails in contrib/stress with following message:
> /mnt/hgfs/workspace/cassandra-source/contrib/stress/build.xml:38: javac doesn't support the nested "path" element.
> Fix:
> Needs to move <path refid="cassandra.classes" /> inside path element.
> SVN copy:
>             <path refid="cassandra.classes" />
>             <classpath>
>                 <path>
>                     <fileset dir="${cassandra.lib}">
>                         <include name="**/*.jar" />
>                     </fileset>
>                 </path>
>             </classpath>
> To be changed to:
>             <classpath>
>                 <path>
>                     <path refid="cassandra.classes" />
>                     <fileset dir="${cassandra.lib}">
>                         <include name="**/*.jar" />
>                     </fileset>
>                 </path>
>             </classpath>

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] Resolved: (CASSANDRA-2291) Ant build script in contrib/stress fails.

Posted by "Jonathan Ellis (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CASSANDRA-2291?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jonathan Ellis resolved CASSANDRA-2291.
---------------------------------------

    Resolution: Fixed

fixed in r1079494.  thanks for the report!

> Ant build script in contrib/stress fails.
> -----------------------------------------
>
>                 Key: CASSANDRA-2291
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-2291
>             Project: Cassandra
>          Issue Type: Bug
>          Components: Contrib
>    Affects Versions: 0.8
>         Environment: Apache Ant version 1.8.0.
>            Reporter: Jahangir Mohammed
>            Assignee: Jonathan Ellis
>            Priority: Minor
>             Fix For: 0.8
>
>
> Build fails in contrib/stress with following message:
> /mnt/hgfs/workspace/cassandra-source/contrib/stress/build.xml:38: javac doesn't support the nested "path" element.
> Fix:
> Needs to move <path refid="cassandra.classes" /> inside path element.
> SVN copy:
>             <path refid="cassandra.classes" />
>             <classpath>
>                 <path>
>                     <fileset dir="${cassandra.lib}">
>                         <include name="**/*.jar" />
>                     </fileset>
>                 </path>
>             </classpath>
> To be changed to:
>             <classpath>
>                 <path>
>                     <path refid="cassandra.classes" />
>                     <fileset dir="${cassandra.lib}">
>                         <include name="**/*.jar" />
>                     </fileset>
>                 </path>
>             </classpath>

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

[jira] Updated: (CASSANDRA-2291) Ant build script in contrib/stress fails.

Posted by "Jonathan Ellis (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/CASSANDRA-2291?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jonathan Ellis updated CASSANDRA-2291:
--------------------------------------

    Remaining Estimate: 1h
     Original Estimate: 1h

> Ant build script in contrib/stress fails.
> -----------------------------------------
>
>                 Key: CASSANDRA-2291
>                 URL: https://issues.apache.org/jira/browse/CASSANDRA-2291
>             Project: Cassandra
>          Issue Type: Bug
>          Components: Contrib
>    Affects Versions: 0.8
>         Environment: Apache Ant version 1.8.0.
>            Reporter: Jahangir Mohammed
>            Assignee: Jonathan Ellis
>            Priority: Minor
>             Fix For: 0.8
>
>   Original Estimate: 1h
>  Remaining Estimate: 1h
>
> Build fails in contrib/stress with following message:
> /mnt/hgfs/workspace/cassandra-source/contrib/stress/build.xml:38: javac doesn't support the nested "path" element.
> Fix:
> Needs to move <path refid="cassandra.classes" /> inside path element.
> SVN copy:
>             <path refid="cassandra.classes" />
>             <classpath>
>                 <path>
>                     <fileset dir="${cassandra.lib}">
>                         <include name="**/*.jar" />
>                     </fileset>
>                 </path>
>             </classpath>
> To be changed to:
>             <classpath>
>                 <path>
>                     <path refid="cassandra.classes" />
>                     <fileset dir="${cassandra.lib}">
>                         <include name="**/*.jar" />
>                     </fileset>
>                 </path>
>             </classpath>

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira