server/pom.xml
author ymh <ymh.work@gmail.com>
Fri, 05 Apr 2013 14:01:09 +0200
changeset 142 4eaab4054132
parent 131 2a48adff9c52
child 146 2f3ef07f3eef
permissions -rw-r--r--
version 0.6
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
     1
<?xml version="1.0" encoding="UTF-8"?>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
     2
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
     3
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
    <modelVersion>4.0.0</modelVersion>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
     5
    <groupId>org.iri_research.renkan</groupId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
     6
    <artifactId>renkan</artifactId>
142
4eaab4054132 version 0.6
ymh <ymh.work@gmail.com>
parents: 131
diff changeset
     7
    <version>0.6</version>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
     8
    <packaging>war</packaging>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
     9
76
523f0647513e add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents: 71
diff changeset
    10
    <properties>
523f0647513e add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents: 71
diff changeset
    11
        <surefire-version>2.14</surefire-version>
48
01fb9167ad75 Correct bug on insert, delete move objects
ymh <ymh.work@gmail.com>
parents: 47
diff changeset
    12
        <coweb-version>1.0</coweb-version>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    13
        <cowebx-version>1.0</cowebx-version>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    14
        <jersey-version>1.17</jersey-version>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    15
        <spring-version>3.2.1.RELEASE</spring-version>
71
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
    16
        <spring-security-version>3.1.3.RELEASE</spring-security-version>
87
6c810f746837 Externalize properties
ymh <ymh.work@gmail.com>
parents: 80
diff changeset
    17
        <jetty-version>8.1.10.v20130312</jetty-version>
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
    18
        <junit-version>4.10</junit-version>
76
523f0647513e add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents: 71
diff changeset
    19
        <thymeleaf-version>2.0.16</thymeleaf-version>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    20
        <cometd-version>2.5.1</cometd-version>
71
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
    21
        <jackson-version>2.1.4</jackson-version>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
    22
        <joda-version>2.1</joda-version>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    23
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    24
    </properties>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    25
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    26
    <build>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    27
        <defaultGoal>install</defaultGoal>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    28
        <plugins>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    29
            <plugin>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    30
                <groupId>org.apache.maven.plugins</groupId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    31
                <artifactId>maven-compiler-plugin</artifactId>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    32
                <version>3.0</version>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    33
                <configuration>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    34
                    <source>1.7</source>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    35
                    <target>1.7</target>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    36
                </configuration>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    37
            </plugin>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    38
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    39
            <plugin>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    40
                <groupId>org.mortbay.jetty</groupId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    41
                <artifactId>jetty-maven-plugin</artifactId>
54
43c35d6ca3f0 change initialization order.
ymh <ymh.work@gmail.com>
parents: 51
diff changeset
    42
                <version>${jetty-version}</version>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    43
                <configuration>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    44
                    <scanIntervalSeconds>10</scanIntervalSeconds>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    45
                    <webApp>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    46
                        <contextPath>/renkan</contextPath>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    47
                    </webApp>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    48
                </configuration>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    49
            </plugin>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    50
            
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    51
            <plugin>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    52
                <artifactId>maven-war-plugin</artifactId>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    53
                <version>2.3</version>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    54
                <configuration>
97
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 93
diff changeset
    55
                    <archive>                   
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 93
diff changeset
    56
                        <manifest>
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 93
diff changeset
    57
                            <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 93
diff changeset
    58
                            <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 93
diff changeset
    59
                        </manifest>
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 93
diff changeset
    60
                    </archive>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    61
                    <overlays>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    62
                        <overlay>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    63
                            <groupId>org.opencoweb</groupId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    64
                            <artifactId>coweb-javascript</artifactId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    65
                            <type>war</type>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    66
                            <excludes>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    67
                                <exclude>META-INF/**</exclude>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    68
                                <exclude>WEB-INF/**</exclude>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    69
                            </excludes>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    70
                            <targetPath>lib</targetPath>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    71
                        </overlay>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    72
                        <overlay>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    73
                            <groupId>org.opencoweb.cowebx</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    74
                            <artifactId>cowebx-widgets-dojo</artifactId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    75
                            <type>war</type>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    76
                            <excludes>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    77
                                <exclude>META-INF/**</exclude>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    78
                                <exclude>WEB-INF/**</exclude>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    79
                            </excludes>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    80
                            <targetPath>lib/cowebx/dojo</targetPath>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    81
                        </overlay>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    82
                    </overlays>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    83
                    <webResources>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    84
                        <resource>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    85
                            <directory>../client/js</directory>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    86
                            <includes>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    87
                                <include>i18n.js</include>
115
e905eb562074 include defaults.js on server side
veltr
parents: 109
diff changeset
    88
                                <include>defaults.js</include>
80
5295e118320b add link for publish
ymh <ymh.work@gmail.com>
parents: 76
diff changeset
    89
                                <include>full-json.js</include>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    90
                                <include>*-bin.js</include>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    91
                                <include>models.js</include>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    92
                                <include>paper-renderer.js</include>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    93
                                <include>main.js</include>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    94
                            </includes>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    95
                            <targetPath>static/js</targetPath>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    96
                        </resource>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    97
                        <resource>
131
2a48adff9c52 delete server js libs found in client and change pom to copy them on build.
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
    98
                            <directory>../client/lib</directory>
2a48adff9c52 delete server js libs found in client and change pom to copy them on build.
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
    99
                            <targetPath>static/lib</targetPath>
2a48adff9c52 delete server js libs found in client and change pom to copy them on build.
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   100
                        </resource>
2a48adff9c52 delete server js libs found in client and change pom to copy them on build.
ymh <ymh.work@gmail.com>
parents: 129
diff changeset
   101
                        <resource>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   102
                            <directory>../client/css</directory>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   103
                            <includes>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   104
                                <include>*.css</include>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   105
                            </includes>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   106
                            <targetPath>static/css</targetPath>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   107
                        </resource>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   108
                        <resource>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   109
                            <directory>../client/img</directory>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   110
                            <targetPath>static/img</targetPath>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   111
                        </resource>
80
5295e118320b add link for publish
ymh <ymh.work@gmail.com>
parents: 76
diff changeset
   112
                        <resource>
5295e118320b add link for publish
ymh <ymh.work@gmail.com>
parents: 76
diff changeset
   113
                            <directory>../client/data</directory>
5295e118320b add link for publish
ymh <ymh.work@gmail.com>
parents: 76
diff changeset
   114
                            <includes>
5295e118320b add link for publish
ymh <ymh.work@gmail.com>
parents: 76
diff changeset
   115
                                <include>properties.json</include>
5295e118320b add link for publish
ymh <ymh.work@gmail.com>
parents: 76
diff changeset
   116
                            </includes>
5295e118320b add link for publish
ymh <ymh.work@gmail.com>
parents: 76
diff changeset
   117
                            <targetPath>static/data</targetPath>
5295e118320b add link for publish
ymh <ymh.work@gmail.com>
parents: 76
diff changeset
   118
                        </resource>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   119
                    </webResources>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   120
                </configuration>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   121
            </plugin>
76
523f0647513e add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents: 71
diff changeset
   122
	        <plugin>
523f0647513e add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents: 71
diff changeset
   123
	          <groupId>org.apache.maven.plugins</groupId>
523f0647513e add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents: 71
diff changeset
   124
	          <artifactId>maven-surefire-plugin</artifactId>
523f0647513e add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents: 71
diff changeset
   125
	          <version>${surefire-version}</version>
523f0647513e add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents: 71
diff changeset
   126
	        </plugin>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   127
        </plugins>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   128
    </build>
71
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   129
    <repositories>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   130
        <repository>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   131
            <id>spring-maven-release</id>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   132
            <name>Spring Maven Release Repository</name>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   133
            <url>http://maven.springframework.org/release</url>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   134
        </repository>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   135
        <repository>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   136
            <id>spring-maven-milestone</id>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   137
            <name>Spring Maven MILESTONE Repository</name>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   138
            <url>http://maven.springframework.org/milestone</url>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   139
        </repository>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   140
        <repository>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   141
            <id>spring-release</id>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   142
            <name>Spring Maven SNAPSHOT Repository</name>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   143
            <url>http://repo.springsource.org/release</url>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   144
        </repository>        
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   145
    </repositories>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   146
    <dependencies>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   147
        <dependency>  
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   148
            <groupId>javax.inject</groupId>  
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   149
            <artifactId>javax.inject</artifactId>  
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   150
            <version>1</version>  
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   151
        </dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   152
        <dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   153
            <groupId>javax.servlet</groupId>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   154
            <artifactId>javax.servlet-api</artifactId>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   155
            <version>3.0.1</version>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   156
        </dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   157
        <dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   158
            <groupId>org.cometd.java</groupId>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   159
            <artifactId>cometd-java-common</artifactId>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   160
            <version>${cometd-version}</version>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   161
        </dependency>        
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   162
        <dependency>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   163
            <groupId>org.cometd.java</groupId>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   164
            <artifactId>cometd-java-annotations</artifactId>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   165
            <version>${cometd-version}</version>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   166
        </dependency>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   167
        <dependency>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   168
            <groupId>org.cometd.java</groupId>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   169
            <artifactId>cometd-websocket-jetty</artifactId>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   170
            <version>${cometd-version}</version>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   171
        </dependency>        
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   172
        <dependency>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   173
            <groupId>org.opencoweb</groupId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   174
            <artifactId>coweb-bots</artifactId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   175
            <version>${coweb-version}</version>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   176
        </dependency>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   177
        <dependency>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   178
            <groupId>org.opencoweb</groupId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   179
            <artifactId>coweb-server</artifactId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   180
            <version>${coweb-version}</version>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   181
        </dependency>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   182
        <dependency>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   183
            <groupId>org.opencoweb</groupId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   184
            <artifactId>coweb-javascript</artifactId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   185
            <version>${coweb-version}</version>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   186
            <type>war</type>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   187
        </dependency>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   188
        <dependency>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   189
            <groupId>org.opencoweb.cowebx</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   190
            <artifactId>cowebx-widgets-dojo</artifactId>
48
01fb9167ad75 Correct bug on insert, delete move objects
ymh <ymh.work@gmail.com>
parents: 47
diff changeset
   191
            <version>${cowebx-version}</version>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   192
            <type>war</type>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   193
        </dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   194
        <dependency>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   195
        	<groupId>com.sun.jersey</groupId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   196
        	<artifactId>jersey-server</artifactId>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   197
        	<version>${jersey-version}</version>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   198
        </dependency>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   199
        <dependency>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   200
            <groupId>com.sun.jersey.contribs</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   201
            <artifactId>jersey-spring</artifactId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   202
            <version>${jersey-version}</version>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   203
            <exclusions>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   204
                <exclusion>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   205
                    <groupId>org.springframework</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   206
                    <artifactId>spring-context</artifactId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   207
                </exclusion>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   208
                <exclusion>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   209
                    <groupId>org.springframework</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   210
                    <artifactId>spring-beans</artifactId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   211
                </exclusion>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   212
                <exclusion>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   213
                    <groupId>org.springframework</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   214
                    <artifactId>spring-core</artifactId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   215
                </exclusion>
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   216
                <exclusion>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   217
                    <groupId>org.springframework</groupId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   218
                    <artifactId>spring-web</artifactId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   219
                </exclusion>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   220
                <exclusion>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   221
                    <groupId>org.springframework</groupId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   222
                    <artifactId>spring-aop</artifactId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   223
                </exclusion>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   224
            </exclusions>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   225
        </dependency>
71
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   226
		<dependency>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   227
		    <groupId>com.sun.jersey.jersey-test-framework</groupId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   228
		    <artifactId>jersey-test-framework-grizzly2</artifactId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   229
		    <version>${jersey-version}</version>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   230
		    <scope>test</scope>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   231
		</dependency>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   232
        <dependency>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   233
            <groupId>org.mongodb</groupId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   234
            <artifactId>mongo-java-driver</artifactId>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   235
            <version>2.10.1</version>
22
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents: 13
diff changeset
   236
        </dependency>
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents: 13
diff changeset
   237
        <dependency> 
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents: 13
diff changeset
   238
            <groupId>org.slf4j</groupId>
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents: 13
diff changeset
   239
            <artifactId>slf4j-log4j12</artifactId>
71
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   240
            <version>1.7.2</version>
22
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents: 13
diff changeset
   241
        </dependency>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   242
        <dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   243
            <groupId>org.springframework</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   244
            <artifactId>spring-core</artifactId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   245
            <version>${spring-version}</version>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   246
        </dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   247
        <dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   248
            <groupId>org.springframework</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   249
            <artifactId>spring-context</artifactId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   250
            <version>${spring-version}</version>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   251
        </dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   252
        <dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   253
            <groupId>org.springframework</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   254
            <artifactId>spring-web</artifactId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   255
            <version>${spring-version}</version>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   256
        </dependency>        
51
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   257
        <!--dependency>
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   258
            <groupId>org.springframework.security</groupId>
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   259
            <artifactId>spring-security-core</artifactId>
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   260
            <version>${spring-version}</version>
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   261
        </dependency> 
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   262
        <dependency>
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   263
            <groupId>org.springframework.security</groupId>
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   264
            <artifactId>spring-security-web</artifactId>
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   265
            <version>${spring-version}</version>
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   266
        </dependency> 
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   267
        <dependency>
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   268
            <groupId>org.springframework.security</groupId>
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   269
            <artifactId>spring-security-config</artifactId>
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   270
            <version>${spring-version}</version>
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   271
        </dependency-->
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   272
        <dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   273
            <groupId>org.springframework</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   274
            <artifactId>spring-test</artifactId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   275
            <version>${spring-version}</version>
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   276
            <scope>test</scope>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   277
        </dependency>        
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   278
        <dependency>
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   279
            <groupId>org.springframework</groupId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   280
            <artifactId>spring-webmvc</artifactId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   281
            <version>${spring-version}</version>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   282
        </dependency>        
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   283
        <dependency>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   284
            <groupId>org.springframework.data</groupId>
76
523f0647513e add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents: 71
diff changeset
   285
            <artifactId>spring-data-commons</artifactId>
523f0647513e add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents: 71
diff changeset
   286
            <version>1.5.0.RELEASE</version>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   287
        </dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   288
        <dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   289
            <groupId>org.springframework.data</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   290
            <artifactId>spring-data-jpa</artifactId>
76
523f0647513e add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents: 71
diff changeset
   291
            <version>1.3.0.RELEASE</version>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   292
        </dependency> 
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   293
        <dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   294
            <groupId>org.springframework.data</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   295
            <artifactId>spring-data-mongodb</artifactId>
76
523f0647513e add the count of project by spaces, add pagination, update libraries and add some more unit tests.
ymh <ymh.work@gmail.com>
parents: 71
diff changeset
   296
            <version>1.2.0.RELEASE</version>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   297
        </dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   298
        <dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   299
            <groupId>javax.persistence</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   300
            <artifactId>persistence-api</artifactId>  
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   301
            <version>1.0.2</version>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   302
        </dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   303
        <dependency>                          
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   304
            <groupId>junit</groupId>           
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   305
            <artifactId>junit</artifactId>     
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   306
            <version>${junit-version}</version>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   307
            <scope>test</scope>                
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   308
        </dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   309
        <dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   310
            <groupId>javax.servlet</groupId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   311
            <artifactId>jstl</artifactId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   312
            <version>1.2</version>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   313
            <scope>runtime</scope>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   314
        </dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   315
        <dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   316
            <groupId>org.thymeleaf</groupId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   317
            <artifactId>thymeleaf</artifactId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   318
            <version>${thymeleaf-version}</version>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   319
        </dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   320
        <dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   321
            <groupId>org.thymeleaf</groupId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   322
            <artifactId>thymeleaf-spring3</artifactId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   323
            <version>${thymeleaf-version}</version>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   324
        </dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   325
        <dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   326
            <groupId>net.sourceforge.nekohtml</groupId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   327
            <artifactId>nekohtml</artifactId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   328
            <version>1.9.16</version>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   329
        </dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   330
        <dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   331
            <groupId>com.fasterxml.jackson.jaxrs</groupId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   332
            <artifactId>jackson-jaxrs-json-provider</artifactId>
71
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   333
            <version>${jackson-version}</version>
51
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   334
        </dependency>
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   335
        <dependency>
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   336
            <groupId>commons-codec</groupId>
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   337
            <artifactId>commons-codec</artifactId>
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   338
            <version>1.7</version>
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   339
        </dependency>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   340
        <dependency>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   341
            <groupId>org.eclipse.jetty</groupId>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   342
            <artifactId>jetty-server</artifactId>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   343
            <version>${jetty-version}</version>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   344
        </dependency>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   345
        <dependency>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   346
            <groupId>org.eclipse.jetty</groupId>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   347
            <artifactId>jetty-client</artifactId>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   348
            <version>${jetty-version}</version>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   349
        </dependency>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   350
        <dependency>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   351
            <groupId>org.eclipse.jetty</groupId>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   352
            <artifactId>jetty-websocket</artifactId>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   353
            <version>${jetty-version}</version>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   354
        </dependency>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   355
        <dependency>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   356
            <groupId>org.eclipse.jetty</groupId>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   357
            <artifactId>jetty-jmx</artifactId>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   358
            <version>${jetty-version}</version>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   359
        </dependency>        
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   360
        <dependency>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   361
            <groupId>org.eclipse.jetty</groupId>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   362
            <artifactId>jetty-util</artifactId>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   363
            <version>${jetty-version}</version>
71
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   364
        </dependency>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   365
        <dependency>
106
d34e253f5c32 Simplify spring integration + correct key for collaborative usage
ymh <ymh.work@gmail.com>
parents: 103
diff changeset
   366
            <groupId>org.eclipse.jetty</groupId>
d34e253f5c32 Simplify spring integration + correct key for collaborative usage
ymh <ymh.work@gmail.com>
parents: 103
diff changeset
   367
            <artifactId>jetty-servlets</artifactId>
d34e253f5c32 Simplify spring integration + correct key for collaborative usage
ymh <ymh.work@gmail.com>
parents: 103
diff changeset
   368
            <version>${jetty-version}</version>
d34e253f5c32 Simplify spring integration + correct key for collaborative usage
ymh <ymh.work@gmail.com>
parents: 103
diff changeset
   369
        </dependency>
d34e253f5c32 Simplify spring integration + correct key for collaborative usage
ymh <ymh.work@gmail.com>
parents: 103
diff changeset
   370
        <dependency>
71
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   371
            <groupId>org.springframework.security</groupId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   372
            <artifactId>spring-security-core</artifactId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   373
            <version>${spring-security-version}</version>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   374
        </dependency> 
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   375
        <dependency>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   376
            <groupId>org.springframework.security</groupId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   377
            <artifactId>spring-security-web</artifactId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   378
            <version>${spring-security-version}</version>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   379
        </dependency> 
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   380
        <dependency>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   381
            <groupId>org.springframework.security</groupId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   382
            <artifactId>spring-security-config</artifactId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   383
            <version>${spring-security-version}</version>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   384
        </dependency>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   385
        <dependency>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   386
	       <groupId>de.undercouch</groupId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   387
	       <artifactId>bson4jackson</artifactId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   388
	       <version>2.1.1</version>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   389
        </dependency>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   390
        <dependency>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   391
            <groupId>joda-time</groupId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   392
            <artifactId>joda-time</artifactId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   393
            <version>${joda-version}</version>
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   394
        </dependency>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   395
        <dependency>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   396
            <groupId>javax.validation</groupId>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   397
            <artifactId>validation-api</artifactId>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   398
            <version>1.1.0.CR2</version>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   399
        </dependency>        
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   400
        <dependency>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   401
            <groupId>org.hibernate</groupId>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   402
            <artifactId>hibernate-validator</artifactId>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   403
            <version>4.2.0.Final</version>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   404
        </dependency>
129
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   405
        <dependency>
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   406
            <groupId>com.fasterxml.uuid</groupId>
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   407
            <artifactId>java-uuid-generator</artifactId>
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   408
            <version>3.1.3</version>
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   409
        </dependency>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   410
    </dependencies>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   411
    <organization>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   412
    	<name>IRI</name>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   413
    	<url>http://www.iri.centrepompidou.fr</url>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   414
    </organization>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   415
</project>