Somehow I don't manage to build the standalone jar. I
tried it using IntelliJ Idea (which is my standard IDE) and in Eclipse.
In Idea I managed to solve the dependencies... but get some strange
Ant-errors, so I thought it's an Idea-specific problem with Ant.
In
Eclipse (which I'm not very used to), I collected and set all needed
jars. But there seems to be an issue with Weka. I have Weka 3.6.8
installed - is this the right version or which one do I need?
sax\SAXFactory.java:1100: cannot find symbol
[javac] symbol : method subList(int,int)
[javac] location: class weka.core.Instances
[javac] List<Instance> tmpList = data.subList(start, end);
[javac] ^
[javac] jmotif\src\edu\hawaii\jmotif\sax\SAXFactory.java:1116: cannot find symbol
[javac] symbol : method size()
[javac] location: class weka.core.Instances
[javac] double[] vals = new double[tsData.size()];
[javac] ^
[javac] jmotif\src\edu\hawaii\jmotif\sax\SAXFactory.java:1117: cannot find symbol
[javac] symbol : method size()
[javac] location: class weka.core.Instances
[javac] for (int i = 0; i < tsData.size(); i++) {
[javac] ^
[javac] jmotif\src\edu\hawaii\jmotif\sax\SAXFactory.java:1118: cannot find symbol
[javac] symbol : method get(int)
[javac] location: class weka.core.Instances
[javac] vals[i] = tsData.get(i).value(dataAttribute.index());
[javac] ^
[javac] jmotif\src\edu\hawaii\jmotif\sax\SAXFactory.java:1166: cannot find symbol
[javac] symbol : method size()
[javac] location: class weka.core.Instances
[javac] while ((currPosition + window) < tsData.size()) {
[javac] ^
[javac] jmotif\src\edu\hawaii\jmotif\timeseries\TestTSUtils.java:319: cannot find symbol
[javac] symbol : method size()
[javac] location: class weka.core.Instances
[javac] for (int i = 0; i < data.size(); i++) {
[javac] ^
[javac] jmotif\src\edu\hawaii\jmotif\timeseries\TestTSUtils.java:320: cannot find symbol
[javac] symbol : method get(int)
[javac] location: class weka.core.Instances
[javac] ts.add(new TPoint(data.get(i).value(dataAttribute.index()), Integer.valueOf(i).longValue()));
[javac] ^
[javac] 7 errors
Thanks in advance,
Vaske
PS: Could you perhaps add the standalone jar to the download section? It could also be usefull for others perhaps.