Se encontraron múltiples recursos defaults.yaml

cuando intenté enviar la topología encontré esto

Exception in thread "main" java.lang.RuntimeException: Found multiple defaults.yaml resources. You're probably bundling the Storm jars with your topology jar.
at backtype.storm.utils.Utils.findAndReadConfigFile(Utils.java:115)
at backtype.storm.utils.Utils.readDefaultConfig(Utils.java:135)
at backtype.storm.utils.Utils.readStormConfig(Utils.java:155)
at backtype.storm.StormSubmitter.submitTopology(StormSubmitter.java:61)
at backtype.storm.StormSubmitter.submitTopology(StormSubmitter.java:40)
at trident.myproject.main(myproject.java:288)

Pero este error apareció después de actualizar en pom.xml por

<scope>compile</scope> instead of <scope>provided</scope>

eso porque fui un error

An exception occured while executing the Java class. storm/trident/state/StateFactory

aquí archivo pom

<plugins>
        <plugin>
            <artifactId>maven-assembly-plugin</artifactId>
            <configuration>
                <descriptorRefs>
                    <descriptorRef>jar-with-dependencies</descriptorRef>
                </descriptorRefs>
                <archive>
                    <manifest>
                        <mainClass>trident.myproject</mainClass>
                        <!-- <mainClass>crawler.Crawler</mainClass> -->
                    </manifest>
                </archive>
            </configuration>

parte 2 del archivo pom

<executions>
                <execution>
                    <id>make-assembly</id>
                    <phase>package</phase>
                    <goals>
                        <goal>single</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>

parte 3 del archivo pom

<plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>1.6</source>
                <target>1.6</target>
            </configuration>
        </plugin>
    </plugins>

Respuestas a la pregunta(1)

Su respuesta a la pregunta