0

I tried to use flaka, but i always get an error that says that the class PropertyHelper12 isn't found. I looked in the jar file and actually there isn't that file, but it's available in the source code.

Does anyone know if there is a well made jar file for flaka? I mean updated with sources?

Thanks!

PS: I tried to tag this question with flaka, but i can't because i have < 1500 rep.. :/

martin clayton
  • 76,436
  • 32
  • 213
  • 198
alem0lars
  • 660
  • 2
  • 10
  • 23

2 Answers2

0

Actually the problem was due to the build available in the website. If some one wants to get flaka i suggest to:

  • Download the trunk source code, using svn checkout http://flaka.googlecode.com/svn/trunk/ flaka-read-only
  • cd to the source directory and run ant to build the source
  • cd to dist and the right jar file is ant-flaka.*.jar
alem0lars
  • 660
  • 2
  • 10
  • 23
0

U p d a t e

Flaka Version 1.02.01 has been released incl. updated jar, sources and development package, get it on Flaka Download Site !


The problem lies within the build script build.xml. If build runs with ant version < 1.8.0 the PropertyHelper12 Class gets excluded from the jar.

see build.xml, line 292 :

<exclude name="**/*PropertyHelper12*" unless="ant-gte-180" />

The flaka download will be fixed soon !!

Until that you may grep the sources and build with Ant 1.8.x to get the PropertyHelper12 Class included and all will work as expected

Rebse
  • 10,307
  • 2
  • 38
  • 66