ilovesoup / hyracks

Automatically exported from code.google.com/p/hyracks
Apache License 2.0
0 stars 0 forks source link

Hyracks-0.1.7.1 does not build on Mac #40

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. checkout hyracks-0.1.7.1
2. run mvn clean install
3. watch the errors on your screen

What is the expected output? What do you see instead?
Should see: BUILD SUCCESSFUL.
See instead: BUILD FAILURE (due to illegal characters)

What version of the product are you using? On what operating system?
hyracks-0.1.7.1 on Mac OS X 10.7

Please provide any additional information below.

To fix this issue, add the following to hyracks-dataflow-common/pom.xml:
--- hyracks-dataflow-common/pom.xml (revision 563)
+++ hyracks-dataflow-common/pom.xml (working copy)
@@ -19,6 +19,7 @@
         <configuration>
           <source>1.6</source>
           <target>1.6</target>
+          <encoding>UTF-8</encoding>
         </configuration>
       </plugin>
     </plugins>

Original issue reported on code.google.com by zheilb...@gmail.com on 19 Sep 2011 at 5:41

GoogleCodeExporter commented 9 years ago
Oops, should be merged with Issue #38

Original comment by zheilb...@gmail.com on 19 Sep 2011 at 6:28

GoogleCodeExporter commented 9 years ago
Fixed

Original comment by vinay...@gmail.com on 30 Nov 2011 at 8:20