Skip to content

Commit

Permalink
Repo reorg (#223)
Browse files Browse the repository at this point in the history
* remove gcm taskit demo

* update lesson parent pom

* update readme

* parent pom changes

* simulation pom update

* update workflows

* dependabot file

* fix typo in workflow

* undo changes to demoes pom

* prep pipeline pom

* remove duplicate pattern

* remove pipeline from workflows

* remove pipeline from parent pom
  • Loading branch information
bischoffz authored Apr 17, 2024
1 parent 0e92ae5 commit 46f2b57
Show file tree
Hide file tree
Showing 31 changed files with 428 additions and 21,967 deletions.
30 changes: 30 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "maven" # See documentation for possible values
directory: "/" # Location of package manifests
schedule:
interval: "daily"
target-branch: "dev"
open-pull-requests-limit: 10
groups:
standard-plugins:
patterns:
- "org.codehaus.mojo:flatten-maven-plugin"
- "org.apache.maven.plugins*"
deploy-plugins:
patterns:
- "org.sonatype.central"
dependencies:
patterns:
- "org.apache.commons:commons-math3"
- "net.jcip:jcip-annotations"
- "gov.hhs.aspr.ms.util"
test-dependencies:
patterns:
- "org.jacoco*"
- "org.junit.jupiter*"
4 changes: 2 additions & 2 deletions .github/workflows/release_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ jobs:
distribution: 'temurin'

- name: Build GCM
run: mvn clean install -Prelease --file pom.xml
run: mvn clean install -Pjavadoc --file pom.xml

- name: Get Version
- name: Get GCM Version
run: |
echo "version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout --file pom.xml)" >> "$GITHUB_ENV"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release_pr_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ jobs:
java-version: '17'
distribution: 'temurin'

- name: Get Version
- name: Get GCM Version
run: |
echo "version=$(mvn help:evaluate -Dexpression=project.version -q -DforceStdout --file pom.xml)" >> "$GITHUB_ENV"
- name: Version Is Snapshot
if: ${{ endsWith(env.version, 'SNAPSHOT') }}
run: |
echo "::error Version is a SNAPSHOT. Update version to proper version."
echo "Version is a SNAPSHOT version. Update version to proper version."
exit 1
- name: Build GCM
run: mvn clean install -Prelease --file pom.xml

run: mvn clean install -Pjavadoc,jacoco --file pom.xml
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive
# - name: Update dependency graph
# uses: advanced-security/maven-dependency-submission-action@571e99aab1055c2e71a1e2309b9691de18d6b7d6
327 changes: 0 additions & 327 deletions demos/gcm-taskit/.gitignore

This file was deleted.

Loading

0 comments on commit 46f2b57

Please sign in to comment.