2011-08-24 4 views
1

Spring Action in : 제 3 판 : 1 장에서이 오류가 발생합니다. 일할 웹 사이트. 내 IDE는 STS입니다. 이 버전 1.3 (see documentation)를 사용하여 기본적으로 감사Spring in Action : 제 3 판 : 1 장 ... Maven과 POM 파일

[INFO] Scanning for projects... 
[INFO] ------------------------------------------------------------------------ 
[INFO] Building Unnamed - Knights:Knights:jar:0.0.1-SNAPSHOT 
[INFO] task-segment: [install] 
[INFO] ------------------------------------------------------------------------ 
[INFO] [resources:resources {execution: default-resources}] 
[WARNING] Using platform encoding (Cp1252 actually) to copy filtered resources, i.e. build is platform dependent! 
[INFO] Copying 1 resource 
[INFO] [compiler:compile {execution: default-compile}] 
[INFO] Compiling 7 source files to E:\SpringInAction\Knights\target\classes 
[INFO] [resources:testResources {execution: default-testResources}] 
[WARNING] Using platform encoding (Cp1252 actually) to copy filtered resources, i.e. build is platform dependent! 
[INFO] skip non existing resourceDirectory E:\SpringInAction\Knights\src\test\resources 
[INFO] [compiler:testCompile {execution: default-testCompile}] 
[INFO] Compiling 1 source file to E:\SpringInAction\Knights\target\test-classes 
[INFO] ------------------------------------------------------------------------ 
[ERROR] BUILD FAILURE 
[INFO] ------------------------------------------------------------------------ 
[INFO] Compilation failure 

E:\SpringInAction\Knights\src\test\java\com\springinaction\knights\BraveKnightTest.java:[3,7] static import declarations are not supported in -source 1.3 
(use -source 5 or higher to enable static import declarations) 
import static org.mockito.Mockito.*; 

E:\SpringInAction\Knights\src\test\java\com\springinaction\knights\BraveKnightTest.java:[8,3] annotations are not supported in -source 1.3 
(use -source 5 or higher to enable annotations) 
    @Test 


[INFO] ------------------------------------------------------------------------ 
[INFO] For more information, run Maven with the -e switch 
[INFO] ------------------------------------------------------------------------ 
[INFO] Total time: 1 second 
[INFO] Finished at: Wed Aug 24 00:12:45 CDT 2011 
[INFO] Final Memory: 12M/232M 
[INFO] ----------------------------------------------------------- 

답변

2

는, 자바의 버전 5를 사용하는 메이븐에게하기 위해 귀하의 치어이 추가 :

<build> 
    <pluginManagement> 
    <plugins> 
     <plugin> 
     <groupId>org.apache.maven.plugins</groupId> 
     <artifactId>maven-compiler-plugin</artifactId> 
     <configuration> 
      <source>1.5</source> 
      <target>1.5</target> 
     </configuration> 
     </plugin> 
    </plugins> 
    </pluginManagement> 
</build> 
+0

은 Maven은 1.3을 사용하려고 ? 감사합니다. –

+0

원본 속성은 기본적으로 1.3으로 기본 설정됩니다 (http://maven.apache.org/maven-1.x/plugins/java/properties.html 참조). –

관련 문제