Skip to content

Commit

Permalink
javassist bugs with 1.6 no debug
Browse files Browse the repository at this point in the history
  • Loading branch information
RuedigerMoeller committed Mar 17, 2014
1 parent eb0ffd1 commit 367b22e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
7 changes: 6 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@ import java.util.zip.ZipFile

apply plugin: 'java'
apply plugin: 'maven'
version="1.5"
version="1.51"

targetCompatibility = 1.7
sourceCompatibility = 1.7

compileJava.options.debugOptions.debugLevel = "source,lines,vars"
compileTestJava.options.debugOptions.debugLevel = "source,lines,vars"

jar.baseName='fst'

Expand Down
11 changes: 10 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.ruedigermoeller</groupId>
<artifactId>fst</artifactId>
<version>1.5</version>
<version>1.51</version>

<description>a fast java serialization drop in-replacement + some serialization based utils (Structs, OffHeap Memory)</description>
<url>https://code.google.com/p/fast-serialization/</url>
Expand Down Expand Up @@ -46,6 +46,15 @@
<!--<target>1.6</target>-->
<!--<encoding>UTF-8</encoding>-->
<!--</configuration>-->
<configuration>
<source>1.7</source>
<target>1.7</target>
<!--<encoding>UTF-8</encoding>-->
<debug>true</debug>
<debuglevel>lines,vars,source</debuglevel>
<optimize>false</optimize>
<verbose>true</verbose>
</configuration>
<executions>
<execution>
<id>default-testCompile</id>
Expand Down

0 comments on commit 367b22e

Please sign in to comment.