-
Notifications
You must be signed in to change notification settings - Fork 341
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Conserta o build Conserta o build * Maven mirror com certificado inválido Maven mirror com certificado inválido * Somente openjdk Somente openjdk * ajuste para compilar com jdk11 * ajusta o compilador do jasperreports plugin * configura o build para jdk11 * jasperreporsts 6.1.0 * maven-compiler 3.8.1 * maven 3.8.2 e desabilita bloqueio do uso HTTP * Conserta java.lang.NoClassDefFoundError: javax/xml/bind/JAXBException * Conserta java.lang.NoClassDefFoundError: com/fasterxml/jackson/databind/JsonNode * ajuste pois o Travis está com uma versão openjdk11 antiga * incorpora a sugestão feita no PR #275 * Rervert parcialmente o o commit "desabilita bloqueio do uso HTTP" O projeto jasperreports mantido pelo JasperSoft disponibilizou um repositório com HTTPS * substitui travis por github workflow
- Loading branch information
1 parent
619d3cf
commit 7d4484b
Showing
5 changed files
with
235 additions
and
186 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,24 @@ | ||
name: Java CI | ||
on: [push] | ||
env: | ||
MAVEN_OPTS: -Dmaven.artifact.threads=256 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup Java JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'zulu' | ||
java-version: 11 | ||
- name: 'Cache Maven packages' | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.m2 | ||
key: 'cache' | ||
restore-keys: 'cache' | ||
- name: 'Build with Maven' | ||
run: mvn -B install --file pom.xml | ||
- name: 'Remove Snapshots Before Caching' | ||
run: find ~/.m2 -name '*SNAPSHOT' | xargs rm -Rf |
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,24 @@ | ||
name: Pull Request | ||
on: [pull_request] | ||
env: | ||
MAVEN_OPTS: -Dmaven.artifact.threads=256 -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Setup Java JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'zulu' | ||
java-version: 11 | ||
- name: 'Cache Maven packages' | ||
uses: actions/cache@v4 | ||
with: | ||
path: ~/.m2 | ||
key: 'cache' | ||
restore-keys: 'cache' | ||
- name: 'Build with Maven' | ||
run: mvn -B install --file pom.xml | ||
- name: 'Remove Snapshots Before Caching' | ||
run: find ~/.m2 -name '*SNAPSHOT' | xargs rm -Rf |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.