Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
task wrapper(type: Wrapper) {
gradleVersion = '1.12'
}

apply plugin: 'java'
apply plugin: 'maven-publish'

group = 'org.klomp'
version = '1.0.0-SNAPSHOT'

publishing {
publications {
mavenJava(MavenPublication) {
artifactId 'cassowary'
from components.java
}
}
repositories {
maven {
credentials {
username project.hasProperty('mavenUsername') ? mavenUsername : null
password project.hasProperty('mavenPassword') ? mavenPassword : null
}
url project.hasProperty('mavenUrl') ? mavenUrl : null
}
}
}

repositories {
mavenLocal()
mavenCentral()
}

tasks.withType(Compile) {
options.encoding = "UTF-8"
options.compilerArgs << "-Xlint:unchecked"
}

dependencies {
compile "junit:junit:4.7"
}

Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
6 changes: 6 additions & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#Mon Oct 20 10:31:47 CEST 2014
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-1.12-bin.zip
164 changes: 164 additions & 0 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

90 changes: 90 additions & 0 deletions gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading