Be more flexible when identifying project content.

Change-Id: I4af59494ebfbab69b39bf6cddaea305d2b47c4bd
diff --git a/services/license_check.php b/services/license_check.php
index 493be73..1feb60c 100755
--- a/services/license_check.php
+++ b/services/license_check.php
@@ -191,10 +191,10 @@
 
 function matchesEclipseNamespace($namespace) {
 	// TODO Make this data-driven
-	if (preg_match('/^org\.eclipse\./', $namespace)) return true;
-	if (preg_match('/^org\.polarsys\./', $namespace)) return true;
-	if (preg_match('/^org\.locationtech\./', $namespace)) return true;
-	if (preg_match('/^jakarta\./', $namespace)) return true;
+	if (preg_match('/^org\.eclipse\b/', $namespace)) return true;
+	if (preg_match('/^org\.polarsys\b/', $namespace)) return true;
+	if (preg_match('/^org\.locationtech\b/', $namespace)) return true;
+	if (preg_match('/^jakarta\b/', $namespace)) return true;
 	if (preg_match('/^org\.aspectj/', $namespace)) return true;
 	if (preg_match('/^@theia$/', $namespace)) return true;