Skip to content

Commit

Permalink
Use creditcard number v3.0.0, and use Maven to build
Browse files Browse the repository at this point in the history
  • Loading branch information
sualeh committed Apr 2, 2021
1 parent c0c8764 commit 0359be8
Show file tree
Hide file tree
Showing 20 changed files with 544 additions and 709 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @sualeh
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
21 changes: 0 additions & 21 deletions .github/workflows/build.yml

This file was deleted.

6 changes: 1 addition & 5 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches: master
schedule:
- cron: '0 14 * * 1'
- cron: '0 23 * * 1'

jobs:
analyse:
Expand All @@ -14,10 +14,6 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
fetch-depth: 2

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
26 changes: 0 additions & 26 deletions .github/workflows/publish.yml

This file was deleted.

45 changes: 45 additions & 0 deletions .github/workflows/quick_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Quick Build

on: push

jobs:
build:
name: Quick build
runs-on: ubuntu-latest
steps:

# SETUP BUILD ENVIRONMENT
- id: cache-m2
name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- id: checkout-code
name: Checkout code
uses: actions/checkout@v2
- id: setup-jdk
name: Set up JDK
uses: actions/setup-java@v1
with:
java-version: 8
- id: show-environment
name: Show environment
run: |
# Show environment
echo github.repository: ${{ github.repository }}
echo github.ref: ${{ github.head_ref || github.ref }}
echo github.sha: ${{ github.sha }}
mvn -v
cat ~/.m2/settings.xml
# BUILD AND TEST
- id: build-test
name: Build all modules and run tests
run: |
# Build
mvn \
--no-transfer-progress \
--batch-mode \
package
98 changes: 98 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
name: Create Release

on:
workflow_dispatch:
push:
branches-ignore:
- '*'
tags:
- v[0-9]+.[0-9]+.[0-9]+
- v[0-9]+.[0-9]+.[0-9]+-[A-Z]

jobs:
build:
name: Create Release
runs-on: ubuntu-latest
steps:

# SETUP BUILD ENVIRONMENT
- id: cache-m2
name: Cache Maven packages
uses: actions/cache@v2
with:
path: ~/.m2
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- id: checkout-code
name: Checkout code
uses: actions/checkout@v2
- id: setup-jdk
name: Setup JDK
uses: actions/setup-java@v1
with:
java-version: 8
server-id: sonatype-nexus
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
- id: show-environment
name: Show environment
run: |
# Show environment
echo github.repository: ${{ github.repository }}
echo github.ref: ${{ github.head_ref || github.ref }}
echo github.sha: ${{ github.sha }}
mvn -v
cat ~/.m2/settings.xml
# BUILD FOR DISTRIBUTION
- id: build
name: Build and test for distribution
run: |
# Build
mvn \
--no-transfer-progress \
--batch-mode \
install
# CREATE GITHUB RELEASE AND ADD ASSETS
- id: create-release
name: Create GitHub release
uses: actions/create-release@latest
if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body: |
Credit Card Number ${{ github.event.release.tag_name }} release at last commit ${{ github.sha }}
draft: false
prerelease: false

# PUBLISH TO CENTRAL REPOSITORY
- id: install-secret-key
name: Install secret key
if: startsWith(github.ref, 'refs/tags/')
# Note: OSSRH_GPG_SECRET_KEY is exported using gpg --export-secret-keys -a <keyid>
# and has newlines substituted with a literal \n
run: |
# Install secret key
cat <(echo -e "${{ secrets.OSSRH_GPG_SECRET_KEY }}") | gpg --batch --import
gpg --list-secret-keys --keyid-format LONG
- id: publish-to-central
name: Publish to Central Repository
if: startsWith(github.ref, 'refs/tags/')
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}
run: |
# Publish to Central Repository
export GPG_TTY=$(tty)
mvn \
--no-transfer-progress \
--batch-mode \
-Ddistrib \
-Dmaven.javadoc.skip=false \
-Dskip.signing.artifacts=false \
-Dgpg.passphrase=${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }} \
clean deploy
128 changes: 0 additions & 128 deletions build.gradle

This file was deleted.

Binary file removed gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
5 changes: 0 additions & 5 deletions gradle/wrapper/gradle-wrapper.properties

This file was deleted.

Loading

0 comments on commit 0359be8

Please sign in to comment.