Skip to content

Commit

Permalink
Update version to v0.4.8-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
Gurkenlabs committed Dec 10, 2017
1 parent c9270a9 commit 0460d28
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions build-maven.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jar {

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

version = 'v0.4.7-alpha'
version = 'v0.4.8-alpha'
exclude '**/*.dll'
exclude '**/*.jnilib'
exclude '**/*.so'
Expand Down Expand Up @@ -69,13 +69,13 @@ task createJavadocs(type: Javadoc) {
task javadocJar(type: Jar) {
classifier = 'javadoc'
from javadoc
version = 'v0.4.7-alpha'
version = 'v0.4.8-alpha'
}

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

artifacts {
Expand All @@ -89,7 +89,7 @@ tasks.withType(JavaCompile) {

group = "de.gurkenlabs"
archivesBaseName = "litiengine"
version = "v0.4.7-alpha"
version = "0.4.8"

uploadArchives {
repositories {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ apply plugin: 'jacoco'
apply plugin: 'maven'

archivesBaseName = "litiengine"
version = "v0.4.7-alpha"
version = "v0.4.8-alpha"

sourceSets {
main.java.srcDir "src"
Expand Down
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.7
sonar.projectVersion=0.4.8

# Path is relative to the sonar-project.properties file. Replace "\" by "/" on Windows.
# This property is optional if sonar.modules is set.
Expand Down

0 comments on commit 0460d28

Please sign in to comment.