Skip to content

Commit

Permalink
Renamed Strace-Time-Series and all its components to String-Time-Series
Browse files Browse the repository at this point in the history
  • Loading branch information
0xhansdampf committed Jun 26, 2016
1 parent ec36c07 commit c2c1062
Show file tree
Hide file tree
Showing 13 changed files with 2,705 additions and 0 deletions.
13 changes: 13 additions & 0 deletions chronix-kassiopeia-converter-string/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
Copyright (C) 2016 QAware GmbH

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
102 changes: 102 additions & 0 deletions chronix-kassiopeia-converter-string/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@

dependencies {
compile project(':chronix-kassiopeia-string')
compile project(':chronix-kassiopeia-simple-converter')
compile project(':chronix-kassiopeia-converter-common')

compile 'de.qaware.chronix:chronix-api:0.1'
compile 'com.google.code.gson:gson:2.5'
compile 'com.google.protobuf:protobuf-java:2.6.1'
}

//add the generated classes to the sources
sourceSets {
main {
java {
srcDir 'src/main/java'
srcDir 'src/main/generated'
}
}
}

task copyTestResources(type: Copy) {
from "${projectDir}/src/test/resources"
into "${buildDir}/classes/test"
}
processTestResources.dependsOn copyTestResources

task javadocJar(type: Jar, dependsOn: groovydoc) {
classifier = 'javadoc'
from groovydoc.destinationDir
}

artifacts {
archives sourcesJar
archives javadocJar
}

def pomConfig = {

inceptionYear '2016'

scm {
connection "scm:git:${project.scmUrl}"
developerConnection "scm:git:${project.scmUrl}"
url project.websiteUrl
}

issueManagement {
system 'GitHub'
url project.issueTrackerUrl
}

licenses {
license([:]) {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
distribution 'repo'
}
}

organisation {
name 'QAware GmbH'
url 'https://www.qaware.de'
}

developers {
developer {
id 'florianlautenschlager'
name 'Florian Lautenschlager'
email '[email protected]'
organization 'QAware GmbH'
organizationUrl 'https://www.qaware.de'
roles { role 'Developer' }
}
developer {
id '0xhansdampf'
name 'Max Jalowski'
email '[email protected]'
organization 'FAU'
organizationUrl 'https://www.fau.de'
roles { role 'Developer' }
}
}
}

publishing {
publications {
chronixKassiopeiaSimpleConverter(MavenPublication) {
from components.java
artifact sourcesJar
artifact javadocJar

pom.withXml {
asNode().appendNode('name', project.displayName)
asNode().appendNode('description', project.description)
asNode().appendNode('url', project.websiteUrl)

asNode().children().last() + pomConfig
}
}
}
}
8 changes: 8 additions & 0 deletions chronix-kassiopeia-converter-string/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
version=0.0.1

displayName=Chronix Kassiopeia Strace Converter
description=Chronix Kassiopeia strace time series converter
websiteUrl=https://github.com/ChronixDB/chronix.kassiopeia
scmUrl=https://github.com/ChronixDB/chronix.kassiopeia.git
issueTrackerUrl=https://github.com/ChronixDB/chronix.kassiopeia/issues
bintrayRepo=maven
Loading

0 comments on commit c2c1062

Please sign in to comment.