Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
  • Loading branch information
clausnagel committed Oct 29, 2018
1 parent c523ccc commit 9220583
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .gitignore
@@ -1,5 +1,5 @@
.gradle/
gradle.properties
/gradle.properties
build/

# Eclipse
Expand Down
3 changes: 2 additions & 1 deletion build.gradle
Expand Up @@ -6,6 +6,7 @@ plugins {
id 'distribution'
}

version '1.0.0'
mainClassName = 'org.citygml4j.tools.CityGMLTools'

ext {
Expand All @@ -14,7 +15,6 @@ ext {

allprojects {
group 'org.citygml4j.tools'
version '1.0.0'

sourceCompatibility = 1.8

Expand Down Expand Up @@ -82,6 +82,7 @@ subprojects {
artifact javadocJar
pom {
name = project.name
description = project.description
url = 'https://github.com/citygml4j/citygml-tools'
licenses {
license {
Expand Down
2 changes: 0 additions & 2 deletions citygml-tools-common/build.gradle
Expand Up @@ -3,8 +3,6 @@ plugins {
id 'com.jfrog.bintray' version '1.8.4'
}

description 'Common utilities for the citygml4j based CityGML tools'

bintray {
user = project.hasProperty('bintrayUser') ? project.property('bintrayUser') : System.getenv('BINTRAY_USER')
key = project.hasProperty('bintrayApiKey') ? project.property('bintrayApiKey') : System.getenv('BINTRAY_API_KEY')
Expand Down
2 changes: 2 additions & 0 deletions citygml-tools-common/gradle.properties
@@ -0,0 +1,2 @@
version=1.0.0
description=Common utilities for the citygml4j based CityGML tools
2 changes: 0 additions & 2 deletions global-app-mover/build.gradle
Expand Up @@ -3,8 +3,6 @@ plugins {
id 'com.jfrog.bintray' version '1.8.4'
}

description 'citygml4j library to convert global appearances to local ones'

dependencies {
implementation project(':citygml-tools-common')
}
Expand Down
2 changes: 2 additions & 0 deletions global-app-mover/gradle.properties
@@ -0,0 +1,2 @@
version=1.0.0
description=citygml4j library to convert global appearances to local ones
2 changes: 0 additions & 2 deletions texture-clipper/build.gradle
Expand Up @@ -3,8 +3,6 @@ plugins {
id 'com.jfrog.bintray' version '1.8.4'
}

description 'citygml4j library to clip texture images'

dependencies {
implementation project(':citygml-tools-common')
implementation 'org.apache.commons:commons-imaging:1.0-SNAPSHOT'
Expand Down
2 changes: 2 additions & 0 deletions texture-clipper/gradle.properties
@@ -0,0 +1,2 @@
version=1.0.0
description=citygml4j library to clip texture images

0 comments on commit 9220583

Please sign in to comment.