Skip to content
This repository has been archived by the owner on Jul 10, 2020. It is now read-only.

Commit

Permalink
Release preparations
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Oberwasserlechner committed Sep 9, 2016
1 parent 483d2e2 commit 0dfe64f
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions addon/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ plugins {
id "com.jfrog.bintray" version "1.5"
}
apply plugin: 'maven-publish'
apply plugin: 'maven'
apply plugin: 'osgi'

sourceCompatibility = 1.7
Expand Down Expand Up @@ -32,8 +33,13 @@ dependencies {
testCompile "junit:junit:4.12"
}

task createAddonPom {
pom { artifactId = project.artifactId }.writeTo("${sourceSets.main.output.resourcesDir}/META-INF/maven/com.byteowls/vaadin-chartjs/pom.xml")
}

jar {
baseName = project.artifactId
createAddonPom
// Include sources
sourceSets.main.java.srcDirs.each {
from it
Expand Down
2 changes: 1 addition & 1 deletion addon/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
artifactId=chartjs-addon
artifactId=vaadin-chartjs
version=0.2.0
2 changes: 1 addition & 1 deletion demo/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ war {

// Include widgetset
//dependsOn 'vaadinCompile'
//dependsOn 'test'
//dependsOn 'test'

// Add sources
webInf {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ protected void init(VaadinRequest request) {
+ "| Version: <strong>" + env.getProperty("versions.vaadin-chartjs-addon") + "</strong> "
+ "| Chart.js: <strong>" + env.getProperty("versions.chartjs") + "</strong> "
+ "| Vaadin: <strong>" + env.getProperty("versions.vaadin") + "</strong> "
+ "| Created by: <strong>Michael Oberwasserlechner</strong> "
+ "| Github: https://github.com/moberwasserlechner/vaadin-chartjs");
//+ "| Created by: <strong>Michael Oberwasserlechner</strong> "
+ "| Fork on github: <strong>https://github.com/moberwasserlechner/vaadin-chartjs</strong>");
info.setContentMode(ContentMode.HTML);

CssLayout infoBar = new CssLayout(info);
Expand Down

0 comments on commit 0dfe64f

Please sign in to comment.