- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
发生了什么:我的 java 编译器设置从自定义 jdk 重置为默认 java se1.5
当它发生时:每次我单击 maven- 更新项目(当然在 eclipse 中)。
我认为这与更新项目设置复选框有关。但是我在我的 pom 中找不到负责配置我的 eclipse 项目的标签。有什么提示吗?
顺便说一句,我不能只取消选中该框,因为 pom 可能有其他对我的项目至关重要的设置
编辑:抱歉耽搁了,这是我的 pom.xml
<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">
<!-- <parent> -->
<!-- <groupId>org.geomajas</groupId> -->
<!-- <artifactId>geomajas-parent</artifactId> -->
<!-- <version>1.0.9</version> -->
<!-- </parent> -->
<modelVersion>4.0.0</modelVersion>
<groupId>ne</groupId>
<artifactId>projl</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>TApp</name>
<description>Test</description>
<url>http://www.example.com/</url>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.geomajas</groupId>
<artifactId>geomajas-backend</artifactId>
<version>1.13.0-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.geomajas</groupId>
<artifactId>geomajas-face-puregwt</artifactId>
<version>1.0.0-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.geomajas.plugin</groupId>
<artifactId>geomajas-plugin-geotools-all</artifactId>
<version>1.10.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.geomajas.plugin</groupId>
<artifactId>geomajas-plugin-rasterizing-all</artifactId>
<version>1.2.0-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.geomajas.plugin</groupId>
<artifactId>geomajas-widget-puregwt-core-all</artifactId>
<version>1.0.0-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.geomajas</groupId>
<artifactId>geomajas-dep</artifactId>
<version>1.12.28</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.9.1</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<scope>compile</scope>
</dependency>
<!-- Geomajas dependencies -->
<dependency>
<groupId>org.geomajas.plugin</groupId>
<artifactId>geomajas-plugin-rasterizing</artifactId>
</dependency>
<dependency>
<groupId>org.geomajas</groupId>
<artifactId>geomajas-puregwt-client-impl</artifactId>
</dependency>
<dependency>
<groupId>org.geomajas</groupId>
<artifactId>geomajas-testdata</artifactId>
</dependency>
<dependency>
<groupId>org.geomajas.plugin</groupId>
<artifactId>geomajas-layer-geotools</artifactId>
</dependency>
<dependency>
<groupId>org.geomajas.plugin</groupId>
<artifactId>geomajas-layer-openstreetmap</artifactId>
</dependency>
<dependency>
<groupId>org.geomajas.plugin</groupId>
<artifactId>geomajas-layer-wms</artifactId>
</dependency>
<!-- Google dependencies -->
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwt-version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-servlet</artifactId>
<version>${gwt-version}</version>
<scope>runtime</scope>
</dependency>
<!-- External GWT libraries -->
<dependency>
<groupId>com.google.code.gwt-dnd</groupId>
<artifactId>gwt-dnd</artifactId>
<version>3.1.0</version>
</dependency>
<!-- logging dependencies, delegate all to slf4j and use logback -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>log4j-over-slf4j</artifactId>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-java</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>selenium-server</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<!-- Run the application using "mvn jetty:run" -->
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<version>6.1.20</version>
<configuration>
<webAppConfig>
<contextPath>/</contextPath>
<baseResource implementation="org.mortbay.resource.ResourceCollection">
<!-- need both the webapp dir and location where GWT puts stuff -->
<resourcesAsCSV>${basedir}/src/main/webapp,${project.build.directory}/${project.build.finalName}</resourcesAsCSV>
</baseResource>
</webAppConfig>
<reload>manual</reload>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>gwt-maven-plugin</artifactId>
<version>2.5.0</version>
<dependencies>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-user</artifactId>
<version>${gwt-version}</version>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>${gwt-version}</version>
</dependency>
</dependencies>
<configuration>
<module>the.proj.App</module>
<runTarget>index.html</runTarget>
<disableCastChecking>true</disableCastChecking>
<disableClassMetadata>true</disableClassMetadata>
<extraJvmArgs>-Xmx1024M -Xss1024k</extraJvmArgs>
<hostedWebapp>${project.build.directory}/${project.build.finalName}</hostedWebapp>
<copyWebapp>true</copyWebapp>
</configuration>
<executions>
<execution>
<id>compile</id>
<phase>test-compile</phase>
<goals>
<goal>compile</goal>
</goals>
</execution>
<execution>
<id>clean</id>
<phase>clean</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.2.1</version>
<configuration>
<!-- Container configuration -->
<container>
<containerId>tomcat7x</containerId>
<type>remote</type>
</container>
<!-- Configuration to use with the container -->
<configuration>
<type>runtime</type>
<properties>
<cargo.remote.username>${dev.deploy.username}</cargo.remote.username>
<cargo.remote.password>${dev.deploy.password}</cargo.remote.password>
<cargo.remote.uri>${dev.deploy.uri}</cargo.remote.uri>
</properties>
</configuration>
<deployer>
<deployables>
<deployable>
<groupId>org.geomajas</groupId>
<artifactId>geomajas-puregwt-showcase</artifactId>
<type>war</type>
<properties>
<context>showcase-pure-trunk</context>
</properties>
</deployable>
</deployables>
</deployer>
</configuration>
</plugin>
</plugins>
</build>
<profiles>
<!-- m2eclipse with embedded jetty -->
<profile>
<id>m2e</id>
<activation>
<property>
<name>m2e.version</name>
</property>
</activation>
<dependencies>
<dependency>
<groupId>org.geomajas</groupId>
<artifactId>geomajas-jetty-runner</artifactId>
<version>1.0.0</version>
</dependency>
<dependency>
<groupId>com.google.gwt</groupId>
<artifactId>gwt-dev</artifactId>
<version>${gwt-version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<properties>
<gwt.compiler.skip>true</gwt.compiler.skip>
</properties>
</profile>
<profile>
<id>skipGwt</id>
<activation>
<property>
<name>skipGwt</name>
</property>
</activation>
<properties>
<gwt.compiler.skip>true</gwt.compiler.skip>
</properties>
</profile>
<profile>
<id>selenium-tests</id>
<activation>
<property>
<name>!skipSelenium</name>
</property>
</activation>
<build>
<plugins>
<!-- Run the application using "mvn jetty:run" -->
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<configuration>
<webAppConfig>
<contextPath>/</contextPath>
</webAppConfig>
<reload>manual</reload>
<stopPort>9966</stopPort>
<stopKey>stop-jetty</stopKey>
</configuration>
<executions>
<execution>
<id>start-jetty</id>
<phase>pre-integration-test</phase>
<goals>
<goal>run</goal>
</goals>
<configuration>
<daemon>true</daemon>
<scanIntervalSeconds>5</scanIntervalSeconds>
<connectors>
<connector implementation="org.mortbay.jetty.nio.SelectChannelConnector">
<port>9080</port>
<maxIdleTime>60000</maxIdleTime>
</connector>
</connectors>
</configuration>
</execution>
<execution>
<id>stop-jetty</id>
<phase>post-integration-test</phase>
<goals>
<goal>stop</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<executions>
<execution>
<phase>integration-test</phase>
<goals>
<goal>test</goal>
</goals>
<configuration>
<includes>
<include>**/*TestInt.java</include>
<include>**/IntTest*.java</include>
</includes>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
<repositories>
<repository>
<id>Geomajas</id>
<name>Geomajas repository</name>
<url>http://maven.geomajas.org/</url>
</repository>
<!-- uncomment if you want to use Geomajas snapshots, comment for faster builds -->
<repository>
<id>Geomajas-latest</id>
<name>Geomajas snapshot repository</name>
<url>http://apps.geomajas.org/nexus/content/groups/latest</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>Geomajas</id>
<name>Geomajas repository</name>
<url>http://maven.geomajas.org/</url>
</pluginRepository>
</pluginRepositories>
<properties>
<gwt-version>2.5.1</gwt-version>
<gwt.compiler.skip>false</gwt.compiler.skip>
</properties>
</project>
最佳答案
我不太确定你的问题,但我相信 m2e 插件通过编译器插件的设置获得源/输出版本。
在你的POM中,有类似
的东西....
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
.....
</plugins>
</build>
m2e应该能够根据源和目标版本配置你的Eclipse
关于java - Maven 不断搞乱我的 Java 编译器和构建路径设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17480545/
所以我昨天尝试开始使用 std::initializer_list 但这并不是一个巨大的成功。这是我最后的尝试之一: #include #include struct XmlState
我读到,JVM gc 在找到无法访问的对象后,会运行该对象的 Finalize() 方法。然后它检查该对象是否仍然无法访问,如果不是则删除它。所以我写了一个终结,使它的对象的引用再次可用: publi
所以,我收到了一些文件,其中包含一堆这样的东西 var time=0;//ÓÎϷʱ¼ä 很明显,评论对应的东西,我想看,但是乱七八糟的,我不知道为什么。 1) 我怎么读这个 2)如何避免 最佳答案
在阅读之前,请注意我是 jquery、html 和 css 方面的初学者。 在将 jquery 安装到我的网站之前,我将页眉和页脚固定在固定位置,以便它们粘在浏览器的顶部和底部。当我安装jquery时
我用Minamaze1.1.2主题免费添加了一个网站。在更改 CSS 代码时,我以某种方式更改了 slider 图片的尺寸。现在左侧与右侧不成比例。 在网址中可以看到: http://springlo
我已经创建了一个下拉框阴影和悬停图像的示例,除了通常的问题 internet explerror 之外,它似乎工作正常。你可以在这里查看 fiddle : www.jsfiddle.net/kcD6j
我正在按照 Spring 教程开始使用 JPA,并且我有一个带有 user 表的基本 mysql 数据库。 我已按如下方式设置User.java: package com.test.models; i
假设我有三个表 - 用户、服务器和付款。每个用户可以拥有多个服务器,每个服务器可以进行多次支付。假设我想查找最近的付款并获取有关这些付款所附加的服务器/客户的信息。这是一个可以执行此操作的查询: SE
我为我的购物车、注册、登录和联系表启用了 SSL。当启用 SSL 时,jquery 被禁用。我看到谷歌也有使用 https 导入的 jquery。 这是页面 https://americanbookc
这是一个标准任务:在应用程序的共享首选项中存储一些值,以便以后能够检索它。但是人们会发现有 3 个函数可以在其中存储一个值: //1. public static SharedPreferences
我正在尝试使用 SLRequest iOS API 获取 facebook 数据,这似乎工作正常 - NSDictionary *parameters = @{}; NSURL *feedURL =
好的,所以我用 jQuery 实现了整个页面的隐藏/淡入效果。一切都很顺利,直到我意识到delay() + fadeIn()导致我的 Hashtag Links 以顶部的滚动位置加载,而不是 #my_
因此,在我将 DNS 移至 Godaddy 之前,该站点在 Internet Explorer 中运行良好。这是网站.. http://csdassociates.com/ ...关于为什么这不再正确
由于某些奇怪的原因,我放置在任何 gridview 中的所有按钮看起来都真的缩小了(如下图所示),即使 gridview 是默认的并且没有附加 CSS。 会不会是其他一些 CSS,因为我有太多代码无法
我目前正在实现一个身份验证系统,其中用户登录并从服务器接收 JWT token ,该 token 存储在 localStorage 中。我还编写了一个自定义 HttpInterceptor,它将用户的
我正在尝试使 QGridLayout 可滚动。它可能包含几个自定义小部件,小部件的数量不固定。当有超过 x 个小部件时,QGridLayout 必须是可滚动的,x 是任意数字。 问题是,当我使用 QS
更改我的系统 PATH 变量似乎把一切都搞砸了。 因此,我尝试运行 rake device:android:product 来制作我一直在使用 RhoMobile/Rhodes 开发的应用程序的 AP
我有一些中文字符(例如中文(简体))存储在内容类型为utf8_bin的mysql数据库中。 我使用以下代码从数据库中提取数据: if($stmt = $mysqli->prepare("SELECT
我们需要创建和销毁 QApplication 的实例,因为我们想在现有主机应用程序的插件中使用 Qt。 void multiQT() { int argc = 0; QApplicat
我是一名优秀的程序员,十分优秀!