Good day gentlemen,

I am building a flex library project that contains a manifest file for
the components that are present in the library.
I am using the configuratrion in my pom:

<plugin>
        <groupId>org.sonatype.flexmojos</groupId>
        <artifactId>flexmojos-maven-plugin</artifactId>
        <configuration>
                <namespaces>
                        <namespace>
                                <uri>http://www.mysite.nl/mynamespace</uri>
                                <manifest>manifest.xml</manifest>
                        </namespace>
                </namespaces>
                <includeNamespaces>
                        <namespace>http://www.mysite.nl/mynamespace</namespace>
                </includeNamespaces>
                <updateSecuritySandbox>true</updateSecuritySandbox>
                <configurationReport>true</configurationReport>
                <includeAsClasses>
                        <source>
                                <directory>src/main/actionscript</directory>
                        </source>
                </includeAsClasses>
        </configuration>
        <executions>
                <execution>
                        <goals>
                                <goal>sources</goal>
                        </goals>
                </execution>
        </executions>
</plugin>

Now after I've built my swc I discover that only the classes that are
defined in the manifest file have been compiled into the
resulting .swc. All the other (non-visual) classes are missing.
Am I doing something terribly wrong? If I leave out the namespace
related config everything gets compiled, but naturally the manifest is
missing, therefore the resulting .swc is useless to me.

Any help is greatly appreciated, thank you very much in advance,

cheers,

Roland

-- 
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