Thanks, Brian, that's helpful.

Based on something I saw in the FAQ I uploaded with packing rb.swc and
classifier en_US.
I just got a successful build with the following three dependencies, which
were the ones I had before.  Interestingly, automation_agent is the only one
I changed to type rb.swc and classifier en_US. So who knows where the others
are coming from.
So I'm still pretty confused, but have something to work with!

Specifying the locale in the dependency doesn't seem right, somehow.

                <dependency>
                  <groupId>com.adobe.flex.framework</groupId>
                  <artifactId>automation</artifactId>
                  <version>${flex.sdk.version}</version>
                  <type>swc</type>
                  <scope>internal</scope>
                </dependency>
                <dependency>
                  <groupId>com.adobe.flex.framework</groupId>
                  <artifactId>automation_agent</artifactId>
                  <version>${flex.sdk.version}</version>
                  <type>rb.swc</type>
                  <classifier>en_US</classifier>
                  <scope>internal</scope>
                </dependency>
                <dependency>
                  <groupId>com.adobe.flex.framework</groupId>
                  <artifactId>automation_dmv</artifactId>
                  <version>${flex.sdk.version}</version>
                  <type>swc</type>
                  <scope>internal</scope>
                </dependency>


On Fri, Oct 15, 2010 at 2:47 PM, Bryan Turner <[email protected]> wrote:

> We have uploaded our own automation, automation_agent and automation_dmv
> SWCs. There are 5 SWCs in total:
>
>                 <dependency>
>                     <groupId>com.adobe.flex.framework</groupId>
>                     <artifactId>automation</artifactId>
>                     <type>swc</type>
>                 </dependency>
>                 <dependency>
>                     <groupId>com.adobe.flex.framework</groupId>
>                     <artifactId>automation</artifactId>
>                     <type>rb.swc</type>
>                     <classifier>en_US</classifier>
>                 </dependency>
>                 <dependency>
>                     <groupId>com.adobe.flex.framework</groupId>
>                     <artifactId>automation_agent</artifactId>
>                     <type>swc</type>
>                 </dependency>
>                 <dependency>
>                     <groupId>com.adobe.flex.framework</groupId>
>                     <artifactId>automation_agent</artifactId>
>                     <type>rb.swc</type>
>                     <classifier>en_US</classifier>
>                 </dependency>
>                 <dependency>
>                     <groupId>com.adobe.flex.framework</groupId>
>                     <artifactId>automation_dmv</artifactId>
>                     <type>swc</type>
>                 </dependency>
>
> For automation and automation_agent, there are additional SWCs with the
> "rb.swc" type an an en_US classifier. That said, for Flex 4.1, I don't think
> there are any "rb.swc" types for these. I think there should only be 1
> artifact for each. So if you upload all 3 (you may not need to), you'd use
> these values:
>
>                 <dependency>
>                     <groupId>com.adobe.flex.framework</groupId>
>                     <artifactId>automation</artifactId>
>                     <version>4.1.0.16076</version>
>                     <type>swc</type>
>                 </dependency>
>                 <dependency>
>                     <groupId>com.adobe.flex.framework</groupId>
>                     <artifactId>automation_agent</artifactId>
>                     <version>4.1.0.16076</version>
>                     <type>swc</type>
>                 </dependency>
>                 <dependency>
>                     <groupId>com.adobe.flex.framework</groupId>
>                     <artifactId>automation_dmv</artifactId>
>                     <version>4.1.0.16076</version>
>                     <type>swc</type>
>                 </dependency>
>
> There are additional automation libraries, but I do not know what they are
> for or what they do. We're only using these 3 on the project I'm working on.
>
> On Fri, Oct 15, 2010 at 2:39 PM, Marvin Froeder <[email protected]> wrote:
>
>> That was removed because people were abusing on it and getting into all
>> kind of problems.
>>
>>
>> On Fri, Oct 15, 2010 at 6:28 PM, Richard Rodseth <[email protected]>wrote:
>>
>>> Yeah, I guess it was 2.x.
>>>
>>> mvn info.flex-mojos:install-mojo:2.0.3:deploy-sdk
>>>
>>> Can anyone help me with the steps to upload the automation libs? I'm so
>>> close to having a successful 3.5 to 4.1 milestone.
>>>
>>>
>>> On Fri, Oct 15, 2010 at 2:14 PM, Marvin Froeder <[email protected]>wrote:
>>>
>>>> FM3 never had a deploy-sdk goal....
>>>>
>>>>
>>>> On Fri, Oct 15, 2010 at 5:49 PM, Richard Rodseth <[email protected]>wrote:
>>>>
>>>>> I don't follow you. I've used your deploy-sdk mojo through multiple sdk
>>>>> versions. Perhaps you are saying the FM3.x version doesn't work for SDK 
>>>>> 4.1,
>>>>> which would be understandable.
>>>>>
>>>>> I was hoping to get away from deploy-sdk now that I'm switching to SDK
>>>>> 4.1 and data visualization etc. is part of the open source stuff.
>>>>>
>>>>> My non-automated SWF is building successfully, obtaining the SDK from
>>>>> Sonatype.
>>>>>
>>>>> The automated SWF is not, because of the missing artifact.
>>>>>
>>>>> So, do I
>>>>> a) manually upload (using Artifactory GUI) the automation resource
>>>>> bundles. If so, what is the appropriate packaging, swc or rb.swc
>>>>> b) wait for you to add automation libs to the Sonatype repository
>>>>> c) upgrade to FM4.x, in which case I still have to deal with the
>>>>> missing automated libs somehow
>>>>>
>>>>> Thanks.
>>>>>
>>>>>
>>>>> On Fri, Oct 15, 2010 at 1:36 PM, Marvin Froeder <[email protected]>wrote:
>>>>>
>>>>>> Deploying flex SDK to maven repo is a trick, error oriented and very
>>>>>> manual process.
>>>>>>
>>>>>> Be the force with you :P
>>>>>>
>>>>>> VELO
>>>>>>
>>>>>>
>>>>>> On Fri, Oct 15, 2010 at 5:32 PM, Richard Rodseth 
>>>>>> <[email protected]>wrote:
>>>>>>
>>>>>>> OK. Can you give me any hints about uploading it separately?
>>>>>>>
>>>>>>> The dependency looks like this:
>>>>>>>
>>>>>>>                 <dependency>
>>>>>>>                   <groupId>com.adobe.flex.framework</groupId>
>>>>>>>                   <artifactId>automation</artifactId>
>>>>>>>                   <version>${flex.sdk.version}</version>
>>>>>>>                   <type>swc</type>
>>>>>>>                   <scope>internal</scope>
>>>>>>>                 </dependency>
>>>>>>>
>>>>>>> But I noticed the sonatype repository had a packaging of "rb.swc".
>>>>>>> Should I specify that when deploying, and also use that as the <type> 
>>>>>>> in the
>>>>>>> dependency?
>>>>>>> Or should I give up and deploy the entire SDK to Artifactory?
>>>>>>>
>>>>>>>
>>>>>>> On Fri, Oct 15, 2010 at 1:00 PM, Marvin Froeder 
>>>>>>> <[email protected]>wrote:
>>>>>>>
>>>>>>>> I don't have time to address it anytime soon.
>>>>>>>>
>>>>>>>>
>>>>>>>> On Fri, Oct 15, 2010 at 4:57 PM, Richard Rodseth <
>>>>>>>> [email protected]> wrote:
>>>>>>>>
>>>>>>>>> Ah, thanks. Is that something you can fix quickly, or should I
>>>>>>>>> deploy locally in the meantime.
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> On Fri, Oct 15, 2010 at 12:11 PM, Marvin Froeder <velo.br@
>>>>>>>>> gmail.com> wrote:
>>>>>>>>>
>>>>>>>>>> No idea what happened, it should be there....
>>>>>>>>>>
>>>>>>>>>> On Fri, Oct 15, 2010 at 3:48 PM, Richard Rodseth <
>>>>>>>>>> [email protected]> wrote:
>>>>>>>>>>
>>>>>>>>>>> As I mentioned, I'm converting several versions of an app from
>>>>>>>>>>> Flex 3 to 4 and simultaneously trying to wean myself off a 
>>>>>>>>>>> locally-deployed
>>>>>>>>>>> version of the SDK.
>>>>>>>>>>>
>>>>>>>>>>> I'm currently on flex-mojos 3.6.1 and SDK 4.1.0.16076.
>>>>>>>>>>>
>>>>>>>>>>> One of the targets depends on automation and automation_agent,
>>>>>>>>>>> and I get this error:
>>>>>>>>>>>
>>>>>>>>>>> [ERROR] Unable to resolve resource bundle "automation_agent" for
>>>>>>>>>>> locale "en_US".
>>>>>>>>>>>
>>>>>>>>>>> I notice the Sonatype repository has these resource bundles for
>>>>>>>>>>> older versions of SDK 4.x, but not 4.1.
>>>>>>>>>>>
>>>>>>>>>>> Why is that, and do I need to deploy these locally, or is there
>>>>>>>>>>> some new mechanism?
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>  --
>>>>>>>>>>> You received this message because you are subscribed to the
>>>>>>>>>>> Google
>>>>>>>>>>> Groups "Flex Mojos" group.
>>>>>>>>>>> To post to this group, send email to [email protected]
>>>>>>>>>>> To unsubscribe from this group, send email to
>>>>>>>>>>> [email protected]<flex-mojos%[email protected]>
>>>>>>>>>>> For more options, visit this group at
>>>>>>>>>>> http://groups.google.com/group/flex-mojos
>>>>>>>>>>>
>>>>>>>>>>> http://flexmojos.sonatype.org/
>>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>>  --
>>>>>>>>>> You received this message because you are subscribed to the Google
>>>>>>>>>> Groups "Flex Mojos" group.
>>>>>>>>>> To post to this group, send email to [email protected]
>>>>>>>>>> To unsubscribe from this group, send email to
>>>>>>>>>> [email protected]<flex-mojos%[email protected]>
>>>>>>>>>> For more options, visit this group at
>>>>>>>>>> http://groups.google.com/group/flex-mojos
>>>>>>>>>>
>>>>>>>>>> http://flexmojos.sonatype.org/
>>>>>>>>>>
>>>>>>>>>
>>>>>>>>>  --
>>>>>>>>> You received this message because you are subscribed to the Google
>>>>>>>>> Groups "Flex Mojos" group.
>>>>>>>>> To post to this group, send email to [email protected]
>>>>>>>>> To unsubscribe from this group, send email to
>>>>>>>>> [email protected]<flex-mojos%[email protected]>
>>>>>>>>> For more options, visit this group at
>>>>>>>>> http://groups.google.com/group/flex-mojos
>>>>>>>>>
>>>>>>>>> http://flexmojos.sonatype.org/
>>>>>>>>>
>>>>>>>>
>>>>>>>>  --
>>>>>>>> You received this message because you are subscribed to the Google
>>>>>>>> Groups "Flex Mojos" group.
>>>>>>>> To post to this group, send email to [email protected]
>>>>>>>> To unsubscribe from this group, send email to
>>>>>>>> [email protected]<flex-mojos%[email protected]>
>>>>>>>> For more options, visit this group at
>>>>>>>> http://groups.google.com/group/flex-mojos
>>>>>>>>
>>>>>>>> http://flexmojos.sonatype.org/
>>>>>>>>
>>>>>>>
>>>>>>>  --
>>>>>>> You received this message because you are subscribed to the Google
>>>>>>> Groups "Flex Mojos" group.
>>>>>>> To post to this group, send email to [email protected]
>>>>>>> To unsubscribe from this group, send email to
>>>>>>> [email protected]<flex-mojos%[email protected]>
>>>>>>> For more options, visit this group at
>>>>>>> http://groups.google.com/group/flex-mojos
>>>>>>>
>>>>>>> http://flexmojos.sonatype.org/
>>>>>>>
>>>>>>
>>>>>>  --
>>>>>> You received this message because you are subscribed to the Google
>>>>>> Groups "Flex Mojos" group.
>>>>>> To post to this group, send email to [email protected]
>>>>>> To unsubscribe from this group, send email to
>>>>>> [email protected]<flex-mojos%[email protected]>
>>>>>> For more options, visit this group at
>>>>>> http://groups.google.com/group/flex-mojos
>>>>>>
>>>>>> http://flexmojos.sonatype.org/
>>>>>>
>>>>>
>>>>>  --
>>>>> You received this message because you are subscribed to the Google
>>>>> Groups "Flex Mojos" group.
>>>>> To post to this group, send email to [email protected]
>>>>> To unsubscribe from this group, send email to
>>>>> [email protected]<flex-mojos%[email protected]>
>>>>> For more options, visit this group at
>>>>> http://groups.google.com/group/flex-mojos
>>>>>
>>>>> http://flexmojos.sonatype.org/
>>>>>
>>>>
>>>>  --
>>>> You received this message because you are subscribed to the Google
>>>> Groups "Flex Mojos" group.
>>>> To post to this group, send email to [email protected]
>>>> To unsubscribe from this group, send email to
>>>> [email protected]<flex-mojos%[email protected]>
>>>> For more options, visit this group at
>>>> http://groups.google.com/group/flex-mojos
>>>>
>>>> http://flexmojos.sonatype.org/
>>>>
>>>
>>>  --
>>> You received this message because you are subscribed to the Google
>>> Groups "Flex Mojos" group.
>>> To post to this group, send email to [email protected]
>>> To unsubscribe from this group, send email to
>>> [email protected]<flex-mojos%[email protected]>
>>> For more options, visit this group at
>>> http://groups.google.com/group/flex-mojos
>>>
>>> http://flexmojos.sonatype.org/
>>>
>>
>>  --
>> You received this message because you are subscribed to the Google
>> Groups "Flex Mojos" group.
>> To post to this group, send email to [email protected]
>> To unsubscribe from this group, send email to
>> [email protected]<flex-mojos%[email protected]>
>> For more options, visit this group at
>> http://groups.google.com/group/flex-mojos
>>
>> http://flexmojos.sonatype.org/
>>
>
>  --
> You received this message because you are subscribed to the Google
> Groups "Flex Mojos" group.
> To post to this group, send email to [email protected]
> To unsubscribe from this group, send email to
> [email protected]<flex-mojos%[email protected]>
> For more options, visit this group at
> http://groups.google.com/group/flex-mojos
>
> http://flexmojos.sonatype.org/
>

-- 
You received this message because you are subscribed to the Google
Groups "Flex Mojos" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/flex-mojos

http://flexmojos.sonatype.org/

Reply via email to