Skip to content
This repository has been archived by the owner on Jun 25, 2021. It is now read-only.

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Olaf Neumann committed Sep 4, 2018
0 parents commit fb7956d
Show file tree
Hide file tree
Showing 476 changed files with 96,665 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# leave all classpath and project handling to Maven
# ==> do not checkin Eclipse .project and .classpath files
.project
.classpath
.factorypath
.externalToolBuilders

# leave all Eclipse settings locally
# Users must checkin a settings file explicitly to share it's content via version control
# e.g. org.eclipse.jdt.ui.prefs, org.eclipse.jdt.core.prefs
.settings

# do not checkin build tool specific files
.mvn
.gradle

# do not check-in generated java sources
*_.java
.apt_generated

# do not check-in binaries
target/
build/
bin/
*.class

# do not checkin folders named workspace
workspace

# do not check-in generated web deployment descriptors
*/WebContent/WEB-INF/web.xml
*/src/main/webapp/META-INF/MANIFEST.MF

# do not check-in other generated files
rebel.xml

# clearcase migration
.copyarea.db
17 changes: 17 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>oversigt-parent</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.m2e.core.maven2Builder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.m2e.core.maven2Nature</nature>
</natures>
</projectDescription>
2 changes: 2 additions & 0 deletions .settings/org.eclipse.core.resources.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
eclipse.preferences.version=1
encoding/<project>=UTF-8
4 changes: 4 additions & 0 deletions .settings/org.eclipse.m2e.core.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
activeProfiles=
eclipse.preferences.version=1
resolveWorkspaceProjects=true
version=1
22 changes: 22 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Copyright (c) 2016 Shopify -- most UI-related stuff such as JS sources, CSS styles, etc
Copyright (c) 2016 Andrei Varabyeu -- some backend-core related stuff such java sources, maven configs, etc
Copyright (c) 2018 Hapag-Lloyd AG -- most backend relatated stuff like storage, security, configuration UI

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
45 changes: 45 additions & 0 deletions core/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# leave all classpath and project handling to Maven
# ==> do not checkin Eclipse .project and .classpath files
.project
.classpath
.factorypath
.externalToolBuilders

# leave all Eclipse settings locally
# Users must checkin a settings file explicitly to share it's content via version control
# e.g. org.eclipse.jdt.ui.prefs, org.eclipse.jdt.core.prefs
.settings

# do not checkin build tool specific files
.mvn
.gradle

# do not check-in generated java sources
*_.java
.apt_generated

# do not check-in binaries
target/
build/
bin/
*.class

# do not checkin folders named workspace
workspace

# do not check-in generated web deployment descriptors
*/WebContent/WEB-INF/web.xml
*/src/main/webapp/META-INF/MANIFEST.MF

# do not check-in other generated files
rebel.xml

# clearcase migration
.copyarea.db


# Oversigt specific
/log/
/data/
/lib-user/*.jar
/addons/*.jar
5 changes: 5 additions & 0 deletions core/addons/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Oversigt Addons

Place addons for Oversigt in this directory. At startup Oversigt will automatically scan all JAR files in this directory for additional event sources and they will be made available for user.


5 changes: 5 additions & 0 deletions core/lib-user/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# user-lib
This folder will be used to add custom libraries to oversigt, e.g. JDBC drivers.


All necessary libraries for compile must be included using the project's ``pom.xml``. You may use this folder for development purpose or if you developed an extension that should be available in the classpath of oversigt at runtime.
Loading

0 comments on commit fb7956d

Please sign in to comment.