Skip to content

Commit

Permalink
Release version 1.0.0
Browse files Browse the repository at this point in the history
Changelog
=========

Jack Stratton (1):
      Initial commit
  • Loading branch information
phroa committed May 12, 2016
1 parent d42ac8c commit 7063163
Show file tree
Hide file tree
Showing 6 changed files with 761 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ language: java
jdk:
- oraclejdk8
script:
- "./gradlew -i ass"
- "./gradlew -i licenseFormat shadowJar"
notifications:
email: false
deploy:
Expand Down
17 changes: 11 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
buildscript {
ext.kotlin_version = '1.0.1'

repositories {
mavenCentral()
jcenter()
maven {
url "https://plugins.gradle.org/m2/"
}
}

dependencies {
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "gradle.plugin.nl.javadude.gradle.plugins:license-gradle-plugin:0.12.1"
classpath 'com.github.jengelman.gradle.plugins:shadow:1.2.3'
}
}

group 'net.phroa.sponge'
version '0.0.1-SNAPSHOT'
version '1.0.0'

apply plugin: 'java'
apply plugin: 'com.github.hierynomus.license'
apply plugin: 'com.github.johnrengelman.shadow'

license {
header file('LICENSE_HEADER.txt')
Expand All @@ -36,5 +35,11 @@ repositories {

dependencies {
compile 'org.spongepowered:spongeapi:4.+'
testCompile group: 'junit', name: 'junit', version: '4.11'
compile 'org.flywaydb:flyway-core:4.+'
}

shadowJar {
dependencies {
include(dependency("org.flywaydb:.*:.*"))
}
}
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
Loading

0 comments on commit 7063163

Please sign in to comment.