Chips-n-Salsa Alternatives

Similar projects and alternatives to Chips-n-Salsa

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better Chips-n-Salsa alternative or higher similarity.

Chips-n-Salsa reviews and mentions

Posts with mentions or reviews of Chips-n-Salsa. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-11-30.
  • Deploy a Documentation Website for a Java Library Using GitHub Actions
    3 projects | dev.to | 30 Nov 2022
    name: docs on: push: branches: [ master ] paths: [ '**.java', '.github/workflows/docs.yml' ] pull_request: branches: [ master ] release: types: [created] workflow_dispatch: jobs: docs: runs-on: ubuntu-latest steps: - name: Checkout the repo uses: actions/checkout@v3 - name: Checkout the gh-pages branch uses: actions/checkout@v3 with: fetch-depth: 0 ref: gh-pages path: gh-pages - name: Set up JDK 17 uses: actions/setup-java@v3 with: distribution: 'adopt' java-version: '17' - name: Build docs with Maven run: mvn compile javadoc:javadoc - name: Copy to Documentation Website Location if: ${{ github.event_name == 'release' || github.event_name == 'workflow_dispatch' }} run: | rm -rf gh-pages/api cp -rf target/site/apidocs/. gh-pages/api - name: Tidy up the javadocs if: ${{ github.event_name == 'release' || github.event_name == 'workflow_dispatch' }} id: tidy uses: cicirello/javadoc-cleanup@v1 with: base-url-path: https://chips-n-salsa.cicirello.org/ path-to-root: gh-pages user-defined-block: | - name: Log javadoc-cleanup output if: ${{ github.event_name == 'release' || github.event_name == 'workflow_dispatch' }} run: | echo "modified-count = ${{ steps.tidy.outputs.modified-count }}" - name: Commit documentation changes without pushing yet if: ${{ github.event_name == 'release' || github.event_name == 'workflow_dispatch' }} run: | cd gh-pages if [[ `git status --porcelain` ]]; then git config --global user.name 'github-actions' git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com' git add -A git commit -m "Automated API website updates." fi cd .. - name: Generate the sitemap if: ${{ github.event_name == 'release' || github.event_name == 'workflow_dispatch' }} id: sitemap uses: cicirello/generate-sitemap@v1 with: base-url-path: https://chips-n-salsa.cicirello.org/ path-to-root: gh-pages - name: Output stats if: ${{ github.event_name == 'release' || github.event_name == 'workflow_dispatch' }} run: | echo "sitemap-path = ${{ steps.sitemap.outputs.sitemap-path }}" echo "url-count = ${{ steps.sitemap.outputs.url-count }}" echo "excluded-count = ${{ steps.sitemap.outputs.excluded-count }}" - name: Commit documentation website sitemap and push all commits if: ${{ github.event_name == 'release' || github.event_name == 'workflow_dispatch' }} run: | cd gh-pages if [[ `git status --porcelain` ]]; then git config --global user.name 'github-actions' git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com' git add -A git commit -m "Automated API website sitemap update." fi git push cd ..
  • Deploying Java Artifacts to Multiple Maven Repositories with GitHub Actions
    3 projects | dev.to | 2 Nov 2022
    View on GitHub
    3 projects | dev.to | 2 Nov 2022
    Website: https://chips-n-salsa.cicirello.org/
  • How to Patch the Deprecated set-output in GitHub Workflows and in Container Actions
    5 projects | dev.to | 26 Oct 2022
    The complete workflow file that this example is derived from is maven-publish.yml.
  • How to Use Maven Profiles to Selectively Activate Plugins and Other Configuration from the Command Line
    4 projects | dev.to | 19 Oct 2022
    Let's look at a real example, again from Chips-n-Salsa, where I publish artifacts of the library on both Maven Central as well as to GitHub Packages. We'll build up to the full example. First, consider the configuration below:
  • How to Use the Maven Shade Plugin if Your Project Uses Java Platform Module System
    2 projects | dev.to | 5 Oct 2022
    To see a live example, you can consult the pom.xml of one of my projects. Here is the GitHub repository:
  • Configuring GitHub's Linguist to Improve Repository Language Reporting
    5 projects | dev.to | 31 Aug 2022
    GitHub Language Chart From https://github.com/cicirello/Chips-n-Salsa
  • Ahead-of-time JitPack Builds with Custom GroupId via GitHub Actions
    3 projects | dev.to | 11 Aug 2022
    On each push to the default branch (assumed main in this example), I'm using the following workflow (just fill in the details of your reverse domain, and default branch name, where relevant). This sample workflow makes the same assumptions as the previous section (e.g., that your reversed domain is com.example, etc). See jitpack-build.yml in one of my repositories for a live example.
    3 projects | dev.to | 11 Aug 2022
    Website: https://chips-n-salsa.cicirello.org/
  • How to Configure JitPack for Recent JDK Versions
    2 projects | dev.to | 4 Aug 2022
    Important Note: Because of the way JitPack essentially builds a snapshot of your repository, even for release builds, the jitpack.yml must be present within the specific snapshot of your repository in order to apply. For example, for the library that this post is based upon, Chips-n-Salsa, the first release where the repository contains the configuration file is 5.0.1, so JitPack will fail to build any prior version, although earlier versions are available via Maven Central and GitHub Packages. Likewise, if you specify any commit hash prior to that of the commit where that configuration file was introduced, the JitPack build will also fail.
  • A note from our sponsor - InfluxDB
    www.influxdata.com | 16 Apr 2024
    Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality. Learn more →

Stats

Basic Chips-n-Salsa repo stats
15
52
8.5
4 days ago
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com