I am trying to compile my code with automation libraries so that it
can be tested with silk.  Currently, I am able to do this without 
trouble in Flex Builder using this command line argument: 
-include-libraries "...\automation.swc" "...\automation_agent.swc" 
"...\FlexTechDomain.swc"  (... represents the full path on my local
machine)   However, we have continuous integration using a maven build
so I am  trying to get it to build that way.  When I do so, however, I
am  getting these error messages:  [ERROR] Unable to resolve resource
bundle "automation" for  locale "en_US". [ERROR] Unable to resolve
resource bundle "automation_agent" for  locale "en_US".  Any clue why
this is?  Here are the dependencies in my pom:  <dependency>   
<groupId>com.adobe.Flex.sdk</groupId>   
<artifactId>automation_agent</artifactId>    <type>swc</type>   
<version>3.0.0</version>    <scope>internal</scope>  </dependency>
<dependency>   <groupId>com.adobe.Flex.sdk</groupId>   
<artifactId>automation</artifactId>    <type>swc</type>   
<version>3.0.0</version>   <scope>internal</scope>  </dependency>
<dependency>   <groupId>com.adobe.Flex.sdk</groupId>   
<artifactId>FlexTechDomain</artifactId>    <type>swc</type>   
<version>3.0.0</version>    <scope>internal</scope>  </dependency>Thank
you,-Brad Keck

Reply via email to