Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

there are some swc file used in my project,when I compile the project by maven,I have to install the swc to maven repository,like:

mvn install:install-file -Dfile=./libs/robotlegs-framework-1.5.1.swc -DgroupId=org.robotlegs -DartifactId=robotlegs-framework -Dversion=1.5.1 -Dpackaging=swc

and use like:

<dependency>
            <groupId>org.robotlegs</groupId>
            <artifactId>robotlegs-framework</artifactId>
            <version>1.5.1</version>
            <type>swc</type>
        </dependency>

if I want to add the library by RSL, I have to install the swf:

mvn install:install-file -Dfile=./libs/robotlegs-framework-1.5.1.swf -DgroupId=org.robotlegs -DartifactId=robotlegs-framework -Dversion=1.5.1 -Dpackaging=swf

use like :

<dependency>
            <groupId>org.robotlegs</groupId>
            <artifactId>robotlegs-framework</artifactId>
            <version>1.5.1</version>
            <type>swc</type>
            <scope>rsl</scope>
        </dependency>

I don't want to install the swc and swf by shell, is there some solution to unpack the swc file to swf and create rsl, then I just need to use like

<dependency>
                <groupId>org.robotlegs</groupId>
                <artifactId>robotlegs-framework</artifactId>
                <version>1.5.1</version>
                <type>swc</type>
                <scope>rsl</scope>
            </dependency>

thanks!!!

share|improve this question
dependency:copy-dependencies,unpack-dependencies,unpack..........doesn't found detail solution..... – Shawn Jul 10 '12 at 5:34

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.