Skip to content

Commit 0f497f6

Browse files
committed
Use maven directory structure
1 parent 8a77deb commit 0f497f6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
</parent>
2727

2828
<artifactId>compiler</artifactId>
29-
<version>2.21ea83-SNAPSHOT</version>
29+
<version>2.23ea0-SNAPSHOT</version>
3030
<packaging>bundle</packaging>
3131

3232
<name>OpenHFT/Java-Runtime-Compiler</name>

src/test/java/net/openhft/compiler/CompilerTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public void test_compiler() throws Throwable {
6161

6262
// this writes the file to disk only when debugging is enabled.
6363
CachedCompiler cc = CompilerUtils.DEBUGGING ?
64-
new CachedCompiler(new File(parent, "src/test/java"), new File(parent, "target/compiled")) :
64+
new CachedCompiler(new File(parent, "target/generated-test-sources"), new File(parent, "target/test-classes")) :
6565
CompilerUtils.CACHED_COMPILER;
6666

6767
String text = "generated test " + new Date();

0 commit comments

Comments
 (0)