shaobojohn / adwhirl

Automatically exported from code.google.com/p/adwhirl
0 stars 0 forks source link

Ration.class is excluded from the distribution jar file. #272

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.Try to make a jar by using the command  "ant jar"
2.It will create the jar file but will not include the Ration.class file.

What is the expected output? What do you see instead?
Should include Ration.class file in jar.

What version of the product are you using? On what operating system?
3.1.1 and Windows7

Please provide any additional information below.
Found the issue and it will solve if we replace the build script with the 
following changes

      <jar destfile="${jar.file}" filesonly="true">
          <fileset dir="${bin.dir}/classes" includes="**/*.class"
              excludes="**/Invoker.class **/R$*.class **/R.class" />
          <fileset dir="${src.dir}" includes="${assets.dir}/*" />
      </jar>

Original issue reported on code.google.com by gandhikr...@gmail.com on 27 Dec 2011 at 8:09

GoogleCodeExporter commented 8 years ago
Fixed internally.  Eric, can you migrate these changes?

Original comment by wesgood...@google.com on 3 Jan 2012 at 11:07

GoogleCodeExporter commented 8 years ago
We came upon and resolved this issue when releasing 3.1.1, but forgot to push 
it to the open source repository until now.  Good call gandhikrishnan.

Original comment by eleichte...@google.com on 4 Jan 2012 at 12:26