Fix paths in a few places

This commit is contained in:
Justine Tunney 2016-05-17 13:52:27 -04:00
parent be19daea01
commit 1abd2a6314
3 changed files with 10 additions and 10 deletions

View file

@ -14,8 +14,8 @@
# When you make changes to the XML schemas (*.xsd) or the JAXB bindings file # When you make changes to the XML schemas (*.xsd) or the JAXB bindings file
# (bindings.xjb), you must regenerate this file with the following commands: # (bindings.xjb), you must regenerate this file with the following commands:
# #
# bazel run third_party/java_src/gtld/java/google/registry/xjc:list_generated_files | tee /tmp/lol # bazel run java/google/registry/xjc:list_generated_files | tee /tmp/lol
# mv /tmp/lol third_party/java_src/gtld/java/google/registry/xjc/generated_files # mv /tmp/lol java/google/registry/xjc/generated_files
# #
pkginfo_generated_files = [ pkginfo_generated_files = [

View file

@ -46,8 +46,8 @@ cat <<EOF
# When you make changes to the XML schemas (*.xsd) or the JAXB bindings file # When you make changes to the XML schemas (*.xsd) or the JAXB bindings file
# (bindings.xjb), you must regenerate this file with the following commands: # (bindings.xjb), you must regenerate this file with the following commands:
# #
# bazel run third_party/java_src/gtld/java/google/registry/xjc:list_generated_files | tee /tmp/lol # bazel run java/google/registry/xjc:list_generated_files | tee /tmp/lol
# mv /tmp/lol third_party/java_src/gtld/java/google/registry/xjc/generated_files.bzl # mv /tmp/lol java/google/registry/xjc/generated_files.bzl
# #
EOF EOF

View file

@ -29,14 +29,14 @@ public final class RegistryTestServer {
public static final ImmutableMap<String, Path> RUNFILES = public static final ImmutableMap<String, Path> RUNFILES =
new ImmutableMap.Builder<String, Path>() new ImmutableMap.Builder<String, Path>()
.put("/index.html", Paths.get("third_party/java_src/gtld/java/google/registry/ui/html/index.html")) .put("/index.html", Paths.get("java/google/registry/ui/html/index.html"))
.put("/error.html", Paths.get("third_party/java_src/gtld/java/google/registry/ui/html/error.html")) .put("/error.html", Paths.get("java/google/registry/ui/html/error.html"))
.put("/assets/js/*", Paths.get("third_party/java_src/gtld/java/google/registry/ui")) .put("/assets/js/*", Paths.get("java/google/registry/ui"))
.put("/assets/css/*", Paths.get("third_party/java_src/gtld/java/google/registry/ui/css")) .put("/assets/css/*", Paths.get("java/google/registry/ui/css"))
.put("/assets/sources/deps-runfiles.js", .put("/assets/sources/deps-runfiles.js",
Paths.get("third_party/java_src/gtld/java/google/registry/ui/deps-runfiles.js")) Paths.get("java/google/registry/ui/deps-runfiles.js"))
.put("/assets/sources/*", Paths.get("")) .put("/assets/sources/*", Paths.get(""))
.put("/assets/*", Paths.get("third_party/java_src/gtld/java/google/registry/ui/assets")) .put("/assets/*", Paths.get("java/google/registry/ui/assets"))
.build(); .build();
private static final ImmutableList<Route> ROUTES = ImmutableList.of( private static final ImmutableList<Route> ROUTES = ImmutableList.of(