|
1 | 1 | import org.apache.tools.ant.filters.ReplaceTokens
|
2 | 2 |
|
3 | 3 | buildscript {
|
4 |
| - repositories { |
5 |
| - mavenCentral() |
| 4 | + repositories { |
6 | 5 | 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' |
10 | 13 | classpath 'com.bmuschko:gradle-docker-plugin:3.0.6'
|
11 |
| - } |
| 14 | + } |
12 | 15 | }
|
13 | 16 |
|
14 | 17 | plugins {
|
15 | 18 | id 'groovy'
|
16 |
| - id 'eclipse' |
17 | 19 | id 'org.springframework.boot' version '1.5.8.RELEASE'
|
18 | 20 | id 'maven-publish'
|
19 |
| - id "com.jfrog.artifactory" version '4.5.4' |
20 | 21 | }
|
21 | 22 |
|
22 |
| -apply plugin: 'com.bmuschko.docker-remote-api' |
| 23 | +version = '4.3.1-SNAPSHOT' |
23 | 24 |
|
24 |
| -compileJava.options.encoding = 'UTF-8' |
| 25 | +apply plugin: 'com.blackducksoftware.integration.solution' |
| 26 | +apply plugin: 'com.bmuschko.docker-remote-api' |
25 | 27 |
|
26 | 28 | import com.bmuschko.gradle.docker.tasks.image.Dockerfile
|
27 | 29 | import com.bmuschko.gradle.docker.tasks.image.DockerBuildImage
|
28 | 30 |
|
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 = '' |
35 | 31 | String hubDockerImageName = 'hub-docker-inspector'
|
36 | 32 |
|
37 |
| -sourceCompatibility = 1.7 |
38 |
| -targetCompatibility = 1.7 |
39 |
| - |
40 | 33 | def linuxFlavorsDpkg = ["ubuntu:16.04"]
|
41 | 34 | def linuxFlavorsRpm = ["centos:7.3.1611"]
|
42 | 35 | def linuxFlavorsApk = ["alpine:3.5"]
|
@@ -458,15 +451,7 @@ publishing {
|
458 | 451 |
|
459 | 452 | artifactory {
|
460 | 453 | 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') } |
470 | 455 | }
|
471 | 456 | }
|
472 | 457 |
|
|
0 commit comments