소스 검색

Configure Eclipse wtp to use the same context root as jetty

Rob Winch 14 년 전
부모
커밋
6983b166d8
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      build.gradle

+ 5 - 0
build.gradle

@@ -105,6 +105,11 @@ configure(javaProjects) {
             }
         }
     }
+    tasks.withType(org.gradle.plugins.eclipse.EclipseWtpComponent) {
+        whenConfigured { wtpComponent ->
+            wtpComponent.contextPath = project.tasks.findByName('jettyRun')?.contextPath?.replaceFirst('/','')
+        }
+    }
 }
 
 ideaModule {