From 7d756f4b3b9ce1f6e6f1f42d9e89cd1d2ca719f5 Mon Sep 17 00:00:00 2001 From: Nicolas Stucki Date: Fri, 17 Jan 2020 15:52:56 +0100 Subject: [PATCH] Remove old semanticdb project Now that we have the `semanticdb.ExtractSemanticDB` phase this project will not be needed. --- .gitmodules | 3 --- community-build/community-projects/semanticdb | 1 - .../scala/dotty/communitybuild/CommunityBuildTest.scala | 7 ------- 3 files changed, 11 deletions(-) delete mode 160000 community-build/community-projects/semanticdb diff --git a/.gitmodules b/.gitmodules index 7e960a809d49..59df32dbdb0b 100644 --- a/.gitmodules +++ b/.gitmodules @@ -47,9 +47,6 @@ [submodule "community-build/community-projects/xml-interpolator"] path = community-build/community-projects/xml-interpolator url = https://github.com/lampepfl/xml-interpolator.git -[submodule "community-build/community-projects/semanticdb"] - path = community-build/community-projects/semanticdb - url = https://github.com/lampepfl/dotty-semanticdb.git [submodule "community-build/community-projects/effpi"] path = community-build/community-projects/effpi url = https://github.com/dotty-staging/effpi diff --git a/community-build/community-projects/semanticdb b/community-build/community-projects/semanticdb deleted file mode 160000 index 168b1f6881dd..000000000000 --- a/community-build/community-projects/semanticdb +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 168b1f6881dd2f79025ae3db61bf7f56120c369b diff --git a/community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala b/community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala index d03ebc905e15..60760128a154 100644 --- a/community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala +++ b/community-build/test/scala/dotty/communitybuild/CommunityBuildTest.scala @@ -233,12 +233,6 @@ object projects sbtUpdateCommand = "update" ) - lazy val semanticdb = SbtCommunityProject( - project = "semanticdb", - sbtTestCommand = "test:compile", - sbtUpdateCommand = "update" - ) - lazy val effpi = SbtCommunityProject( project = "effpi", // We set `useEffpiPlugin := false` because we don't want to run their @@ -339,7 +333,6 @@ class CommunityBuildTest { @Test def stdLib213 = projects.stdLib213.run() @Test def shapeless = projects.shapeless.run() @Test def xmlInterpolator = projects.xmlInterpolator.run() - @Test def semanticdb = projects.semanticdb.run() @Test def effpi = projects.effpi.run() @Test def sconfig = projects.sconfig.run() }