반응형

해결책 : www.eclipse.org/m2e/documentation/m2e-execution-not-covered.html

 

M2Eclipse | Execution Not Covered

M2Eclipse 0.12 and earlier executed some parts of Maven build lifecycle inside Eclipse and then configured the Eclipse project based on after-execution state collected in MavenProject. This was controlled by many different sets of maven goals – goals whe

www.eclipse.org

 

환경설정 -> Maven -> Lifecycle Mapping

- Open workspace lifecycle mapping metadata  클릭.

xml 내용 추가.

<lifecycleMappingMetadata>
	<pluginExecutions>

		<!--
        에러가 발생하는 플러그인 위치를 작성한다.
		plugin
		 - groupId : org.codehaus.mojo
		 - artifactId : buildnumber-maven-plugin 
		   - execution
		     - goal : create-timestamp
		-->
		<pluginExecution>
			<pluginExecutionFilter>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>buildnumber-maven-plugin</artifactId>
				<versionRange>[1.0.0,)</versionRange>
				<goals>
					<goal>create-timestamp</goal>
				</goals>
			</pluginExecutionFilter>
			<action>
				<ignore />
			</action>
		</pluginExecution>
        
        ....
        
        <pluginExecution>
        ....
        </pluginExecution>
        
	</pluginExecutions>
</lifecycleMappingMetadata>

 

반응형

'프로그래밍' 카테고리의 다른 글

[git] error: src refspec master does not match any  (0) 2023.07.05
[JSTL] 조건식 eq, ne, empty  (0) 2016.12.07
인코딩  (0) 2014.03.24
[svn] 사용자 추가  (2) 2011.02.15
반응형


이클립스에서 commit 하다 cancel 을 했다.


다시 commit 하려고 하니까 lock 걸려서 진행이 안됨.


보통은 team > cleanup 하면 된다고 한다.


그리고 lock 파일이 있는지 찾아보라고 하는데.. 없다..


결국 직접 svn db 파일을 수정해서 해결.


1. sqlite 클라이언트 다운로드

 - http://sqlitebrowser.org/


2. sqlite 클라이언트 실행해서 DB를 연다.

 - .svn 디렉토리 밑에 wc.db 파일.


3. sql 실행 탭에서 아래 쿼리 실행.

 - DELETE FROM WORK_QUEUE;

 - DELETE FROM WC_LOCK;


4. wc.db 파일 저장.(sqlite 클라이언트 종료)


이제 잘된다....



출처: http://finkle.tistory.com/124


반응형
반응형


정부표준 프레임워크라고 나와서 한번 설치 시도해봄.


GEF

 - Available Software Sites 에 이미 등록되어 있음.

 - 검색 후 설치.


amateras ERD/ UML

 - 이클립스에서 Available Software Sites 에 추가 후 설치.

 - http://takezoe.github.io/amateras-update-site

 - Amateras Modeler

   Lightweight graphical UML and ER diagram editor



플러그인 직접설치 시 디렉토리.

/Applications/Eclipse.app/Contents/Eclipse/plugins


반응형
반응형

jad : Java Decompiler

jad 실행 파일 : http://www.varaneckas.com/jad
이클립스 플러그인 : http://sourceforge.net/projects/jadclipse/files/jadclipse3.3/3.3.0%20%28for%20Eclipse%20_%3D3.3M6%29/net.sf.jadclipse_3.3.0.jar/download

1. 이클립스용 플러그인을 이크립스 설치 디렉토리의 plugins 디렉토리에 복사.
2. 이클립스 재 시작.
3. 이클립스 환경 설정.
 - Window -> Preference 창에서 java -> JdaClipse 메뉴 선택.
 - Path to decompiler 에 jad 실행 파일 위치 입력.(c:\tmp\jad.exe)
 - Use Eclipse code formatter 체크.
 -  Misc 메뉴의 Convert Unicode strings into ANSI strings 체크.(한글깨짐 방지)

반응형
반응형
반응형

'프로그래밍 > Java' 카테고리의 다른 글

url encoding  (0) 2011.02.18
[link] sitemesh  (0) 2011.01.17
[jsp]DisplayTag 에서 row num 구하기.  (2) 2010.02.23
외부 명령어 실행  (1) 2010.01.29
순서 보장 되는 HashMap  (0) 2009.11.19
반응형


1. 이클립스에서 프로젝트를 생성한다.

2. 프로젝트 클릭 후

 - Team -> Share Project -> CVS -> repository location(Create or use existing) ->

 - Enter Modul Name
   + Use project name as module name : 프로젝트 이름을 그대로 사용.(선택)
   + Use specified module name : 프로젝트와 다른 이름으로 사용.
   + 서버에 있는 모듈 사용.

 -> finish -> commit(최초)

반응형
반응형

이클립스 사용

 

이클립스 실행시 처음에 나오는 default workspace 창이 없어졌다면..

 

 

window -> preferences -> general -> startup and shutdown -> prompt for workspace on starup

 

체크 하면 됨

 

또는 젤 밑에 보이는 restore dafaults 버튼 클릭


반응형

'프로그래밍 > Java' 카테고리의 다른 글

HashMap 의 keys 보기  (0) 2009.02.11
[iBatis] iBatis 기본 사용법  (0) 2009.02.11
[iBatis] iBatis 설정 파일  (1) 2009.02.11
[iBatis] iBatis 설치  (0) 2009.02.11
Access DB 등록  (0) 2009.02.11

+ Recent posts