Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Feature/datafiles with samples #17

Merged
merged 31 commits into from
Apr 10, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
9c62fa9
"\t" vs. " "
EHJ-52n Apr 9, 2014
c42925c
Add attribute to DataFile that are required for importing data file c…
EHJ-52n Apr 9, 2014
6c8c91e
Rename Configuration.isDateInfoExtractionSetupValid() to Configuratio…
EHJ-52n Apr 9, 2014
1444b7e
"\t" vs. " "
EHJ-52n Apr 9, 2014
352939a
Refactoring: rename method to be more generic
EHJ-52n Apr 9, 2014
f7c0fa9
add test for new Timestamp.enrichDateByOtherTimestamp(...)
EHJ-52n Apr 9, 2014
4270365
Fix documentation.
EHJ-52n Apr 9, 2014
b20d3c4
Add attributes for extracting sampleSize information
EHJ-52n Apr 9, 2014
bbd78f0
Rename sampleIdRegEx to sampleStartRegEx
EHJ-52n Apr 9, 2014
114993f
Added element to store multiple regular expressions to ignore lines w…
EHJ-52n Apr 9, 2014
c0aae19
add method to add and remove days from current timestamp incl. test
EHJ-52n Apr 9, 2014
72d60f5
Fix NPE in Timestamp.after() and Timestamp.before() caused by Timesta…
EHJ-52n Apr 9, 2014
485fd75
Refactoring: Timestamp.enrich*(..) => Timestamp.enrich(..)
EHJ-52n Apr 10, 2014
7fc3bb2
Fixed timzone problem with Timestamp.applyDayDelta(int)
EHJ-52n Apr 10, 2014
c7df7f0
Refactoring: make Timestamp.enrich(Timestamp) more generic to update …
EHJ-52n Apr 10, 2014
c54c993
Refactoring: SOS(Configuration)
EHJ-52n Apr 10, 2014
f6e8dcf
add todo
EHJ-52n Apr 10, 2014
5c56161
add handling of ignored columns to isNotEmpty(..)
EHJ-52n Apr 10, 2014
23faab5
Add feature to ignore lines by regular expression
EHJ-52n Apr 10, 2014
897987a
linecounter as field
EHJ-52n Apr 10, 2014
6bf454f
First implementation of handling sampled files with import strategy '…
EHJ-52n Apr 10, 2014
5275591
Fix logging
EHJ-52n Apr 10, 2014
45a9608
Fix bug with lastLine and sampleStartLine
EHJ-52n Apr 10, 2014
a37e47b
Fix bug with sample end handling
EHJ-52n Apr 10, 2014
510a5ee
Improve logging on level INFO
EHJ-52n Apr 10, 2014
ba26c89
Refactoring: rename datafile_configuration.xsd to import-configuratio…
EHJ-52n Apr 10, 2014
9542867
"\t" vs. " "
EHJ-52n Apr 10, 2014
afdcd10
add 'insertSweArrayObservationTimeoutBuffer' to configuration schema
EHJ-52n Apr 10, 2014
220f434
add RELEASE_NOTES for 'insertSweArrayObservationTimeoutBuffer'
EHJ-52n Apr 10, 2014
f0ac397
Implement support for "insertSweArrayObservationTimeoutBuffer"
EHJ-52n Apr 10, 2014
c29c756
add travis
EHJ-52n Apr 10, 2014
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
10 changes: 10 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
language: java
#notifications:
# email: false
jdk:
- openjdk6
- openjdk7
- oraclejdk7
# - oraclejdk8
install: true
script: mvn clean install
2 changes: 1 addition & 1 deletion 52n-sos-importer-bindings/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<configuration>
<schemaDirectory>src/main/resources</schemaDirectory>
<sourceSchemas>
<sourceSchema>datafile_configuration.xsd</sourceSchema>
<sourceSchema>import-configuration.xsd</sourceSchema>
</sourceSchemas>
<sourceGenerationDirectory>
target/generated/xmlbeans
Expand Down
Loading