기존 코드베이스에 이클립스 프로젝트를 추가하고 있는데, 이클립스가 일부 디렉토리를 선택하지 않도록 제외하는 방법이 있는지 알고 싶습니다. 그 이유는 우리가 효율적으로 동기화하기 위해 사용 하는 쌍 프로그래밍 플러그인 에 대한 프로젝트에 존재할 수없는 거대한 "타사"디렉토리가 저장소에 있기 때문 입니다.
단서가 있습니까?
기존 코드베이스에 이클립스 프로젝트를 추가하고 있는데, 이클립스가 일부 디렉토리를 선택하지 않도록 제외하는 방법이 있는지 알고 싶습니다. 그 이유는 우리가 효율적으로 동기화하기 위해 사용 하는 쌍 프로그래밍 플러그인 에 대한 프로젝트에 존재할 수없는 거대한 "타사"디렉토리가 저장소에 있기 때문 입니다.
단서가 있습니까?
답변:
필터는보기에서 리소스를 숨기지 만 여전히 프로젝트에 있습니다. 다른 위치에서 프로젝트를 만드는 경우 프로젝트에 포함 할 폴더에 연결된 리소스 를 만들 수 있습니다 .
참고로 링크 된 리소스를 더 자세히 사용하는 방법을 설명하는 또 다른 답변을 게시했습니다 .
이를 수행하는 직접적인 방법이 있습니다.
PS 프로젝트 트리가 자동으로 업데이트되지 않으면 프로젝트 탐색기 창에 입력 포커스를 둔 상태에서 F5 키를 눌러야 할 수 있습니다.
예, 프로젝트에 사용자 지정 필터를 배치 할 수 있습니다. 프로젝트 탐색기보기에서 패키지 탐색기 탭 옆의 패널 상단 근처에 흰색 아래쪽을 가리키는 화살표가 있어야합니다. 그것을 클릭하고 필터로 이동하십시오. 여기에서 이름 필터 패턴 옆의 확인란을 선택하여 감지하지 않으려는 특정 폴더 패턴을 지정할 수 있습니다. 이 경우 타사 라이브러리의 이름을 입력합니다.
내가 항상 해왔 던 방식은 프로젝트를 동료로 명시 적으로 확인하는 것입니다. 예 :
~ / myworkspace / goodproject ~ / myworkspace / 3rdparty
그런 다음 "goodproject"만 이클립스로 가져옵니다. "3rdparty"가 goodproject의 하위 디렉토리이면 가짜로 만들 수 있습니다. 예를 들어 svn 프로젝트가 다음과 같이 보입니다.
계획/ src / 본관/ 제 3 당/
로컬에서 project / src /를 만든 다음 "main"디렉토리 만 체크 아웃하고 eclipse가 패키지 버전에 의존하도록 할 수 있습니다 (예 : 프로젝트가 java 인 경우 jar를 가리킴).
.project 파일 내에 직접 필터를 추가하려는 경우 다음과 같은 몇 가지 규칙이 있습니다.
<type>6</type> <!-- exclude all, files -->
<type>5</type> <!-- include only, files -->
<type>13</type> <!-- include only, files and folders -->
<type>26</type><!-- exclude all, folders, all children -->
<arguments>1.0-name-matches-false-false-xyz</arguments> <!-- case sensitive=false, regular expression=false, something named=xyz -->
<arguments>1.0-name-matches-true-false-EEE</arguments> <!-- case sensitive = true, regular expression = false, something named=EEE -->
<arguments>1.0-name-matches-false-false-www</arguments> <!--case sensitive=false, regular expression = false, something named=www -->
하나의 .project 필터 섹션 예 :
<filteredResources>
<filter>
<id>1567020347706</id>
<name></name>
<type>6</type> <!-- exclude all, files -->
<matcher>
<id>org.eclipse.ui.ide.multiFilter</id>
<arguments>1.0-name-matches-false-false-abc</arguments>
</matcher>
</filter>
<filter>
<id>1567020347708</id>
<name></name>
<type>5</type> <!-- include only, files -->
<matcher>
<id>org.eclipse.ui.ide.multiFilter</id>
<arguments>1.0-name-matches-false-false-xyz</arguments> <!-- case sensitive=false, regular expression=false -->
</matcher>
</filter>
<filter>
<id>1567020347711</id>
<name></name>
<type>13</type>
<matcher>
<id>org.eclipse.ui.ide.multiFilter</id>
<arguments>1.0-name-matches-false-false-mno</arguments>
</matcher>
</filter>
<filter>
<id>1567020347713</id>
<name></name>
<type>26</type><!-- exclude all, folders, all children -->
<matcher>
<id>org.eclipse.ui.ide.multiFilter</id>
<arguments>1.0-name-matches-true-false-EEE</arguments> <!-- case sensitive = true, regular expression = false -->
</matcher>
</filter>
<filter>
<id>1567020347716</id>
<name></name>
<type>26</type> <!-- exclude all, folders, all children -->
<matcher>
<id>org.eclipse.ui.ide.multiFilter</id>
<arguments>1.0-name-matches-false-false-www</arguments> <!-- case sensitive = false, regular expression = false -->
</matcher>
</filter>
</filteredResources>