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
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

*.iml

# Gradle outputs

/.gradle
build

## Directory-based project format:
.idea/
# if you remove the above rule, at least ignore the following:
Expand Down
12 changes: 7 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ buildscript {
}
}

def versionDate = new SimpleDateFormat('yyyy-MM-dd\'T\'HH-mm-ss').format(new Date())

subprojects {

apply plugin: 'idea'
Expand All @@ -42,7 +44,7 @@ subprojects {
apply plugin: 'propdeps-eclipse'
apply plugin: "com.jfrog.bintray"

version = System.env.TRAVIS_TAG ? PROJECT_VERSION : PROJECT_VERSION + '-' + new SimpleDateFormat('yyyy-MM-dd\'T\'HH-mm-ss').format(new Date())
version = System.env.TRAVIS_TAG ? PROJECT_VERSION : PROJECT_VERSION + '-' + versionDate
group = PROJECT_GROUP

repositories {
Expand Down Expand Up @@ -137,8 +139,8 @@ subprojects {
vcsUrl = PROJECT_GIT_REPO_URL
}
}
}

task wrapper(type: Wrapper) {
gradleVersion = "${GRADLE_WRAPPER_VER}"
}
}
task wrapper(type: Wrapper) {
gradleVersion = "${GRADLE_WRAPPER_VER}"
}
8 changes: 5 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#

PROJECT_VERSION = 2.1.0
PROJECT_VERSION = 2.2.0
PROJECT_GROUP = com.embedler.moon.graphql.boot
PROJECT_NAME = spring-boot-graphql
PROJECT_DESC = GraphQL Spring Framework Boot
Expand All @@ -38,9 +38,11 @@ TARGET_COMPATIBILITY = 1.8

LIB_SPRING_GRAPHQL_COMMON_VER = 2.1.+
LIB_JUNIT_VER = 4.12
LIB_SPRING_CORE_VER = 4.2.4.RELEASE
LIB_SPRING_BOOT_VER = 1.3.3.RELEASE
LIB_SPRING_CORE_VER = 4.3.3.RELEASE
LIB_SPRING_BOOT_VER = 1.4.1.RELEASE
LIB_COMMON_UPLOAD = 1.3.1
LIB_WEBJARS_GRAPHIQL_VER = 0.3.1-1
LIB_WEBJARS_REACT_VER = 0.14.7

GRADLE_WRAPPER_VER = 2.9

Expand Down
Empty file modified gradlew
100644 → 100755
Empty file.
9 changes: 0 additions & 9 deletions graphiql-spring-boot-autoconfigure/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,6 @@
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
buildscript {
repositories {
maven { url "https://plugins.gradle.org/m2/" }
}
dependencies {
classpath "com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6"
}
}

dependencies{
compile "org.webjars:react:$LIB_WEBJARS_REACT_VER"
}
49 changes: 0 additions & 49 deletions graphiql-spring-boot-autoconfigure/gradle.properties

This file was deleted.

Binary file not shown.

This file was deleted.

160 changes: 0 additions & 160 deletions graphiql-spring-boot-autoconfigure/gradlew

This file was deleted.

90 changes: 0 additions & 90 deletions graphiql-spring-boot-autoconfigure/gradlew.bat

This file was deleted.

Loading