justinmclean commented on issue #69: Using HTTPService fails to compile when 
adding Network dependancy to working program
URL: https://github.com/apache/royale-asjs/issues/69#issuecomment-343778153
 
 
   Turns out you need both swf and js classifiers are needed like so:
   ```
       <dependency>
         <groupId>org.apache.royale.framework</groupId>
         <artifactId>Network</artifactId>
         <version>0.9.0-SNAPSHOT</version>
         <type>swc</type>
         <classifier>swf</classifier>
       </dependency>
       <dependency>
         <groupId>org.apache.royale.framework</groupId>
         <artifactId>Network</artifactId>
         <version>0.9.0-SNAPSHOT</version>
         <type>swc</type>
         <classifier>js</classifier>
       </dependency>
   ```
   
   But you don't need to do this for Basic dependancy.
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to