Changeset 3663 for XerialJ/trunk

Show
Ignore:
Timestamp:
01/12/10 17:58:21 (2 years ago)
Author:
leo
Message:

upgrade

Location:
XerialJ/trunk/xerial-wiki-server
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • XerialJ/trunk/xerial-wiki-server/config/common.silk

    r3658 r3663  
    1 %silk(version:1.0) 
    21 
    3 # The version number of this configuration file format 
    4 -config(version:1.0) 
    5  
    6 # project group name (for Maven repository) 
    7 -group:        org.xerial 
    8 # Name of the project. This name will be used for the web application's context path 
    9 -project name: xerial-wiki-server 
    10 # java package to add/search Web Action codes 
    11 -java package:      org.xerial.wiki 
    12  
    13 # Importing additional web actions under the specified java package. 
    14 # Web actions (i.e. java classes) in the specified action package folder will be accessible  
    15 # by the path (alias)/(web action name) 
    16 -web action(alias: utgb-core, java package: org.utgenome.gwt.utgb.server.app) 
    17  
    18 # Database locations settings.  
    19 # Database address for SQLite DB files is relative to the project folder. 
    20 # The specified databases will be accessible from your web action codes by referencing the specified id. 
    21 #-database(id:mydb, dbms:sqlite) 
    22 # -address: db/sample.db 
    23  
    24 ## An example setting for using in-memory database of SQLite 
    25 ## (update result will be lost when terminating the application) 
    26 # 
    27 #-database(id:test, dbms:sqlite) 
    28 # -address: :memory:   
    29  
    30  
    31 ## JDBC connection settings for PostgreSQL 
    32 #-database(id:pg, dbms:postgres) 
    33 # -address: localhost 
    34 # -user:  (user name) 
    35 # -pass:  (password)   
    36  
    37 ## MySQL database connection example 
    38 #-database(id:mysql-db, dbms:mysql) 
    39 # -driver: com.mysql.jdbc.Driver 
    40 # -jdbc prefix: jdbc:mysql:/// 
    41 # -address: mydb 
    42 # -user: (user name) 
    43 # -pass: (password) 
    44  
    45  
    46  
     2-version: 1.0 
     3-group: org.xerial 
     4-projectname: xerial-wiki-server 
     5-javapackage: org.xerial.wiki 
     6-webaction(alias:utgb-core, javapackage:org.utgenome.gwt.utgb.server.app) 
  • XerialJ/trunk/xerial-wiki-server/config/development.silk

    r3658 r3663  
    1414 
    1515# User's own properties 
    16  -wiki.base: file:///c:/Users/leo/work/wiki 
     16# -wiki.source: src/wiki  
     17 
     18-wiki.base: file:///d:/work/wiki 
    1719 
    1820 
    1921 
    20  
  • XerialJ/trunk/xerial-wiki-server/eclipse/xerial-wiki-server-server.launch

    r3657 r3663  
    88</listAttribute> 
    99<booleanAttribute key="org.eclipse.debug.core.appendEnvironmentVariables" value="true"/> 
    10 <listAttribute key="org.eclipse.jdt.launching.CLASSPATH"> 
    11 <listEntry value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;runtimeClasspathEntry containerPath=&quot;org.eclipse.jdt.launching.JRE_CONTAINER&quot; javaProject=&quot;xerial-wiki-server&quot; path=&quot;1&quot; type=&quot;4&quot;/&gt;&#13;&#10;"/> 
    12 <listEntry value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;runtimeClasspathEntry id=&quot;org.eclipse.jdt.launching.classpathentry.defaultClasspath&quot;&gt;&#13;&#10;&lt;memento exportedEntriesOnly=&quot;false&quot; project=&quot;xerial-wiki-server&quot;/&gt;&#13;&#10;&lt;/runtimeClasspathEntry&gt;&#13;&#10;"/> 
    13 <listEntry value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#13;&#10;&lt;runtimeClasspathEntry containerPath=&quot;UTGB_HOME/lib/utgb-shell-bin.jar&quot; path=&quot;3&quot; type=&quot;3&quot;/&gt;&#13;&#10;"/> 
    14 </listAttribute> 
    15 <booleanAttribute key="org.eclipse.jdt.launching.DEFAULT_CLASSPATH" value="false"/> 
    1610<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="org.utgenome.shell.UTGBShell"/> 
    1711<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="server -g"/> 
  • XerialJ/trunk/xerial-wiki-server/pom.xml

    r3657 r3663  
    110110      <groupId>org.utgenome</groupId> 
    111111      <artifactId>utgb-core</artifactId> 
    112       <version>1.0.5</version> 
     112      <version>1.3.1</version> 
     113    </dependency>     
     114    <dependency> 
     115      <groupId>org.utgenome</groupId> 
     116      <artifactId>utgb-shell</artifactId> 
     117      <version>1.3.1</version> 
     118      <scope>provided</scope> 
    113119    </dependency>     
    114120    <dependency>