Skip to content

Commit

Permalink
Merge branch 'master' of github.com:VitexSoftware/jaspercompiler
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitexus committed Feb 3, 2021
2 parents d4373f9 + cd9856c commit a5d35f5
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 4 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: Java CI with Maven

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven
run: mvn -B package --file pom.xml
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ Commandline Jasper Compiler

Simple tool able to comple FlexiBee customs reports into given destination

jaspercompiler is used in https://github.com/VitexSoftware/FlexiBee-Tools by its report uploader **upreport**

Usage
-----

Expand All @@ -13,12 +15,10 @@ call it like this:
```shell
jaspercompiler /path/to/report.jrxml
```
to build **/path/to/report.rasper**
to build **/path/to/report.jasper**

also you can specify another destination (directory or filepath) as second parameter.



Installation
------------

Expand All @@ -28,4 +28,4 @@ echo "deb http://repo.vitexsoftware.cz $(lsb_release -sc) main" | sudo tee /etc/
sudo wget -O /etc/apt/trusted.gpg.d/vitexsoftware.gpg http://repo.vitexsoftware.cz/keyring.gpg
sudo apt update
sudo apt install jaspercompiler
```
```
24 changes: 24 additions & 0 deletions maven.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven

name: Java CI with Maven

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Maven
run: mvn -B package --file pom.xml

0 comments on commit a5d35f5

Please sign in to comment.