diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..7b4eecc --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2023 Bitweb + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, 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. \ No newline at end of file diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml deleted file mode 100644 index db92aa6..0000000 --- a/bitbucket-pipelines.yml +++ /dev/null @@ -1,33 +0,0 @@ -image: gradle:7.5.1-jdk11 - -clone: - depth: full # SonarCloud scanner needs the full history to assign issues properly - -definitions: - steps: - - step: &build - name: Build - caches: - - gradle - script: - - ./deploy/injectGradleCredentials.sh "$NEXUS_USERNAME" "$NEXUS_PASSWORD" "gradle.properties" - - gradle jar --no-daemon - artifacts: - - build/libs/*.jar - - step: &buildAndPublish - name: Build and publish - trigger: manual - caches: - - gradle - script: - - ./deploy/injectGradleCredentials.sh "$NEXUS_USERNAME" "$NEXUS_PASSWORD" "gradle.properties" - - gradle publish --no-daemon - -pipelines: - pull-requests: - '**': - - step: *build - branches: - master: - - step: *build - - step: *buildAndPublish diff --git a/library.gradle b/library.gradle index 54f4c44..34cc761 100644 --- a/library.gradle +++ b/library.gradle @@ -17,7 +17,6 @@ publishing { name = 'Bitweb Java Test Library' description = 'Bitweb Spring Boot Java Test Library' url = 'https://github.com/BitWeb/java-test-core-lib' - //properties = [] licenses { license { name = 'MIT License' @@ -26,10 +25,20 @@ publishing { } developers { developer { - id = 'erichjag' + id = 'Jorich' name = 'Erich Jagomägis' email = 'erich@bitweb.ee' } + developer { + id = 'rammrain' + name = 'Rain Ramm' + email = 'rain@bitweb.ee' + } + developer { + id = 'pr11t' + name = 'Priit Pärkson' + email = 'priit.parkson@bitweb.ee' + } } scm { connection = 'scm:https://github.com/BitWeb/java-test-core-lib.git'