Skip to content

Commit

Permalink
Prepare DHuS Distribution 2.0.0-osf
Browse files Browse the repository at this point in the history
  • Loading branch information
Thibaud Degueurce committed Mar 8, 2019
1 parent 3b95fdf commit c1bc9de
Show file tree
Hide file tree
Showing 12 changed files with 1,242 additions and 747 deletions.
66 changes: 66 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,69 @@
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so

# Packages #
############
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip

# Logs and databases #
######################
*.log
*.sql
*.sqlite

# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
ehthumbs.db
Thumbs.db

# IDE files #
#############
.~lock.*
.buildpath

# Netbeans
nbproject
nbactions.xml
nb-configuration.xml

# Eclipse
.classpath
.project
.settings/

# Vi
*.swp

# Intellij
.idea/
*.iml
*.iws

# Maven
/target/

# others
/etc/rules/
/etc/task_tables/
/etc/conf/menu.json
/etc/conf/appconfig.json
7 changes: 7 additions & 0 deletions assembly/assembly.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,13 @@
<useProjectArtifact>false</useProjectArtifact>
<outputDirectory>lib</outputDirectory>
<scope>runtime</scope>
<!-- Exclude some artifacts that are not shown in the dependency tree, but still present -->
<excludes>
<exclude>org.slf4j:jcl-over-slf4j</exclude>
<exclude>org.slf4j:jul-to-slf4j</exclude>
<exclude>org.slf4j:slf4j-log4j12</exclude>
<exclude>log4j:log4j</exclude>
</excludes>
</dependencySet>
</dependencySets>
</assembly>
16 changes: 9 additions & 7 deletions etc/conf/menu.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
{"sections":[
{
"title":"account",
"icon":"exit-to-app",
"icon":"perm-identity",
"component":"login-container",
"width":"500px",
"width":"250px",
"remoteUrl":""
,"maxInstances":"1"
},
{
"title":"search",
"title":"Search Results",
"icon":"search",
"component":"combo-search-container",
"width":"1500px",
"component":"owc-combo-component",
"width":"1000px",
"remoteUrl":""
,"maxInstances":"2"
},
{
"title":"Data Visualization Components",
"title":"Dashboard",
"icon":"assessment",
"component":"dataviz-container",
"width":"500px",
Expand All @@ -24,7 +26,7 @@
"title":"Settings",
"icon":"settings",
"component":"settings-panel",
"width":"500px",
"width":"280px",
"remoteUrl":""
},
]}
Loading

0 comments on commit c1bc9de

Please sign in to comment.