Maven and Flex Builder

I am using Flex Builder to create data bindings for my Flex application using Blaze DS. When I compile my pp from Flex Builder, everything works fine. But when I try to compile it with Maven, I have a problem with missing libraries.

I found that maven skips the following libraries:

  • fds.swc, fds_rb.swc
  • fiber.swc, fiber_rb.swd
  • serializers.swc, serializers_rd.swc

As a temporary solution, I added these libraries to my maven repository and everything works fine, but I would like to know the names of the corresponding libs to add to my pom.xml

+3
source share
3 answers

-, "Flex Builder" (, v3) "Flash Builder" (v4)?

, Flexmojos Flex Maven?

, / Adobe Flex Maven, /Flexmojos. :

https://repository.sonatype.org/content/groups/flexgroup/

Nexus - , pom.xml. , .

+1

SWC Adobe sdk, , .

0

swc

<repository>
    <id>sinusgear</id>
    <name>SinusGear repo</name>
    <url>http://maven.sinusgear.com/maven_repo/</url>
</repository>
0
source

Source: https://habr.com/ru/post/1770050/


All Articles