1
0
Fork 0

Set correct group and version

This commit is contained in:
John Ahlroos 2021-07-05 10:32:53 +03:00
parent 652cf12801
commit 906e6aea38
Signed by: john
GPG Key ID: 258D0F70DB84CD5D
2 changed files with 6 additions and 18 deletions

View File

@ -46,19 +46,4 @@ steps:
trigger:
ref:
include:
- refs/tags/**
services:
- name: docker
image: docker:dind
privileged: true
volumes:
- name: dockersock
path: /var/run
volumes:
- name: dockersock
temp: {}
- name: cache
host:
path: /tmp/hits-drone-cache
- refs/tags/**

View File

@ -2,8 +2,11 @@ plugins {
id "com.google.cloud.tools.jib" version "3.1.1" apply false
}
group 'com.devsoap.parsers'
version '1.0'
allprojects {
version = findProperty('BUILD_VERSION') ?: 'latest'
group = "com.devsoap"
}
subprojects {
apply plugin: 'java'