Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
starting work on making the symmetric-web project a generic configura…
…ble project with a dashboard.
  • Loading branch information
chenson42 committed Jun 15, 2008
1 parent 54238ed commit 1c6084f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 11 deletions.
8 changes: 0 additions & 8 deletions symmetric-web/pom.xml
Expand Up @@ -43,14 +43,6 @@
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty</artifactId>
</exclusion>
<exclusion>
<groupId>foxtrot</groupId>
<artifactId>foxtrot</artifactId>
</exclusion>
<exclusion>
<groupId>tablelayout</groupId>
<artifactId>TableLayout</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
Expand Down
6 changes: 6 additions & 0 deletions symmetric-web/src/main/resources/symmetric-root-init.sql
@@ -0,0 +1,6 @@
insert into sym_node_group values ('ROOT','');
insert into sym_node_group values ('NODE','');
insert into sym_node_group_link values ('NODE','ROOT', 'P');
insert into sym_node_group_link values ('ROOT','NODE', 'W');
insert into sym_node values ('00000', 'ROOT', '00000', 1, null, null, null, null, null, current_timestamp, null);
insert into sym_node_identity values ('00000');
9 changes: 6 additions & 3 deletions symmetric-web/src/main/resources/symmetric.properties
@@ -1,5 +1,8 @@
db.jndi.name=java:/jdbc/SymmetricDS
engine.name=Root
engine.name=ROOT
my.url=
group.id=test-root-group
external.id=00000
group.id=ROOT
external.id=00000
auto.config.registration.svr.sql.script=/test-root-init.sql
start.pull.job=false
start.push.job=false

0 comments on commit 1c6084f

Please sign in to comment.