Skip to content

Commit

Permalink
Moved cross language targets to /target2 directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
leerho committed Oct 25, 2023
1 parent 00454df commit 6d82c02
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ tmp/

# Build artifacts
target/
target2/
out/
build/
jarsIn/
Expand Down
4 changes: 2 additions & 2 deletions src/test/java/org/apache/datasketches/common/TestUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ public final class TestUtil {
/**
* The full target Path for Java serialized sketches to be tested by other languages.
*/
public static final Path javaPath = createPath("target/java_generated_files");
public static final Path javaPath = createPath("target2/java_generated_files");

/**
* The full target Path for C++ serialized sketches to be tested by Java.
*/
public static final Path cppPath = createPath("target/cpp_generated_files");
public static final Path cppPath = createPath("target2/cpp_generated_files");

private static Path createPath(final String projectLocalDir) {
try {
Expand Down

0 comments on commit 6d82c02

Please sign in to comment.