maven-shade-plugin打包可執行jar包及解決schema報錯問題

  1. org.xml.sax.SAXParseException: schema_reference.4: Failed to read schema document 'http://www.springframework.org/schema/beans/spring-beans-3.0.xsd', because 1) could not find the document; 2) the document could not be read; 3) the root element of the document is not <xsd:schema>.  spring

<build>apache

    <plugins>maven

    <plugin>ui

            <groupId>org.apache.maven.plugins</groupId>spa

            <artifactId>maven-shade-plugin</artifactId>orm

            <version>1.7.1</version>xml

            <executions>element

                <execution>it

                    <phase>package</phase>io

                    <goals>

                        <goal>shade</goal>

                    </goals>

                </execution>

            </executions>

            <configuration>

                <shadedArtifactAttached>true</shadedArtifactAttached>

                <shadedClassifierName>shaded</shadedClassifierName>

                <transformers>

                <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">  

                        <resource>META-INF/spring.handlers</resource>  

                    </transformer> 

                    <transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">  

                        <resource>META-INF/spring.schemas</resource>  

                    </transformer>

                    <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">

                        <mainClass>com.xxx.main.Main</mainClass>

                    </transformer>

                </transformers>

            </configuration>

        </plugin>

    </plugins>  

  </build>

相關文章
相關標籤/搜索