Skip to content

Commit 6160ef2

Browse files
author
Eric Kerwin
committedJan 15, 2018
changes to use the latest gradle plugin
1 parent 0c95e7c commit 6160ef2

File tree

2 files changed

+13
-33
lines changed

2 files changed

+13
-33
lines changed
 

‎build.gradle

+13-28
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,35 @@
11
import org.apache.tools.ant.filters.ReplaceTokens
22

33
buildscript {
4-
repositories {
5-
mavenCentral()
4+
repositories {
65
jcenter()
7-
}
8-
dependencies {
9-
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.1.RELEASE")
6+
mavenCentral()
7+
maven { url 'https://plugins.gradle.org/m2/' }
8+
}
9+
10+
dependencies {
11+
classpath 'com.blackducksoftware.integration:common-gradle-plugin:0.0.+'
12+
classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.5.8.RELEASE'
1013
classpath 'com.bmuschko:gradle-docker-plugin:3.0.6'
11-
}
14+
}
1215
}
1316

1417
plugins {
1518
id 'groovy'
16-
id 'eclipse'
1719
id 'org.springframework.boot' version '1.5.8.RELEASE'
1820
id 'maven-publish'
19-
id "com.jfrog.artifactory" version '4.5.4'
2021
}
2122

22-
apply plugin: 'com.bmuschko.docker-remote-api'
23+
version = '4.3.1-SNAPSHOT'
2324

24-
compileJava.options.encoding = 'UTF-8'
25+
apply plugin: 'com.blackducksoftware.integration.solution'
26+
apply plugin: 'com.bmuschko.docker-remote-api'
2527

2628
import com.bmuschko.gradle.docker.tasks.image.Dockerfile
2729
import com.bmuschko.gradle.docker.tasks.image.DockerBuildImage
2830

29-
tasks.withType(JavaCompile) { options.encoding = 'UTF-8' }
30-
tasks.withType(GroovyCompile) { options.encoding = 'UTF-8' }
31-
32-
group = 'com.blackducksoftware.integration'
33-
version = '4.3.1-SNAPSHOT'
34-
description = ''
3531
String hubDockerImageName = 'hub-docker-inspector'
3632

37-
sourceCompatibility = 1.7
38-
targetCompatibility = 1.7
39-
4033
def linuxFlavorsDpkg = ["ubuntu:16.04"]
4134
def linuxFlavorsRpm = ["centos:7.3.1611"]
4235
def linuxFlavorsApk = ["alpine:3.5"]
@@ -458,15 +451,7 @@ publishing {
458451

459452
artifactory {
460453
publish {
461-
contextUrl = artifactoryUrl
462-
repository {
463-
repoKey = artifactoryRepo
464-
username = artifactoryDeployerUsername
465-
password = artifactoryDeployerPassword
466-
}
467-
defaults {
468-
publications ('mavenJava')
469-
}
454+
defaults { publications ('mavenJava') }
470455
}
471456
}
472457

‎gradle.properties

-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1 @@
11
org.gradle.jvmargs=-XX:MaxPermSize=8g -Xmx8g
2-
3-
artifactoryUrl=https://prd-eng-repo02.dc2.lan/artifactory
4-
artifactoryRepo=bds-integrations-snapshot
5-
artifactoryDeployerUsername=
6-
artifactoryDeployerPassword=

0 commit comments

Comments
 (0)