Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 0 additions & 23 deletions .circleci/config.yml

This file was deleted.

1 change: 0 additions & 1 deletion .coveralls.yml

This file was deleted.

43 changes: 43 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: Java CI with Maven

on:
push:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Setup settings.xml
uses: s4u/maven-settings-action@v3.0.0
with:
githubServer: false
servers: |
[{
"id": "github",
"username": "${{ github.actor }}",
"password": "${{ secrets.MAVEN_REPO_WRITE }}"
}]
- name: echo settings
run: cat /home/runner/.m2/settings.xml
- name: Deploy and Tag
run: bash scripts/deploy.sh ${{github.run_number}}

31 changes: 31 additions & 0 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-maven

# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

name: Java CI with Maven

on:
pull_request:
branches: [ "main" ]

jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: read
steps:
- uses: actions/checkout@v3
- name: Set up JDK 21
uses: actions/setup-java@v3
with:
java-version: '21'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml

27 changes: 3 additions & 24 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,26 +1,5 @@
*.*~
*.swp
# Ignore Gradle project-specific cache directory
.gradle
*.log
.DS_Store

**/build/*

**/.DS_Store

**/bin/**/*.class

#Eclipse Files
**/.classpath
**/.project
**/.settings/*
**/.springBeans

#Ignore .gitignore from subdirectories
*/.gitignore
/bin/
/.idea/
*.iml
*.ipr
*.iws
/out/
# Ignore Gradle build output directory
build
14 changes: 0 additions & 14 deletions .travis.yml

This file was deleted.

1 change: 1 addition & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
MIT License

Copyright (c) 2016 Farooq Khan
Copyright (c) 2024 mwensveen-nl

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
12 changes: 0 additions & 12 deletions Readme.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
[![Circle CI](https://circleci.com/gh/Jsondb/jsondb-core.svg?style=shield&circle-token=ead22be4576932974f9fda267a4cc31d883f5927)](https://circleci.com/gh/Jsondb/jsondb-core) [![Travis branch](https://img.shields.io/travis/Jsondb/jsondb-core/master.svg?maxAge=2592000?style=plastic&label=travisci)](https://travis-ci.org/Jsondb/jsondb-core) [![Coveralls branch](https://img.shields.io/coveralls/Jsondb/jsondb-core/master.svg?maxAge=2592000?style=plastic)](https://coveralls.io/github/Jsondb/jsondb-core?branch=master)

JsonDB is a pure java database that stores its data as Json Files.

A very small memory footprint, runs embedded within your java program.
Expand All @@ -10,13 +8,3 @@ Provides a Apache JxPath based query system.

Visit http://jsondb.io for detailed information about Jsondb, Why Jsondb and Using Jsondb




## Stargazers over time

[![Stargazers over time](https://starchart.cc/Jsondb/jsondb-core.svg)](https://starchart.cc/Jsondb/jsondb-core)




185 changes: 0 additions & 185 deletions build.gradle

This file was deleted.

Loading