Skip to content

Feature/refactor reporter api #45

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 25 commits into from
Mar 11, 2018
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
19782c3
First attempt to refactor and improve Reporter API
pesse Feb 10, 2018
aa83de6
We want to have description for all our reporters.
pesse Feb 11, 2018
fdb940b
Started to rewrite the whole reporter API
pesse Feb 27, 2018
2593fd7
Refactored Reporter to be more clear
pesse Feb 28, 2018
e3de8de
Refactored Reporter, ReporterFactory and OutputBuffers to be more
pesse Feb 28, 2018
95d3fd7
Keeping compatibility with all utPLSQL 3.x-versions
pesse Mar 1, 2018
1514834
Cleanup of similar OutputBuffers
pesse Mar 1, 2018
facc543
java-api should be compatible with all major core versions
pesse Mar 1, 2018
2cbd11f
ReporterFactory is no longer a singleton
pesse Mar 6, 2018
0183367
Bumped version to 3.1.0
pesse Mar 6, 2018
d255454
We should convert the Reporter-ID correctly I guess...
pesse Mar 7, 2018
6bd7fda
Delete static resources, we want to get those dynamically during build
pesse Mar 7, 2018
fe22a70
New public interface for ReporterFactory and CoreReporters
pesse Mar 7, 2018
41ef81c
Maybe we need this test as IntegrationTest (after package-phase)
pesse Mar 7, 2018
14689ae
Revert "Maybe we need this test as IntegrationTest (after package-pha…
pesse Mar 7, 2018
09701b8
Trying to get more info about the NPE
pesse Mar 7, 2018
7ea7a84
Full error stack from maven
pesse Mar 7, 2018
6c02223
Some tracer bullets... can't reproduce the NPE locally.
pesse Mar 7, 2018
0bddb6d
let's just get that stacktrace
pesse Mar 7, 2018
a328ad9
mavens resource-plugin is skipping all resources if the folder is empty
pesse Mar 7, 2018
c52e259
Semms it has something to do with order of resource-phase
pesse Mar 7, 2018
d7af0fc
Added 3.1.0 to test-matrix
pesse Mar 8, 2018
055b205
Try to get actual develop-branch for test-matrix
pesse Mar 8, 2018
6648276
Naming and shell stuff
pesse Mar 8, 2018
9a70d24
First simple version of ReporterInspector working
pesse Mar 8, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added 3.1.0 to test-matrix
  • Loading branch information
pesse committed Mar 8, 2018
commit d7af0fc569bc3fa6fbfe244d1471a4d867a61967
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ env:
- UTPLSQL_VERSION="v3.0.2"
- UTPLSQL_VERSION="v3.0.3"
- UTPLSQL_VERSION="v3.0.4"
- UTPLSQL_VERSION="v3.1.0"

cache:
directories:
Expand All @@ -44,7 +45,7 @@ before_script:
- cp .travis/settings.xml $MAVEN_CFG/settings.xml

script:
- mvn verify -B -e
- mvn verify -B

before_deploy:
- if [ ! -z "$TRAVIS_TAG" ]; then VERSION=$(tr -d "/v/" <<<$TRAVIS_TAG); mvn org.codehaus.mojo:versions-maven-plugin:2.1:set -DnewVersion=${VERSION}; fi
Expand Down