V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
redbelt
V2EX  ›  Java

maven 命令行打 war 包,所有 Java 文件都没有编译成为 class 文件!没有编译。。在线等大佬指点

  •  
  •   redbelt · Jul 14, 2020 · 2703 views
    This topic created in 2127 days ago, the information mentioned may be changed or developed.
    这是 pom 文件中的 build 部分,已经被我改的面目全非了。。。



    <build>
    <plugins>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.2</version>
    <configuration>
    <source>8</source>
    <target>8</target>
    <encoding>UTF-8</encoding>
    <includes>WEB-INF/lib/*.jar</includes>
    <includes>
    src/main/java/
    </includes>
    </configuration>
    </plugin>
    <plugin>
    <artifactId>maven-war-plugin</artifactId>
    <version>3.2.2</version>
    <configuration>
    <!-- <warSourceDirectory>WebContent</warSourceDirectory>-->
    <!-- <failOnMissingWebXml>false</failOnMissingWebXml>-->
    </configuration>
    </plugin>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-surefire-plugin</artifactId>
    <version>2.4.2</version>
    <configuration>
    <skipTests>true</skipTests>
    </configuration>
    </plugin>
    </plugins>
    <finalName>shicaimao</finalName>
    </build>
    2 replies    2020-07-15 13:46:29 +08:00
    orcusfox
        1
    orcusfox  
       Jul 15, 2020 via iPhone
    redbelt
        2
    redbelt  
    OP
       Jul 15, 2020
    <build>
    <plugins>
    <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.2</version>
    <configuration>
    <source>8</source>
    <target>8</target>
    <encoding>UTF-8</encoding>
    <compilerArguments>
    <extdirs>src/main/webapp/WEB-INF/lib</extdirs>
    </compilerArguments>
    </configuration>
    </plugin>

    </plugins>
    </build>

    重点是这个

    <compilerArguments>
    <extdirs>src/main/webapp/WEB-INF/lib</extdirs>
    </compilerArguments>

    Google 关键字:既用 maven 又用 WEB-INF/lib
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   2540 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 45ms · UTC 16:09 · PVG 00:09 · LAX 09:09 · JFK 12:09
    ♥ Do have faith in what you're doing.