Skip to content

Commit

Permalink
Update version to v0.4.13-alpha.
Browse files Browse the repository at this point in the history
  • Loading branch information
steffen-wilke committed Aug 6, 2018
1 parent ba49d1a commit a442ce7
Show file tree
Hide file tree
Showing 7 changed files with 39 additions and 35 deletions.
53 changes: 29 additions & 24 deletions build-maven.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,11 @@ sourceSets {

repositories {
mavenCentral()

flatDir {
dirs 'lib'
}
}

dependencies {
compile 'net.java.jinput:jinput:2.0.7'
compile 'net.java.jinput:jinput:2.0.9'
compile 'net.java.jinput:jinput:2.0.9:natives-all'
compile 'com.googlecode.soundlibs:jorbis:0.0.17.4'
compile 'com.googlecode.soundlibs:tritonus-share:0.3.7.4'
compile 'com.googlecode.soundlibs:vorbisspi:1.0.3.3'
Expand All @@ -32,21 +29,29 @@ dependencies {
}

compile 'com.code-disaster.steamworks4j:steamworks4j:1.7.0'
testCompile 'org.junit.jupiter:junit-jupiter-api:5.1.0'
testCompile 'org.junit.jupiter:junit-jupiter-params:5.1.0'
testCompile 'org.mockito:mockito-core:2.10.0'
testRuntime 'org.junit.jupiter:junit-jupiter-engine:5.1.0'
testRuntime 'org.junit.platform:junit-platform-launcher:1.1.0'

testCompile 'org.junit.jupiter:junit-jupiter-api:5.2.+'
testCompile 'org.junit.jupiter:junit-jupiter-params:5.2.+'
testCompile 'org.mockito:mockito-core:2.21.+'
testRuntime 'org.junit.jupiter:junit-jupiter-engine:5.2.+'
}

test {
useJUnitPlatform()
}

jar {
from configurations.compile.collect { zipTree it }

from {configurations.compile.collect { zipTree it }
} {
exclude 'META-INF/services/**'
}

from('resources') { include '**/*' }

version = 'v0.4.12-alpha'
version = 'v0.4.13-alpha'
exclude '**/*.dll'
exclude '**/*.jnilib'
exclude '**/*.dylib'
exclude '**/*.so'
exclude 'junit**/**'
}
Expand All @@ -56,7 +61,7 @@ javadoc {
}

signing {
sign configurations.archives
sign configurations.archives
}

task copyNativeLibs(type: Copy) {
Expand All @@ -74,29 +79,29 @@ task createJavadocs(type: Javadoc) {
}

task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
version = 'v0.4.12-alpha'
classifier = 'javadoc'
from javadoc
version = 'v0.4.13-alpha'
}

task sourcesJar(type: Jar) {
classifier = 'sources'
from sourceSets.main.allSource
version = 'v0.4.12-alpha'
classifier = 'sources'
from sourceSets.main.allSource
version = 'v0.4.13-alpha'
}

artifacts {
archives javadocJar, sourcesJar
archives javadocJar, sourcesJar
}

tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
dependsOn copyNativeLibs
options.encoding = 'UTF-8'
dependsOn copyNativeLibs
}

group = "de.gurkenlabs"
archivesBaseName = "litiengine"
version = "0.4.12"
version = "0.4.13"

uploadArchives {
repositories {
Expand Down
5 changes: 2 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ buildscript {
}
}


plugins {
plugins {
id 'com.stehno.natives' version '0.3.1'
id 'org.sonarqube' version '2.6.2'
}
Expand All @@ -21,7 +20,7 @@ apply plugin: 'jacoco'
apply plugin: 'maven'

archivesBaseName = "litiengine"
version = "v0.4.12-alpha"
version = "v0.4.13-alpha"

sourceSets {
main.java.srcDir "src"
Expand Down
2 changes: 1 addition & 1 deletion examples/hello-liti-gradle/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ repositories {
}

dependencies {
compile 'de.gurkenlabs:litiengine:0.4.12'
compile 'de.gurkenlabs:litiengine:0.4.13'
}
2 changes: 1 addition & 1 deletion examples/hello-liti-maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<dependency>
<groupId>de.gurkenlabs</groupId>
<artifactId>litiengine</artifactId>
<version>0.4.12</version>
<version>0.4.13</version>
</dependency>
</dependencies>
</project>
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
sonar.projectKey=de.gurkenlabs:litiengine
# this is the name and version displayed in the SonarQube UI. Was mandatory prior to SonarQube 6.1.
sonar.projectName=litiengine
sonar.projectVersion=0.4.12
sonar.projectVersion=0.4.13

# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
# This property is optional if sonar.modules is set.
Expand Down
8 changes: 4 additions & 4 deletions utiliti/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ apply plugin: 'java'
apply plugin: 'eclipse'

archivesBaseName = "utiliti"
version = "v0.4.12-alpha"
version = "v0.4.13-alpha"


sourceSets {
Expand Down Expand Up @@ -46,10 +46,10 @@ launch4j {
mainClassName = 'de.gurkenlabs.utiliti.Program'
icon = 'pixel-icon-utiLITI.ico'
outputDir = 'libs'
outfile = archivesBaseName + '-v0.4.12-alpha.exe'
outfile = archivesBaseName + '-v0.4.13-alpha.exe'
companyName = 'gurkenlabs.de'
version = '0.4.12'
textVersion = '0.4.12'
version = '0.4.13'
textVersion = '0.4.13'
copyright = '2017 gurkenlabs.de'
jvmOptions = ['-Xms256m', '-Xmx1024m']
}
Expand Down
2 changes: 1 addition & 1 deletion utiliti/src/de/gurkenlabs/utiliti/Program.java
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ public static void main(String[] args) {

Game.getInfo().setName("utiLITI");
Game.getInfo().setSubTitle("litiengine creation kit");
Game.getInfo().setVersion("v0.4.12-alpha");
Game.getInfo().setVersion("v0.4.13-alpha");

initSystemTray();

Expand Down

0 comments on commit a442ce7

Please sign in to comment.