主頁 > 前端設計 > AnypointStudio中的Mule應用程式部署問題

AnypointStudio中的Mule應用程式部署問題

2022-10-29 10:26:20 前端設計

我正在嘗試在與 SAP 連接器一起使用的 Anypoint Studio 中運行匯入的應用程式,但它在啟動后立即失敗,它似乎與 pom.xml 檔案有關,因為我被告知該專案已經從 Mule 3 遷移到 Mule 4。我得到以下輸出:

` 

[INFO] Scanning for projects... Downloading from jfrog: http://repo.jfrog.org/artifactory/plugins-releases-local/org/jfrog/maven/annomojo/maven-plugin-tools-anno/1.4.0/maven-plugin-tools-anno-1.4.0.pom 
[ERROR] [ERROR] Some problems were encountered while processing the POMs: 
[WARNING] 'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: net.inspira.api:api-transformers:jar -> duplicate declaration of version 2.0.0 @ line 624, column 14 
[ERROR] Unresolveable build extension: Plugin org.mule.tools.maven:mule-app-maven-plugin:1.1 or one of its dependencies could not be resolved: Failed to collect dependencies at org.mule.tools.maven:mule-app-maven-plugin:jar:1.1 -> org.jfrog.maven.annomojo:maven-plugin-tools-anno:jar:1.4.0 @  
[ERROR] Unknown packaging: mule @ line 8, column 13  @  
[ERROR] The build could not read 1 project -> [Help 1][ERROR]    
[ERROR]   The project com.mycompany:sap-api-supply:3.2.0 (/home/byranernesto/AnypointStudio/studio-workspace/Mule sap-api-supply-new Application/pom.xml) has 2 errors [ERROR]     Unresolveable build extension: Plugin org.mule.tools.maven:mule-app-maven-plugin:1.1 or one of its dependencies could not be resolved: Failed to collect dependencies at org.mule.tools.maven:mule-app-maven-plugin:jar:1.1 -> org.jfrog.maven.annomojo:maven-plugin-tools-anno:jar:1.4.0: Failed to read artifact descriptor for org.jfrog.maven.annomojo:maven-plugin-tools-anno:jar:1.4.0: Could not transfer artifact org.jfrog.maven.annomojo:maven-plugin-tools-anno:pom:1.4.0 from/to jfrog (http://repo.jfrog.org/artifactory/plugins-releases-local): transfer failed for http://repo.jfrog.org/artifactory/plugins-releases-local/org/jfrog/maven/annomojo/maven-plugin-tools-anno/1.4.0/maven-plugin-tools-anno-1.4.0.pom, status: 503 Service Unavailable: Back-end server is at capacity: Server returned HTTP response code: 503 for URL: http://repo.jfrog.org/artifactory/plugins-releases-local/org/jfrog/maven/annomojo/maven-plugin-tools-anno/1.4.0/maven-plugin-tools-anno-1.4.0.pom -> [Help 2] 
[ERROR]     Unknown packaging: mule @ line 8, column 13 [ERROR]  
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. 
[ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR]  
[ERROR] For more information about the errors and possible solutions, please read the following articles: 
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException 
[ERROR] [Help 2] http://cwiki.apache.org/confluence/display/MAVEN/PluginManagerException

`

我的 pom.xml 檔案:

`

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">

    <modelVersion>4.0.0</modelVersion>
    <groupId>com.mycompany</groupId>
    <artifactId>sap-api-supply</artifactId>
    <version>3.2.0</version>
    <packaging>mule</packaging>
    <name>Mule sap-api-supply Application</name>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <mule.version>3.9.5</mule.version>
        <mule.tools.version>1.1</mule.tools.version>
        <mule-transport-sap.version>3.0.0</mule-transport-sap.version>
        <sapjco.version>3.0.14</sapjco.version>
        <sapidoc.version>3.0.12</sapidoc.version>
        <lib.directory>${project.build.directory}/lib</lib.directory>
        <native.lib.directory>${lib.directory}/${envClassifier}</native.lib.directory>
    </properties>



    <profiles>
        <profile>
            <id>dos-i386</id>
            <activation>
                <os>
                    <family>windows</family>
                    <arch>i386</arch>
                </os>
            </activation>
            <properties>
                <envClassifier>ntintel</envClassifier>
                <envType>dll</envType>
                <native.lib.filename>sapjco3</native.lib.filename>
            </properties>
        </profile>
        <profile>
            <id>windows-i386</id>
            <activation>
                <os>
                    <family>windows</family>
                    <arch>i386</arch>
                </os>
            </activation>
            <properties>
                <envClassifier>ntintel</envClassifier>
                <envType>dll</envType>
                <native.lib.filename>sapjco3</native.lib.filename>
            </properties>
        </profile>
        <profile>
            <id>dos-x86</id>
            <activation>
                <os>
                    <family>dos</family>
                    <arch>x86</arch>
                </os>
            </activation>
            <properties>
                <envClassifier>ntintel</envClassifier>
                <envType>dll</envType>
                <native.lib.filename>sapjco3</native.lib.filename>
            </properties>
        </profile>
        <profile>
            <id>windows-x86</id>
            <activation>
                <os>
                    <family>windows</family>
                    <arch>x86</arch>
                </os>
            </activation>
            <properties>
                <envClassifier>ntintel</envClassifier>
                <envType>dll</envType>
                <native.lib.filename>sapjco3</native.lib.filename>
            </properties>
        </profile>
        <profile>
            <id>dos-x86_64</id>
            <activation>
                <os>
                    <family>dos</family>
                    <arch>x86_64</arch>
                </os>
            </activation>
            <properties>
                <envClassifier>ntamd64</envClassifier>
                <envType>dll</envType>
                <native.lib.filename>sapjco3</native.lib.filename>
            </properties>
        </profile>
        <profile>
            <id>windows-x86_64</id>
            <activation>
                <os>
                    <family>windows</family>
                    <arch>x86_64</arch>
                </os>
            </activation>
            <properties>
                <envClassifier>ntamd64</envClassifier>
                <envType>dll</envType>
                <native.lib.filename>sapjco3</native.lib.filename>
            </properties>
        </profile>
        <profile>
            <id>dos-amd64</id>
            <activation>
                <os>
                    <family>dos</family>
                    <arch>amd64</arch>
                </os>
            </activation>
            <properties>
                <envClassifier>ntamd64</envClassifier>
                <envType>dll</envType>
                <native.lib.filename>sapjco3</native.lib.filename>
            </properties>
        </profile>
        <profile>
            <id>windows-amd64</id>
            <activation>
                <os>
                    <family>windows</family>
                    <arch>amd64</arch>
                </os>
            </activation>
            <properties>
                <envClassifier>ntamd64</envClassifier>
                <envType>dll</envType>
                <native.lib.filename>sapjco3</native.lib.filename>
            </properties>
        </profile>
        <profile>
            <id>linux-i386</id>
            <activation>
                <os>
                    <name>linux</name>
                    <arch>i386</arch>
                </os>
            </activation>
            <properties>
                <envClassifier>linuxintel</envClassifier>
                <envType>so</envType>
                <native.lib.filename>libsapjco3</native.lib.filename>
            </properties>
        </profile>
        <profile>
            <id>linux-x86</id>
            <activation>
                <os>
                    <name>linux</name>
                    <arch>x86</arch>
                </os>
            </activation>
            <properties>
                <envClassifier>linuxintel</envClassifier>
                <envType>so</envType>
                <native.lib.filename>libsapjco3</native.lib.filename>
            </properties>
        </profile>
        <profile>
            <id>linux-x86_64</id>
            <activation>
                <os>
                    <name>linux</name>
                    <arch>x86_64</arch>
                </os>
            </activation>
            <properties>
                <envClassifier>linuxx86_64</envClassifier>
                <envType>so</envType>
                <native.lib.filename>libsapjco3</native.lib.filename>
            </properties>
        </profile>
        <profile>
            <id>linux-amd64</id>
            <activation>
                <os>
                    <name>linux</name>
                    <arch>amd64</arch>
                </os>
            </activation>
            <properties>
                <envClassifier>linuxx86_64</envClassifier>
                <envType>so</envType>
                <native.lib.filename>libsapjco3</native.lib.filename>
            </properties>
        </profile>
        <profile>
            <id>macosx-i386</id>
            <activation>
                <os>
                    <name>mac os x</name>
                    <arch>i386</arch>
                </os>
            </activation>
            <properties>
                <envClassifier>darwinintel</envClassifier>
                <envType>jnilib</envType>
                <native.lib.filename>libsapjco3</native.lib.filename>
            </properties>
        </profile>
        <profile>
            <id>macosx-x86</id>
            <activation>
                <os>
                    <name>mac os x</name>
                    <arch>x86</arch>
                </os>
            </activation>
            <properties>
                <envClassifier>darwinintel</envClassifier>
                <envType>jnilib</envType>
                <native.lib.filename>libsapjco3</native.lib.filename>
            </properties>
        </profile>
        <profile>
            <id>macosx-x86_64</id>
            <activation>
                <os>
                    <name>mac os x</name>
                    <arch>x86_64</arch>
                </os>
            </activation>
            <properties>
                <envClassifier>darwinintel64</envClassifier>
                <envType>jnilib</envType>
                <native.lib.filename>libsapjco3</native.lib.filename>
            </properties>
        </profile>
        <profile>
            <id>macosx-amd64</id>
            <activation>
                <os>
                    <name>mac os x</name>
                    <arch>amd64</arch>
                </os>
            </activation>
            <properties>
                <envClassifier>darwinintel64</envClassifier>
                <envType>jnilib</envType>
                <native.lib.filename>libsapjco3</native.lib.filename>
            </properties>
        </profile>
        <profile>
            <id>studio</id>
            <activation>
                <property>
                    <name>runtime</name>
                    <value>studio</value>
                </property>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <artifactId>maven-compiler-plugin</artifactId>
                        <version>3.1</version>
                        <configuration>
                            <source>1.7</source>
                            <target>1.7</target>
                        </configuration>
                    </plugin>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-dependency-plugin</artifactId>
                        <version>2.4</version>
                        <executions>
                            <execution>
                                <id>copy-native-lib-for-unit-tests</id>
                                <phase>process-sources</phase>
                                <goals>
                                    <goal>copy</goal>
                                </goals>
                                <configuration>
                                    <stripVersion>true</stripVersion>
                                    <outputDirectory>${native.lib.directory}</outputDirectory>
                                    <artifactItems>
                                        <!-- We use maven profiles to choose the native library according 
                                        to architecture and operating system -->
                                        <artifactItem>
                                        <groupId>com.sap.conn.jco</groupId>
                                        <artifactId>sapjco3</artifactId>
                                        <type>${envType}</type>
                                        <classifier>${envClassifier}</classifier>
                                        <overWrite>true</overWrite>
                                        <destFileName>${native.lib.filename}.${envType}</destFileName>
                                        </artifactItem>
                                        <!-- If the target platform differ from your development platform, 
                                        you can add the native library uncommenting the following block Note that 
                                        you must set the following elements accordingly: type, classifier, outputDirectory 
                                        and destFileName -->

                                        <artifactItem>
                                        <groupId>com.sap.conn.jco</groupId>
                                        <artifactId>sapjco3</artifactId>
                                        <type>so</type>
                                        <classifier>linuxx86_64</classifier>
                                        <overWrite>true</overWrite>
                                        <outputDirectory>${lib.directory}/linuxx86_64</outputDirectory>
                                        <destFileName>libsapjco3.so</destFileName>
                                        </artifactItem>

                                    </artifactItems>
                                </configuration>
                            </execution>
                            <execution>
                                <id>copy-jco-libs-unit-tests</id>
                                <phase>process-sources</phase>
                                <goals>
                                    <goal>copy</goal>
                                </goals>
                                <configuration>
                                    <stripVersion>true</stripVersion>
                                    <outputDirectory>${lib.directory}</outputDirectory>
                                    <artifactItems>
                                        <artifactItem>
                                        <groupId>com.sap.conn.jco</groupId>
                                        <artifactId>sapjco3</artifactId>
                                        <overWrite>true</overWrite>
                                        <destFileName>sapjco3.jar</destFileName>
                                        </artifactItem>
                                        <artifactItem>
                                        <groupId>com.sap.conn.idoc</groupId>
                                        <artifactId>sapidoc3</artifactId>
                                        <overWrite>true</overWrite>
                                        <destFileName>sapidoc3.jar</destFileName>
                                        </artifactItem>
                                        <artifactItem>
                                        <groupId>com.mulesoft.muleesb.transports</groupId>
                                        <artifactId>mule-transport-sap</artifactId>
                                        <overWrite>true</overWrite>
                                        <destFileName>mule-transport-sap-${mule-transport-sap.version}.jar</destFileName>
                                        </artifactItem>
                                    </artifactItems>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                    <plugin>
                        <artifactId>maven-antrun-plugin</artifactId>
                        <version>1.7</version>
                        <executions>
                            <execution>
                                <id>add-sap-jars</id>
                                <phase>package</phase>
                                <configuration>
                                    <target>
                                        <zip destfile="${project.build.directory}/${project.build.finalName}.zip" update="true">
                                        <zipfileset dir="${project.build.directory}/lib" prefix="lib"/>
                                        </zip>
                                    </target>
                                </configuration>
                                <goals>
                                    <goal>run</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>

                </plugins>
            </build>

        </profile>
    </profiles>

    <build>
        <plugins>
            <plugin>
                <groupId>org.mule.tools.maven</groupId>
                <artifactId>mule-app-maven-plugin</artifactId>
                <version>${mule.tools.version}</version>
                <extensions>true</extensions>
                <configuration>
                     <sharedLibraries>
                                                <sharedLibrary>
                                                        <groupId>net.inspira.api</groupId>
                                                        <artifactId>api-transformers</artifactId>
                                                </sharedLibrary>
                                                <sharedLibrary>
                                                        <groupId>com.googlecode.json-simple</groupId>
                                                        <artifactId>json-simple</artifactId>
                        </sharedLibrary>
                    </sharedLibraries>
                    <copyToAppsDirectory>true</copyToAppsDirectory>
                    <inclusions>
                        <inclusion>
                            <groupId>com.mulesoft.security</groupId>
                            <artifactId>mule-module-security-property-placeholder</artifactId>
                        </inclusion>
                        <inclusion>
                            <groupId>com.mulesoft.muleesb.transports</groupId>
                            <artifactId>mule-transport-sap</artifactId>
                        </inclusion>
                    <inclusion>
                            <groupId>org.mule.modules</groupId>
                            <artifactId>mule-module-apikit-soap</artifactId>
                        </inclusion>
<!--                         Cloud Areas -->
                    <inclusion>
                            <groupId>3284c114-3570-4feb-a444-7d90b56935a3</groupId>
                            <artifactId>basetis-sap-connector</artifactId>
                        </inclusion>
<!--                         Cloud Areas -->


<!--                         Cloud de Mule -->
<!--                     <inclusion> -->
<!--                             <groupId>org.mule.modules</groupId> -->
<!--                             <artifactId>basetis-sap-connector</artifactId> -->
<!--                         </inclusion> -->
<!--                         Cloud de Mule -->
                   
                    </inclusions>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.2.1</version>
                <configuration>
                    <descriptorRefs>
                        <descriptorRef>project</descriptorRef>
                    </descriptorRefs>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>build-helper-maven-plugin</artifactId>
                <version>1.7</version>
                <executions>
                    <execution>
                        <id>add-resource</id>
                        <phase>generate-resources</phase>
                        <goals>
                            <goal>add-resource</goal>
                        </goals>
                        <configuration>
                            <resources>
                                <resource>
                                    <directory>src/main/app/</directory>
                                </resource>
                                <resource>
                                    <directory>mappings/</directory>
                                </resource>
                                <resource>
                                    <directory>src/main/api/</directory>
                                </resource>
                            </resources>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <!-- Mule Dependencies -->
    <dependencies>
        <!-- Xml configuration -->
        <dependency>
            <groupId>com.mulesoft.muleesb</groupId>
            <artifactId>mule-core-ee</artifactId>
            <version>${mule.version}</version>
            <scope>provided</scope>
        </dependency>
        <!-- Xml configuration -->
        <dependency>
            <groupId>com.mulesoft.muleesb.modules</groupId>
            <artifactId>mule-module-spring-config-ee</artifactId>
            <version>${mule.version}</version>
            <scope>provided</scope>
        </dependency>
        <!-- Mule Transports -->
        <dependency>
            <groupId>org.mule.transports</groupId>
            <artifactId>mule-transport-file</artifactId>
            <version>${mule.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.mule.transports</groupId>
            <artifactId>mule-transport-http</artifactId>
            <version>${mule.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.mulesoft.muleesb.transports</groupId>
            <artifactId>mule-transport-jdbc-ee</artifactId>
            <version>${mule.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.mulesoft.muleesb.transports</groupId>
            <artifactId>mule-transport-jms-ee</artifactId>
            <version>${mule.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.mule.transports</groupId>
            <artifactId>mule-transport-vm</artifactId>
            <version>${mule.version}</version>
            <scope>provided</scope>
        </dependency>
        <!-- Mule Modules -->
        <dependency>
            <groupId>org.mule.modules</groupId>
            <artifactId>mule-module-scripting</artifactId>
            <version>${mule.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.mule.modules</groupId>
            <artifactId>mule-module-xml</artifactId>
            <version>${mule.version}</version>
            <scope>provided</scope>
        </dependency>
        <!-- SAP Dependencies -->
        <dependency>
            <groupId>com.mulesoft.muleesb.transports</groupId>
            <artifactId>mule-transport-sap</artifactId>
            <version>${mule-transport-sap.version}</version>

        </dependency>
        <dependency>
            <groupId>com.sap.conn.jco</groupId>
            <artifactId>sapjco3</artifactId>
            <version>${sapjco.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.sap.conn.idoc</groupId>
            <artifactId>sapidoc3</artifactId>
            <version>${sapidoc.version}</version>
            <scope>provided</scope>
        </dependency>
        <!-- for testing -->
        <dependency>
            <groupId>org.mule.tests</groupId>
            <artifactId>mule-tests-functional</artifactId>
            <version>${mule.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mule.modules</groupId>
            <artifactId>mule-module-apikit</artifactId>
            <version>${mule.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.mulesoft.weave</groupId>
            <artifactId>mule-plugin-weave</artifactId>
            <version>${mule.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.mule.modules</groupId>
            <artifactId>mule-module-spring-config</artifactId>
            <version>${mule.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.mule.modules</groupId>
            <artifactId>mule-module-json</artifactId>
            <version>${mule.version}</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>net.inspira.api</groupId>
            <artifactId>api-internal-security</artifactId>
            <version>0.0.1</version>
        </dependency>
         <dependency>
            <groupId>net.inspira.api</groupId>
            <artifactId>api-transformers</artifactId>
            <version>2.0.0</version>
        </dependency>
        <dependency>
            <groupId>net.inspira.api</groupId>
            <artifactId>api-connection</artifactId>
            <version>1.0.0</version>
        </dependency>
        <dependency>
            <groupId>com.oracle</groupId>
            <artifactId>ojdbc6</artifactId>
            <version>11.2.0.4</version>
        </dependency>
        <dependency>
            <groupId>com.mulesoft.security</groupId>
            <artifactId>mule-module-security-property-placeholder</artifactId>
            <version>1.6.2</version>
        </dependency>
    <dependency>
            <groupId>org.mule.modules</groupId>
            <artifactId>mule-module-apikit-soap</artifactId>
            <version>1.0.1</version>
        </dependency>
                  <dependency>
    <groupId>org.jdom</groupId>
    <artifactId>jdom</artifactId>
    <version>1.1.3</version>
    </dependency>
<!--     Cloud Areas -->
     <dependency>
  <groupId>3284c114-3570-4feb-a444-7d90b56935a3</groupId>
  <artifactId>basetis-sap-connector</artifactId>
  <version>1.1.5</version>

</dependency>
<!--     Cloud Areas -->

<!--     Cloud Mule -->
<!--     <dependency> -->
<!--             <groupId>org.mule.modules</groupId> -->
<!--             <artifactId>basetis-sap-connector</artifactId> -->
<!--             <version>1.1.1</version> -->
<!--         </dependency> -->
<!--     Cloud Mule -->

    
    <dependency>
                        <groupId>net.inspira.api</groupId>
                        <artifactId>api-transformers</artifactId>
                        <version>2.0.0</version>
                </dependency>
<dependency>
                        <groupId>com.googlecode.json-simple</groupId>
                        <artifactId>json-simple</artifactId>
                        <version>1.1.1</version>
                </dependency>

</dependencies>

    <repositories>
<!--    Repository Areas -->
    <repository>
    <id>Repository</id>
    <name>Exchange Repository</name>
    <url>https://maven.anypoint.mulesoft.com/api/v1/organizations/3284c114-3570-4feb-a444-7d90b56935a3/maven</url>
    <layout>default</layout>
  </repository>
  <!--  Repository Areas -->
        <repository>
            <id>Central</id>
            <name>Central</name>
            <url>http://repo1.maven.org/maven2/</url>
            <layout>default</layout>
        </repository>
        <repository>
            <id>mulesoft-releases</id>
            <name>MuleSoft Releases Repository</name>
            <url>http://repository.mulesoft.org/releases/</url>
            <layout>default</layout>
        </repository>
    <repository>
            <id>anypoint-exchange</id>
            <name>Exchange Repository</name>
            <url>https://maven.anypoint.mulesoft.com/api/v1/organizations/3284c114-3570-4feb-a444-7d90b56935a3/maven</url>
        </repository>
    </repositories>
    <pluginRepositories>
        <pluginRepository>
            <id>mulesoft-release</id>
            <name>mulesoft release repository</name>
            <layout>default</layout>
            <url>http://repository.mulesoft.org/releases/</url>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
        </pluginRepository>
    </pluginRepositories>



</project>

`

我試圖通過在 pom.xml 檔案中添加帶有“<sharedLibraries>”標簽的依賴項來修復它,但似乎它不起作用,我不知道還能嘗試什么,我會感謝任何幫助。

uj5u.com熱心網友回復:

這是 Mule 3 應用程式的 POM。它永遠無法構建 Mule 4 應用程式,并且 Anypoint Studio 7.x(與 Mule 4 專案兼容的版本)將無法匯入它。要么您的版本不正確,要么它沒有真正遷移。您需要為 Mule 4 應用程式創建一個 pom.xml。由于這是一個復雜的 POM,它可能不是微不足道的。這還不包括應用程式本身任何可能的未決遷移。

請注意,<sharedLibraries>它用于解決執行時的類加載問題。它構建對構建根本沒有幫助。

轉載請註明出處,本文鏈接:https://www.uj5u.com/qianduan/523064.html

標籤:行家pom.xml骡子软件任意点工作室骡子4

上一篇:UI檔案中的標簽文本無法更改

下一篇:Maven專案中的類和依賴項匯入問題

標籤雲
其他(157675) Python(38076) JavaScript(25376) Java(17977) C(15215) 區塊鏈(8255) C#(7972) AI(7469) 爪哇(7425) MySQL(7132) html(6777) 基礎類(6313) sql(6102) 熊猫(6058) PHP(5869) 数组(5741) R(5409) Linux(5327) 反应(5209) 腳本語言(PerlPython)(5129) 非技術區(4971) Android(4554) 数据框(4311) css(4259) 节点.js(4032) C語言(3288) json(3245) 列表(3129) 扑(3119) C++語言(3117) 安卓(2998) 打字稿(2995) VBA(2789) Java相關(2746) 疑難問題(2699) 细绳(2522) 單片機工控(2479) iOS(2429) ASP.NET(2402) MongoDB(2323) 麻木的(2285) 正则表达式(2254) 字典(2211) 循环(2198) 迅速(2185) 擅长(2169) 镖(2155) 功能(1967) .NET技术(1958) Web開發(1951) python-3.x(1918) HtmlCss(1915) 弹簧靴(1913) C++(1909) xml(1889) PostgreSQL(1872) .NETCore(1853) 谷歌表格(1846) Unity3D(1843) for循环(1842)

熱門瀏覽
  • vue移動端上拉加載

    可能做得過于簡單或者比較low,請各位大佬留情,一起探討技術 ......

    uj5u.com 2020-09-10 04:38:07 more
  • 優美網站首頁,頂部多層導航

    一個個人用的瀏覽器首頁,可以把一下常用的網站放在這里,平常打開會比較方便。 第一步,HTML代碼 <script src=https://www.cnblogs.com/szharf/p/"js/jquery-3.4.1.min.js"></script> <div id="navigate"> <ul> <li class="labels labels_1"> ......

    uj5u.com 2020-09-10 04:38:47 more
  • 頁面為要加<!DOCTYPE html>

    最近因為寫一個js函式,需要用到$(window).height(); 由于手寫demo的時候,過于自信,其實對前端方面的認識也不夠體系,用文本檔案直接敲出來的html代碼,第一行沒有加上<!DOCTYPE html> 導致了$(window).height();的結果直接是整個document的高 ......

    uj5u.com 2020-09-10 04:38:52 more
  • WordPress網站程式手動升級要做好資料備份

    WordPress博客網站程式在進行升級前,必須要做好網站資料的備份,這個問題良家佐言是遇見過的;在剛開始接觸WordPress博客程式的時候,因為升級問題和博客網站的修改的一些嘗試,良家佐言是吃盡了苦頭。因為購買的是西部數碼的空間和域名,每當佐言把自己的WordPress博客網站搞到一塌糊涂的時候 ......

    uj5u.com 2020-09-10 04:39:30 more
  • WordPress程式不能升級為5.4.2版本的原因

    WordPress是一款個人博客系統,受到英文博客愛好者和中文博客愛好者的追捧,并逐步演化成一款內容管理系統軟體;它是使用PHP語言和MySQL資料庫開發的,用戶可以在支持PHP和MySQL資料庫的服務器上使用自己的博客。每一次WordPress程式的更新,就會牽動無數WordPress愛好者的心, ......

    uj5u.com 2020-09-10 04:39:49 more
  • 使用CSS3的偽元素進行首字母下沉和首行改變樣式

    網頁中常見的一種效果,首字改變樣式或者首行改變樣式,效果如下圖。 代碼: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, ......

    uj5u.com 2020-09-10 04:40:09 more
  • 關于a標簽的講解

    什么是a標簽? <a> 標簽定義超鏈接,用于從一個頁面鏈接到另一個頁面。 <a> 元素最重要的屬性是 href 屬性,它指定鏈接的目標。 a標簽的語法格式:<a href=https://www.cnblogs.com/summerxbc/p/"指定要跳轉的目標界面的鏈接">需要展示給用戶看見的內容</a> a標簽 在所有瀏覽器中,鏈接的默認外觀如下: 未被訪問的鏈接帶 ......

    uj5u.com 2020-09-10 04:40:11 more
  • 前端輪播圖

    在需要輪播的頁面是引入swiper.min.js和swiper.min.css swiper.min.js地址: 鏈接:https://pan.baidu.com/s/15Uh516YHa4CV3X-RyjEIWw 提取碼:4aks swiper.min.css地址 鏈接:https://pan.b ......

    uj5u.com 2020-09-10 04:40:13 more
  • 如何設定html中的背景圖片(全屏顯示,且不拉伸)

    1 <style>2 body{background-image:url(https://uploadbeta.com/api/pictures/random/?key=BingEverydayWallpaperPicture); 3 background-size:cover;background ......

    uj5u.com 2020-09-10 04:40:16 more
  • Java學習——HTML詳解(上)

    HTML詳解 初識HTML Hyper Text Markup Language(超文本標記語言) 1 <!--DOCTYPE:告訴瀏覽器我們要使用什么規范--> 2 <!DOCTYPE html> 3 <html lang="en"> 4 <head> 5 <!--meta 描述性的標簽,描述一些 ......

    uj5u.com 2020-09-10 04:40:33 more
最新发布
  • 我的第一個NPM包:panghu-planebattle-esm(胖虎飛機大戰)使用說明

    好家伙,我的包終于開發完啦 歡迎使用胖虎的飛機大戰包!! 為你的主頁添加色彩 這是一個有趣的網頁小游戲包,使用canvas和js開發 使用ES6模塊化開發 效果圖如下: (覺得圖片太sb的可以自己改) 代碼已開源!! Git: https://gitee.com/tang-and-han-dynas ......

    uj5u.com 2023-04-20 07:59:23 more
  • 生產事故-走近科學之消失的JWT

    入職多年,面對生產環境,盡管都是小心翼翼,慎之又慎,還是難免捅出簍子。輕則滿頭大汗,面紅耳赤。重則系統停擺,損失資金。每一個生產事故的背后,都是寶貴的經驗和教訓,都是專案成員的血淚史。為了更好地防范和遏制今后的各類事故,特開此專題,長期更新和記錄大大小小的各類事故。有些是親身經歷,有些是經人耳傳口授 ......

    uj5u.com 2023-04-18 07:55:04 more
  • 記錄--Canvas實作打飛字游戲

    這里給大家分享我在網上總結出來的一些知識,希望對大家有所幫助 打開游戲界面,看到一個畫面簡潔、卻又富有挑戰性的游戲。螢屏上,有一個白色的矩形框,里面不斷下落著各種單詞,而我需要迅速地輸入這些單詞。如果我輸入的單詞與螢屏上的單詞匹配,那么我就可以獲得得分;如果我輸入的單詞錯誤或者時間過長,那么我就會輸 ......

    uj5u.com 2023-04-04 08:35:30 more
  • 了解 HTTP 看這一篇就夠

    在學習網路之前,了解它的歷史能夠幫助我們明白為何它會發展為如今這個樣子,引發探究網路的興趣。下面的這張圖片就展示了“互聯網”誕生至今的發展歷程。 ......

    uj5u.com 2023-03-16 11:00:15 more
  • 藍牙-低功耗中心設備

    //11.開啟藍牙配接器 openBluetoothAdapter //21.開始搜索藍牙設備 startBluetoothDevicesDiscovery //31.開啟監聽搜索藍牙設備 onBluetoothDeviceFound //30.停止監聽搜索藍牙設備 offBluetoothDevi ......

    uj5u.com 2023-03-15 09:06:45 more
  • canvas畫板(滑鼠和觸摸)

    <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>canves</title> <style> #canvas { cursor:url(../images/pen.png),crosshair; } #canvasdiv{ bo ......

    uj5u.com 2023-02-15 08:56:31 more
  • 手機端H5 實作自定義拍照界面

    手機端 H5 實作自定義拍照界面也可以使用 MediaDevices API 和 <video> 標簽來實作,和在桌面端做法基本一致。 首先,使用 MediaDevices.getUserMedia() 方法獲取攝像頭媒體流,并將其傳遞給 <video> 標簽進行渲染。 接著,使用 HTML 的 < ......

    uj5u.com 2023-01-12 07:58:22 more
  • 記錄--短視頻滑動播放在 H5 下的實作

    這里給大家分享我在網上總結出來的一些知識,希望對大家有所幫助 短視頻已經無數不在了,但是主體還是使用 app 來承載的。本文講述 H5 如何實作 app 的視頻滑動體驗。 無聲勝有聲,一圖頂百辯,且看下圖: 網址鏈接(需在微信或者手Q中瀏覽) 從上圖可以看到,我們主要實作的功能也是本文要講解的有: ......

    uj5u.com 2023-01-04 07:29:05 more
  • 一文讀懂 HTTP/1 HTTP/2 HTTP/3

    從 1989 年萬維網(www)誕生,HTTP(HyperText Transfer Protocol)經歷了眾多版本迭代,WebSocket 也在期間萌芽。1991 年 HTTP0.9 被發明。1996 年出現了 HTTP1.0。2015 年 HTTP2 正式發布。2020 年 HTTP3 或能正... ......

    uj5u.com 2022-12-24 06:56:02 more
  • 【HTML基礎篇002】HTML之form表單超詳解

    ??一、form表單是什么

    ??二、form表單的屬性

    ??三、input中的各種Type屬性值

    ??四、標簽 ......

    uj5u.com 2022-12-18 07:17:06 more