forked from JakeWharton/flip-tables
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from Workiva/release-1.1.2-1
RM-142416 Release 1.1.2-1
- Loading branch information
Showing
13 changed files
with
295 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.git/ | ||
.gitignore | ||
.dockerignore | ||
.idea/ | ||
*/build/ | ||
*/out/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
## Purpose | ||
|
||
Brief description of the purpose of this change. | ||
|
||
## Solution | ||
|
||
High level overview of what was done. This is the roadmap for those who are going to CR. | ||
|
||
## Semantic Versioning (check one) | ||
|
||
- [ ] The following were changed in a non-backward compatible way and requires a major version bump: | ||
- *[link to the breaking change in the diff]* | ||
- [ ] Something public was added or changed in backward compatible way, this requires a minor version bump | ||
- [ ] No public changes nor new features (backwards-compatible refactor or bug fix), so this can be included in a patch | ||
release | ||
|
||
## How to QA | ||
|
||
- [ ] run the following related examples: **(fill in)** | ||
- [ ] Other necessary steps needed to fully exercise the solution should be added here. **(fill in)** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
version: 2 | ||
registries: | ||
maven-repository-workivaeast-jfrog-io-workivaeast-maven-prod: | ||
type: maven-repository | ||
url: https://workivaeast.jfrog.io/workivaeast/maven-prod | ||
username: "${{secrets.WORKIVA_ARTIFACTORY_JFROG_USERNAME}}" | ||
password: "${{secrets.WORKIVA_ARTIFACTORY_JFROG_PASSWORD}}" | ||
|
||
updates: | ||
- package-ecosystem: "gradle" | ||
directory: "/" | ||
registries: | ||
- maven-repository-workivaeast-jfrog-io-workivaeast-maven-prod | ||
schedule: | ||
interval: "weekly" | ||
day: sunday | ||
commit-message: | ||
prefix: fix | ||
prefix-development: chore | ||
include: scope |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
FROM amazoncorretto:8 AS build | ||
WORKDIR /build | ||
|
||
RUN yum install tar gzip -y | ||
|
||
COPY settings.gradle build.gradle gradlew ./ | ||
COPY gradle gradle | ||
|
||
# run to pull down the gradle wrapper and cache that on its own layer | ||
RUN ./gradlew --version | ||
|
||
COPY . . | ||
|
||
ARG GIT_BRANCH | ||
ARG GIT_TAG | ||
|
||
# Build the application. | ||
# | ||
RUN ./scripts/build.sh | ||
# Collect assembled jar for publishing | ||
ARG BUILD_ARTIFACTS_JAVA=/build/build/libs/*.jar | ||
|
||
# Generate Veracode Artifact | ||
RUN tar -cvzf /java.tar.gz /build/build/libs/ | ||
ARG BUILD_ARTIFACTS_VERACODE=/java.tar.gz | ||
|
||
# We only care about publishing a jar | ||
FROM scratch |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
version: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.