libgdx / box2dlights

Fork of box2dlights by Kalle Hamalainen
Apache License 2.0
257 stars 82 forks source link

Do the box2dlights 1.5 release #112

Closed rinold closed 4 years ago

rinold commented 6 years ago

Hi Team,

Looks like the rendering in frame buffers is quite in demand, thus could we, please, do the new 1.5 release and push it to maven? (Or possibly tell me how if allowed :)) Many thanks beforehand!

Overall changes for 1.5:

bitbrain commented 4 years ago

@badlogic @Tom-Ski what is blocking us from doing this? My work is blocked because of this :(

Tom-Ski commented 4 years ago

Should be fine, just missed this. :(. Ill try do it tomorrow, had a quick look now but its failing on javadoc generation.

bitbrain commented 4 years ago

@Tom-Ski that's good to hear! For my project, I use this plugin config to make Javadoc work (also, it won't fail the build on warnings, since this will happen for Java8+):

<plugin>
   <groupId>org.apache.maven.plugins</groupId>
   <artifactId>maven-javadoc-plugin</artifactId>
   <executions>
      <execution>
      <id>attach-javadocs</id>
      <goals>
         <goal>jar</goal>
      </goals>
      </execution>
   </executions>
   <configuration>
      <failOnError>false</failOnError>
      <doclint>none</doclint>
   </configuration>
</plugin>
Tom-Ski commented 4 years ago

Released!