Linking "ant" project with GUI

Hello,
I have an "ant" project (is a speech recognition system) that I want to link to a GUI. I did not make the "ant" project but I know how to use it; I have no experience working with "ant" projects or files.
Does anyone have any ideas? or, Does anyone have a link where I can learn more about "ant"? I'm using netbeans for my application. I googled ant but have not found anything that can help; I'll keep googling but suggestions are appreciated.

I googled ant but have not found anything that can help; I'll keep googling but suggestions are appreciated.http://ant.apache.org/
~

Similar Messages

  • TF80070 when using external links in Project with TFS

    I have Project Pro 2010 installed and am using TFS 2013. I can import, refresh, and publish TFS items just fine from my project file, until I add an external link to another project file. Then attempting a refresh of TFS data throws the TF80070 error.

    TF80070 error responds to "Refresh Only"
    'TF80070: Team Foundation encountered an error while performing the operation. It is recommended that you save your work and restart the application.'
    Yes, you are correct, having external links to items outside of the existing
    Project, TFS is not able to complete sync. Workaround seems to be to remove external link.

  • De-link PPM Item with SAP Project

    Hello,
    Can somebdoy throw a light on what to do in case I want to de-link a PPM-item with SAP project.This situation may rise if I want to change the project actuals going to bucket A to bucket B.As I can not change the relationship of an item with the bucket, I am looking for alternate solution where I can de-link SAP Project with SAP PPM item.
    thank you!
    Regards,
    Mahendra

    Hi Mahendra
    If you are meaning to de-link a PS Project from a PPM Item, you can from the Item navigate to the 'Relationships' tab and then on the 'object links'sub-tab select and delete the assignment:
    You can also remove a cProject relationship by clicking the 'Related Objects' sub-tab
    Your comment that you cannot move an Item to a new Bucket - is this because your business process does not allow you to do so? Because this is definitely possible in the system.
    Let me know if you have any further questions as I am not sure I have addressed your question
    Regards
    C

  • Using the Netbeans GUI within a Project with existing Ant Script

    I cannot seem to figure out how to use the Netbeans GUI in my Project with existing Ant Script. Is this possible? I have no problem creating GUI interfaces in a java Application, but attempting to make a new JFrame Form gives the error: package org.jdesktop.layout does not exist, and I have not been able to find a way around this. Any suggestions? Thanks in advance.
    Chris Coulon

    OK, I think I am on the right track, but I don't understand why I am still getting this error:
    clean:
    compile:
    Copying 1 file to /Users/chris/**JavaProjects/Netbeans_ImageJ
    Created dir: /Users/chris/**JavaProjects/Netbeans_ImageJ/source/build
    Compiling 292 source files to /Users/chris/**JavaProjects/Netbeans_ImageJ/source/build
    /Users/chris/**JavaProjects/Netbeans_ImageJ/source/plugins/Kline_Frame.java:31: package org.jdesktop.layout does not exist
    org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
    /Users/chris/**JavaProjects/Netbeans_ImageJ/source/plugins/Kline_Frame.java:31: package org.jdesktop.layout does not exist
    org.jdesktop.layout.GroupLayout layout = new org.jdesktop.layout.GroupLayout(getContentPane());
    /Users/chris/**JavaProjects/Netbeans_ImageJ/source/plugins/Kline_Frame.java:34: package org.jdesktop.layout does not exist
    layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
    /Users/chris/**JavaProjects/Netbeans_ImageJ/source/plugins/Kline_Frame.java:38: package org.jdesktop.layout does not exist
    layout.createParallelGroup(org.jdesktop.layout.GroupLayout.LEADING)
    Note: Some input files use or override a deprecated API.
    Note: Recompile with -Xlint:deprecation for details.
    4 errors
    /Users/chris/**JavaProjects/Netbeans_ImageJ/source/build.xml:11: Compile failed; see the compiler error output for details.
    BUILD FAILED (total time: 6 seconds)
    I no longer have the error in my java code in the Projects list, but I still cannot build the project. This is my current build.xml file:
    <!-- Ant makefile for ImageJ -->
    <project name="ImageJ" default="run">
      <target name="compile" description="Compile everything.">
          <!-- Copy the swing layout library into dist.lib -->
        <copy file="dist/lib/swing-layout-1.0.3.jar" todir=".." />
        <!-- First, ensure the build directory exists. -->
        <mkdir dir="build" />
        <!-- Build everything; add debug="on" to debug -->
        <javac srcdir="." destdir="build" optimize="on" source="1.4" target="1.4" debug="on">
          <!-- The plugins directory only needs to be
                 present at runtime, not at build time. -->
          <!-- exclude name="plugins/**"/-->
        </javac>
      </target>
      <target name="build" depends="compile" description="Build ij.jar.">
        <!-- Copy needed files into the build directory. -->
        <copy file="IJ_Props.txt" todir="build" />
        <copy file="images/microscope.gif" tofile="build/microscope.gif" />
        <copy file="images/about.jpg" tofile="build/about.jpg" />
         <copy file="plugins/MacAdapter.class" tofile="build/MacAdapter.class" />
        <copy todir="build/macros"><fileset dir="macros"/></copy>
        <!-- Build ij.jar. -->
        <jar jarfile="ij.jar" basedir="build"
             manifest="MANIFEST.MF" />
      </target>
      <target name="clean" description="Delete the build files.">
        <delete dir="build" />
        <delete file="ij.jar" />
      </target>
      <target name="run" depends="build" description="Build and run ImageJ.">
        <copy file="ij.jar" toDir=".." />
        <java maxmemory="640m" jar="ij.jar" fork="yes" />
      </target>
      <target name="run2" depends="build" description="Build and run ImageJ.">
        <!-- Run in ImageJ directory -->
        <copy file="ij.jar" toDir=".." />
        <java maxmemory="640m" dir=".." jar="ij.jar" fork="yes" />
      </target>
      <target name="zip" depends="clean" description="Build zrc.zip.">
        <zip zipfile="../src.zip"
           basedir=".."
           includes="source/**"
        />
      </target>
      <target name="javadocs" description="Build the JavaDocs.">
        <delete dir="../api" />
        <mkdir dir="../api" />
        <javadoc
               sourcepath="."
               packagenames="ij.*"
               destdir="../api"
               author="true"
               version="true"
               use="true"
               windowtitle="ImageJ API">
        </javadoc>
      </target>
       </project>notice I added this line: <copy file="dist/lib/swing-layout-1.0.3.jar" todir=".." />
    because the dir ".." is where the other jar files are placed, i.e.:
    [GAIAG:~/**JavaProjects/Netbeans_ImageJ/source] chris% ls ..
    PolarDisplay          ij.jar               swing-layout-1.0.3.jar
    TestFrames          myApp
    api               source
    So why is the build not able to see the package org.jdesktop.layout in the jar file?
    Chris

  • Updating projects with activities linked to other projects.

    Im kind of new at this. I am working on a project with several contracts. i am thinking of setting up each contract as a separate project in an EPS and linking the milestones in all the projects to create a master schedule. On a weekly basis i recieve schedule updates from the contractors. What im wondering is if there is a way i can copy the new schedule in with all the updates without having to re-link all the activities everytime I get an updated schedule? also is this the best way to create a master schedule?

    *794503,*
    It sounds like your sub projects (contracts) are in sort of a design on the go mode?
    To make things a little more manageable I would suggest that you establish a set of standard start and finish milestones for each project in order for you to be able to ensure that your master project major milestones (hopefully integrated with your cost or earned value milestones) remain logically tied to those designated sub project milestones.
    With that said, I would just paste the new edition of each contract's schedule into their respective projects. I would make an export (.XER) backup before pasting any new data. It's better to be safe than sorry!
    Be mindful of the fact that you probably need to make sure that the logic ties gets pasted by not clicking the box (Relationships / Only between copied activities) on the "Copy Act. Options" dialog box. Otherwise, you'll have to manually tie all of the logic again. A royal pain in the "A" double "S"!!
    **Use a copy of the latest project/contract schedule update and as a baseline. Format your bars to also display that baseline schedule on row #2. Also insert a schedule variance column to display date changes between your original vs. newly updated schedule. For analysis of changes.....maybe build a new layout and filter to only display those act's that have major date changes (sched. variances)?
    **Another tool to use after the fact would be *"Claim Digger"* in order to analyze the details of what changes were made with each new schedule update.
    There is no way to eliminate all of the manual work. :(    Some manual verification will always have to be performed.
    It would be very smart to get a good grip on how you'll handle these changes early in the project before the situation gets out of hand.
    For every "schedule change" made to your schedule the chance of a scheduling error increases. So there you go.
    Good luck and let me know how it turns out.

  • Linking solution manager projects with CHARM implementation project

    Hi Guys,
    Currently i am working in CHARM implementation project, i have created one CHARM implementation project with urgent correction and i am able to create the Transport request and release the transport request succesfully and i am able to move it to quality system successfully. But my customer is asking to link the solution manager project to CHARM implementation project.
    Earlier before implementing CHARM they have implemented project managent in solution manager, during that project they have created so many projects which are currently running, now they want those projects to be linked CHARM implementation project.
    When ever they create a transport request through CHARM they want the TP to be saved under a respective project which they are using currently. but according to my knowledge the TP can be saved under CHARM implementation project only.
    Now i want to know whether the projects created in SOLAR_PROJECT_ADMIN can be linked to CHARM implementation project. Pls give ur valuable inputs as it is very urgent.
    Thanks&Regards
    Raju

    Hello,
    We have implemented this with two systems landscape where in we have in place a Solution Manager Dev system and Solution manager Production system both are SOLMAN 4.0 with SP12. So the path for us to move the changes is from Development Systems to Production system.
    We have ChaRM between the Dev and production. We reapplied the satellite system concept. For us the Solution manager Prod is a satellite systems all the changes that we move from Development system to Production systems is tracked with necessary documentation in the ChaRM process.
    Yes, I agree with you that this is not any big magic. Working with two SOLMAN implementation, I strongly feel that SAP needs to have well rounded ChaRm processes. We have robust Change Management Process, but when we moved to ChaRM we were limited functionality of the ChaRM processes.
    I had approached and did some research on how other companies are implementing the same process. Most of them have almost the same process for tracking SOLMAN changes. I am still look out for improved process to manage SOLMA changes.
    Hope this helps!!! Thanks
    Vish

  • Debugging question (project with Ant)

    Hi,
    Could anyone tell me how to debug a project with Ant?
    There is no main class to execute.
    Only Ant script runs it as below.
    Thanks in advance,
    <?xml version="1.0" encoding="UTF-8"?>
    <project basedir="." default="all" name="run1">
    <target name="all">
    <java classname="zeus.agents.ANServer" failonerror="true" fork="true">
    <arg line="Nameserver2 -t 0.1 -f dns.db"/>
    </java>
    </target>
    </project>

    how simple was that... Thanks Mark.
    Now I have another problem - how can I specify deployment targets when creating a new dataspace? I'm using a DspCommonCommands.py script, which targets deployments to any server and cluster in the specified domain:
    targets = wlst.get('Targets')
    wlst.invoke('createDataSpace',[dataspaceName,targets],['java.lang.String','java.util.Set'])
    which results in 2 problems:
    1. targeting projects to inappropriate servers (like AdminServer)
    2. targeting project to cluster and all servers belonging to that cluster (which results in errors when trying to start corresponding request_handlers application)
    I thought I can simply list the names of clusters I would like the project to be targeted to, but it results in:
    javax.management.RuntimeOperationsException: RuntimeException occured trying to invoke operation createDataSpace
    Caused by: java.lang.IllegalArgumentException: argument type mismatch
    I can't find the class with createDataSpace() method to check what it's all about and how should I format the target names.
    Regards,
    Tomek

  • PB with beans binding in a netbeans 6 java project with ant script existing

    Hi all,
    I am using netbeans 6.01.
    I want to use beans binding in a simple swing form created with Matisse designer. If i do beans binding in a Netbeans java project with existing ant script i have the following error :
    java.lang.UnsupportedOperationException: No PCPE/PCPMI found for classpath/compile in MasterFileObject@25 .... etc
    Beans binding works very well in normal java project ( Java Desktop App for instance ).
    How can i make it work in an existing java ant script project ?

    You need to add the Beans Binding (beansbinding-1.2.1) that come with NetBeans 6 in your projects class path.

  • Issues with transferring CS5 project with Adobe Dynamic Links to CS5.5

    Hello all!
    Has anybody encountered the issue with transferring CS5 projects with Adobe Dynamic Links to CS5.5?
    When I try to do it the movie hangs on at some clips which are AE compositions...
    The CS5 project works perfectly.
    All AE CS5 compositions are transerred to AE CS5.5 compositions.
    All 'old' Adobe Dynamic Links in Pr CS5.5 project are changed to 'new' ones (I mean, links to AE CS5 composition changed to links to AE CS5.5 compositions)...
    Any help will be appreciated

    Tried to play around. Realised that a solution should be somewhere around re-rendering, 'cos linked AE compositions were always displayed in yellow as if they were original footages - even I changed a composition within AE, just transitions, if they were, changed to red in Pr Pro sequence...
    However, I was unable to re-render 'Entire Work Area' even after deleting all Render Files, just 'Effects in Work Area'...
    Then I simply created a new sequence and copied and pasted all the clips from original sequence. Now I was allowed to 'Render Entire Work Area'.
    Voilà!

  • Help with GUI project.

    I need help with JcomboBox when I select the Exit in the File box it will open
    //inner class
    class exitListener implements ActionListener {
    I have the part of the parts of statement but I don't know how to assign the Keystoke. here is that part of the code
    filemenu.setMnemonic(KeyEvent.VK_X);Here is my code...
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    class MyFrame extends JFrame {
         String[] file = { "New", "Open", "Exit" };//items for file
        String[] edit = { "Cut", "Copy", "Paste" };//items for edit
        JComboBox filemenu = new JComboBox();
        JComboBox editmenu = new JComboBox();
         public MyFrame(String title) {
              super(title);
              this.setSize(250, 250); //sets the size for the frame
              this.setLocation(200, 200);//location where frame is at
              this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              // setup contents
              makeComponents();
              initComponents();
              buildGUI();
              // display
              this.setVisible(true);
         private void makeComponents() {
              JPanel pane = new JPanel();
    //          file menu section
              filemenu = new JComboBox();
            JLabel fileLabel = new JLabel();
            pane.add(fileLabel);
            for (int i = 0; i < file.length; i++)
                 filemenu.addItem(file);
    pane.add(filemenu);
    add(pane);
    setVisible(true);
    //edit menu section
    editmenu = new JComboBox();
    JLabel editLabel = new JLabel();
    pane.add(editLabel);
    for (int i = 0; i < edit.length; i++)
         editmenu.addItem(edit[i]);
    pane.add(editmenu);
    add(pane);
    setVisible(true);
         private void initComponents() {
              filemenu.addActionListener(new exitListener());
         //inner class
    class exitListener implements ActionListener {
    public void actionPerformed(ActionEvent arg0) {
    int x = JOptionPane.showOptionDialog(MyFrame.this, "Exit Program?",
    "Exit Request", JOptionPane.YES_NO_OPTION,
    JOptionPane.QUESTION_MESSAGE, null, null,
    JOptionPane.NO_OPTION);
    if (x == JOptionPane.YES_OPTION) {
    MyFrame.this.dispose();
         private void buildGUI() {
              Container cont = this.getContentPane();// set gui components into the frame
              this.setLayout(new FlowLayout(FlowLayout.LEFT));// Comp are added to the frame
              cont.add(filemenu);
              cont.add(editmenu);
         // / inner classes
    public class ButtonFrame {
         public static void main(String[] args) {
              MyFrame f1 = new MyFrame("This is my Project for GUI");
    Thanks
    SandyR.

    One way is to
    1) pass a reference of the Window object to the USDListener class, and set a local Window variable say call it window, to this reference.
    2) Give the Window class a public method that returns a String and allows you to get the text from USDField. Same to allow you to set text on the euroField.
    3) Give the Listener class a Converter object.

  • How could i parse string and link its model with my files in eclipse project?

    How could i parse string and link its model with my files in eclipse project?, as i read that we dont have to use standalone mode while working with eclipse projects.
    Example of what i want to do:
    I have file1.dsl in my project which contains some statements but the declaration of these statements are not in another file, i need to put them only in my code

    Hi Stefan,
    I have eclipse project contains 2 files, file1.dsl and file2.dsl, you can see the contents of the files below.
    file1.dsl contains some statements as shown below and file2.dsl contains the declarations of the variables. (like in C++ or Java we have declarations and usage)
    At this step file1.dsl and file2.dsl will be parsed successfully without any errors.
    Lets imagine that we will delete this project and will create another one and the new project will contain only file1.dsl (which contains the usage)
    At this step this file (file1.dsl) will contains some errors after parsing it, because we are using variables without declarations.
    So what i need is to parse the content of file2.dsl directly without adding this file to the project.
    I need to add the content of file2.dsl directly as a string in the code and parse it. just like that ( "int a;int b;" )
    And link file1.dsl with the model generated after parsing my string
    file1.dsl
    a++;
    b++;
    file2.dsl
    int a;
    int b;
    Thanks

  • Difference between Aggregator Project / Multi SCo packager / multi captivate projects with links...

    Now I have to admit I am a little lost between the possibilities of captivate 8...
    What differences exactly between these developements:
    Aggregator project?
    Multi sco packager?
    or create a single file with mutliple Captivate projects all linked through the Action : "open the project or URL"....?
    If I need only a single SCO on one unique completed course, should I use the project aggregator ?
    but would the projects sizes be a problem? and explain why to use the Action : "link to project"..rather than the aggregator?
    basically I wish one single file with all the courses accessible from one screen / (project?)
    reports only on the course followed, resume on the course, back to the course Menu language selection .....
    thanks for any help....the more i read the more i am lost... ;(

    Thank you for this details.
    It seems then that none of this two, aggregator or packager, can be 'twisted' to be used in the Menu selection I need.
    Aggregator project?
    A way to link several Captivate output files through a common menu created by the aggregator.
    >Does using the aggregator mean there are still several / each output files to be uploaded in the LMS separately?
    Are you publishing to swf only?
    >I publish for the LMS plateform, swf, html, but also for IPads! Would it make a difference?
    "You could also have your manifest point to a language selection page which would then launch the applicable Captivate files."
    >Is there a good video tutorial that would show how to link and publish captivate projects together? I have created a Cp menu page with buttons that would link to each cp (language) files but I am not sure I do it properly...
    I need to be sure what to enter in the Actions/Link to file or link to URL field...and to follow the right step to publish and copy paste the files in the same (callees...) folder...
    Many thanks for your help!

  • Is it possible to link data across different/multiple PWA sites leveraging Master Project with the Subprojects feature?

    A couple different questions /similar scenarios
    1) Is it possible with Project Server 2010 to have several sites (http://server/pwa1 and
    http://server/pwa2 for example) communicate and build a Master Project at a third (or X) site (http://server/pwa3)
    2) Is it possible with Project Server 2010 to have several sites (http://server/pwa1 and
    http://server/pwa2 for example) communicate and build a Master Project at one of the original sites (http://server/pwa1 (for example))
    OR is there a better way to do this/more preferred way to do this. 
    We found this (http://social.technet.microsoft.com/Forums/projectserver/en-US/2379c3f2-6c80-46d7-8eac-3bc2ccb2d908/master-projectsubproject-with-sites-in-pwa-2010?forum=projectserver2010general)
    but its not what we're looking for
    3a) Issue/Example -
    We want to set up a site (http://server/pwa100) for just the president of the company - all the schedules of the subsites (/pwa99 + /pwa98) create a feed into an integrated master schedule/master project with subprojects(located
    in /pwa100). 
    3b-1) We also want to set up sub sites (http://server/pwa99 and
    http://server/pwa98) for each division VPs (and specific other people). These two sites would only allow specific user's project files to be viewed by each other...
    Can their project files have linkages between the two project sites (/pwa99 and /pwa98)? Meaning if user1 logs in to /pwa99 can he see a project file (given that they have permission) from /pwa98 in the same instance?
    3b-2) Can they see the project file in ProjPro and/or PWA ???
    3c) is it possible to have:
    + /pwa100 (pres)
    ++/pwa99 & /pwa98 (two vps)
    +++/pwa97 & /pwa96 & /pwa95 & /pwa-etc (minions)
    each rolling up to the next level (level 3 rolls up to level 2 which can roll up to level 1)

    kbwrecker,
    I agree with Dale. Having multiple sites will make this difficult to set up. 
    Not knowing how your Custom Groups/Categories have been set up, have you looked into using the "Project Permissions" feature to share projects. These permissions are 'additive' to the category permissions, so you could start out with people looking at the
    projects they are authorized to via categories, and then let them share/add people as needed basis. This will also satisfy the requirement of not-loading the projects with resources..
    And finally, the department and categories need not align, except that when projects from one dept are shared t another dept resource, the visibility of custom fieds will be affected.
    Hope I did not go off on a tangent there :)
    Prasanna Adavi,PMP,MCTS,MCITP,MCT TWitter: @prasannaadavi Blog: http://www.prasannaadavi.com
    Meant to get back to this earlier - your answer is close (because its what we currently do..sort-of)
    From my understanding of this issue the users are separated by department and can only see specific projects; however, when they try to share departments between users (so they can see their projects (dept a sees dept b projects)) this works - but there
    is a bigger issue/main issue.  
    main issue: when dept B adds a new project dept. A cannot see the new project in dept B.
    This can be eliviated by removing the user/s and re-adding them to the permission structure of the deptment but overall doing this several times based on user/s and projects being added it gets to be cumbersome and just plain annoying.
    Any help/additional thoughts would be great

  • How do I use iCloud to collaborate on a GarageBand project with a remotely located musician?

    How do I use iCloud to collaborate on a GarageBand project with a remotely located musician?  He is in Valencia, Spain, I am in Green Bay, Wisconsin.  We'd like to be able to work on the same GarageBand document together, laying down tracks, etc.
    Is there a tutorial I should look at?

    Are you using GarageBand on a Mac or on an iPad?
    With iCloud you can store your GarageBand projects in iCloud, so you can work on the same project on all your iPads, iPods, iPhones, and transfer it from your iDevices to your Mac.  But you cannot use iCloud to share a project between people with different AppleIDs.  
    To send GarageBand projects back and forth, compress the the ":band" files and mail them, if they are small enough or put them in a Dropbox or other cloud storage and mail the link.

  • Link between Project and Sales Order

    Apart from sales order can we have a link between project and customer master ??
    I know that WBS element assignment can be made in sales order but i want to have link between
    customer master and project. I don't want any user field or text field in sales order.
    Any idea ?
    Regards
    Ashish

    Yes Mr Ashish!
    As far as iam concern there is no link between Project & Customer Master, you have to link it with SALES order, I had check in XD03,XD01, the complete customer master, i didnt find any field in customer master which links with Project.
    I'll let you know if i find any links.
    Regards,
    ANSAR

Maybe you are looking for