滴答 发表于 2014-5-9 20:26:16

V3.4.3 Maven环境 J2SE1.5警告 去除

把插件修改成如下即可

                <plugins>
                        <plugin>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-compiler-plugin</artifactId>
                                <configuration>
                                        <source>1.7</source>
                                        <target>1.7</target>
                                </configuration>
                        </plugin>
                        <plugin>
                                <groupId>org.codehaus.mojo</groupId>
                                <artifactId>tomcat-maven-plugin</artifactId>
                                <version>1.1</version>
                                <configuration>
                                        <path>/jeecg</path>
                                        <port>8080</port>
                                        <uriEncoding>UTF-8</uriEncoding>
                                        <url>http://localhost:8080/manager/html</url>
                                        <server>tomcat6</server>
                                </configuration>
                        </plugin>
                </plugins>

ssht968 发表于 2014-5-13 09:36:52

又学到了。原来是这样

oaky 发表于 2014-5-13 11:23:39

果然是这样子的。谢谢
页: [1]
查看完整版本: V3.4.3 Maven环境 J2SE1.5警告 去除