forked from ChronixDB/chronix.timeseries
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Renamed Strace-Time-Series and all its components to String-Time-Series
- Loading branch information
1 parent
ec36c07
commit c2c1062
Showing
13 changed files
with
2,705 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Oops, something went wrong.