server/pom.xml
author ymh <ymh.work@gmail.com>
Mon, 21 Oct 2013 13:58:20 +0200
branchuser_management
changeset 222 6ac00231ee34
parent 221 a392390de1a7
child 223 5ad314cb2337
permissions -rw-r--r--
Manage users. (not passwords)
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>
179
98c137d6cc96 On rest correct single object get to produce jsonp by default. This may have to be correctted in the future
ymh <ymh.work@gmail.com>
parents: 164
diff changeset
     7
    <version>0.6.4</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>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    11
        <surefire-version>2.16</surefire-version>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    12
        <coweb-version>1.0.1-SNAPSHOT</coweb-version>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    13
        <cowebx-version>1.0</cowebx-version>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    14
        <jersey-version>2.3.1</jersey-version>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    15
        <spring-version>3.2.1.RELEASE</spring-version>
215
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents: 179
diff changeset
    16
        <spring-data-mongodb-version>1.2.0.RELEASE</spring-data-mongodb-version>
71
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
    17
        <spring-security-version>3.1.3.RELEASE</spring-security-version>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    18
        <spring-data-commons-version>1.5.0.RELEASE</spring-data-commons-version>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    19
        <spring-data-jpa-version>1.3.0.RELEASE</spring-data-jpa-version>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    20
        <jetty-plugin-version>8.1.13.v20130916</jetty-plugin-version>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    21
        <jetty-version>8.1.13.v20130916</jetty-version>
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
    22
        <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
    23
        <thymeleaf-version>2.0.16</thymeleaf-version>
150
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
    24
        <thymeleaf-springsecurity-version>2.0.0</thymeleaf-springsecurity-version>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    25
        <cometd-version>2.7.0</cometd-version>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    26
        <jackson-version>2.2.3</jackson-version>
71
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
    27
        <joda-version>2.1</joda-version>
215
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents: 179
diff changeset
    28
        <mongo-driver-version>2.11.0</mongo-driver-version>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    29
        <jaxrs-api-version>2.0</jaxrs-api-version>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    30
        <javax-annotation-version>1.2</javax-annotation-version>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    31
        <javax-inject-version>1</javax-inject-version>
221
a392390de1a7 upgrade to servlet 3.0
ymh <ymh.work@gmail.com>
parents: 220
diff changeset
    32
        <javax-servlet-api-version>3.0.1</javax-servlet-api-version>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    33
        <javax-servlet-jstl-version>1.2</javax-servlet-jstl-version>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    34
        <javax-persistence-api-version>1.0.2</javax-persistence-api-version>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    35
        <javax-validation-api-version>1.1.0.CR2</javax-validation-api-version>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    36
        <hibernate-validator-version>4.2.0.Final</hibernate-validator-version>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    37
        <slf4j-log4j12-version>1.7.5</slf4j-log4j12-version>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    38
        <nekohtml-version>1.9.16</nekohtml-version>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    39
        <commons-codec-version>1.7</commons-codec-version>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    40
        <bson4jackson-version>2.1.1</bson4jackson-version>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    41
        <fasterxml-java-uuid-generator-version>3.1.3</fasterxml-java-uuid-generator-version>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    42
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    43
    </properties>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    44
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    45
    <build>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    46
        <defaultGoal>install</defaultGoal>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    47
        <plugins>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    48
            <plugin>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    49
                <groupId>org.apache.maven.plugins</groupId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    50
                <artifactId>maven-compiler-plugin</artifactId>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    51
                <version>3.1</version>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    52
                <configuration>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    53
                    <source>1.7</source>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    54
                    <target>1.7</target>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    55
                </configuration>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    56
            </plugin>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    57
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    58
            <plugin>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    59
                <groupId>org.mortbay.jetty</groupId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    60
                <artifactId>jetty-maven-plugin</artifactId>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    61
                <version>${jetty-plugin-version}</version>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    62
                <configuration>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    63
                    <scanIntervalSeconds>10</scanIntervalSeconds>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    64
                    <webApp>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    65
                        <contextPath>/renkan</contextPath>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    66
                    </webApp>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    67
                </configuration>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    68
            </plugin>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    69
            
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    70
            <plugin>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    71
                <artifactId>maven-war-plugin</artifactId>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    72
                <version>2.3</version>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    73
                <configuration>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
    74
                    <archive>
97
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 93
diff changeset
    75
                        <manifest>
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 93
diff changeset
    76
                            <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 93
diff changeset
    77
                            <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 93
diff changeset
    78
                        </manifest>
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 93
diff changeset
    79
                    </archive>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    80
                    <overlays>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    81
                        <overlay>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    82
                            <groupId>org.opencoweb</groupId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    83
                            <artifactId>coweb-javascript</artifactId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    84
                            <type>war</type>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    85
                            <excludes>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    86
                                <exclude>META-INF/**</exclude>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    87
                                <exclude>WEB-INF/**</exclude>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    88
                            </excludes>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    89
                            <targetPath>lib</targetPath>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    90
                        </overlay>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    91
                        <overlay>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    92
                            <groupId>org.opencoweb.cowebx</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    93
                            <artifactId>cowebx-widgets-dojo</artifactId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    94
                            <type>war</type>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    95
                            <excludes>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    96
                                <exclude>META-INF/**</exclude>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    97
                                <exclude>WEB-INF/**</exclude>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    98
                            </excludes>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    99
                            <targetPath>lib/cowebx/dojo</targetPath>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   100
                        </overlay>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   101
                    </overlays>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   102
                    <webResources>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   103
                        <resource>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   104
                            <directory>../client/js</directory>
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
                                <include>i18n.js</include>
115
e905eb562074 include defaults.js on server side
veltr
parents: 109
diff changeset
   107
                                <include>defaults.js</include>
80
5295e118320b add link for publish
ymh <ymh.work@gmail.com>
parents: 76
diff changeset
   108
                                <include>full-json.js</include>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   109
                                <include>*-bin.js</include>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   110
                                <include>models.js</include>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   111
                                <include>paper-renderer.js</include>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   112
                                <include>main.js</include>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   113
                            </includes>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   114
                            <targetPath>static/js</targetPath>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   115
                        </resource>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   116
                        <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
   117
                            <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
   118
                            <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
   119
                        </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
   120
                        <resource>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   121
                            <directory>../client/css</directory>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   122
                            <includes>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   123
                                <include>*.css</include>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   124
                            </includes>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   125
                            <targetPath>static/css</targetPath>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   126
                        </resource>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   127
                        <resource>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   128
                            <directory>../client/img</directory>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   129
                            <targetPath>static/img</targetPath>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   130
                        </resource>
80
5295e118320b add link for publish
ymh <ymh.work@gmail.com>
parents: 76
diff changeset
   131
                        <resource>
5295e118320b add link for publish
ymh <ymh.work@gmail.com>
parents: 76
diff changeset
   132
                            <directory>../client/data</directory>
5295e118320b add link for publish
ymh <ymh.work@gmail.com>
parents: 76
diff changeset
   133
                            <includes>
5295e118320b add link for publish
ymh <ymh.work@gmail.com>
parents: 76
diff changeset
   134
                                <include>properties.json</include>
5295e118320b add link for publish
ymh <ymh.work@gmail.com>
parents: 76
diff changeset
   135
                            </includes>
5295e118320b add link for publish
ymh <ymh.work@gmail.com>
parents: 76
diff changeset
   136
                            <targetPath>static/data</targetPath>
5295e118320b add link for publish
ymh <ymh.work@gmail.com>
parents: 76
diff changeset
   137
                        </resource>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   138
                    </webResources>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   139
                </configuration>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   140
            </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
   141
	        <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
   142
	          <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
   143
	          <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
   144
	          <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
   145
	        </plugin>
215
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents: 179
diff changeset
   146
	        <plugin>
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents: 179
diff changeset
   147
                <groupId>org.apache.maven.plugins</groupId>
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents: 179
diff changeset
   148
                <artifactId>maven-jar-plugin</artifactId>
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents: 179
diff changeset
   149
                <version>2.4</version>
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents: 179
diff changeset
   150
            </plugin>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   151
        </plugins>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   152
    </build>
71
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   153
    <repositories>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   154
        <repository>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   155
            <id>lib</id>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   156
            <name>lib</name>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   157
            <releases>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   158
                <enabled>true</enabled>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   159
                <checksumPolicy>ignore</checksumPolicy>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   160
            </releases>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   161
            <url>file://${project.basedir}/lib</url>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   162
        </repository>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   163
        <repository>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   164
            <id>spring-maven-release</id>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   165
            <name>Spring Maven Release Repository</name>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   166
            <url>http://maven.springframework.org/release</url>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   167
        </repository>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   168
        <repository>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   169
            <id>spring-maven-milestone</id>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   170
            <name>Spring Maven MILESTONE Repository</name>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   171
            <url>http://maven.springframework.org/milestone</url>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   172
        </repository>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   173
        <repository>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   174
            <id>spring-release</id>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   175
            <name>Spring Maven SNAPSHOT Repository</name>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   176
            <url>http://repo.springsource.org/release</url>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   177
        </repository>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   178
    </repositories>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   179
    <dependencies>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   180
        <dependency>  
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   181
            <groupId>javax.inject</groupId>  
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   182
            <artifactId>javax.inject</artifactId>  
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   183
            <version>${javax-inject-version}</version>  
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   184
        </dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   185
        <dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   186
            <groupId>javax.servlet</groupId>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   187
            <artifactId>javax.servlet-api</artifactId>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   188
            <version>${javax-servlet-api-version}</version>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   189
        </dependency>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   190
        <dependency>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   191
            <groupId>javax.ws.rs</groupId>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   192
            <artifactId>javax.ws.rs-api</artifactId>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   193
            <version>${jaxrs-api-version}</version>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   194
        </dependency>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   195
        <dependency>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   196
            <groupId>javax.annotation</groupId>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   197
            <artifactId>javax.annotation-api</artifactId>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   198
            <version>${javax-annotation-version}</version>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   199
        </dependency>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   200
        <dependency>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   201
            <groupId>org.cometd.java</groupId>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   202
            <artifactId>bayeux-api</artifactId>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   203
            <version>${cometd-version}</version>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   204
        </dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   205
        <dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   206
            <groupId>org.cometd.java</groupId>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   207
            <artifactId>cometd-java-common</artifactId>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   208
            <version>${cometd-version}</version>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   209
        </dependency>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   210
        <dependency>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   211
            <groupId>org.cometd.java</groupId>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   212
            <artifactId>cometd-java-annotations</artifactId>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   213
            <version>${cometd-version}</version>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   214
        </dependency>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   215
        <dependency>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   216
            <groupId>org.cometd.java</groupId>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   217
            <artifactId>cometd-websocket-jetty</artifactId>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   218
            <version>${cometd-version}</version>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   219
        </dependency>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   220
        <dependency>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   221
            <groupId>org.opencoweb</groupId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   222
            <artifactId>coweb-bots</artifactId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   223
            <version>${coweb-version}</version>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   224
        </dependency>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   225
        <dependency>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   226
            <groupId>org.opencoweb</groupId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   227
            <artifactId>coweb-server</artifactId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   228
            <version>${coweb-version}</version>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   229
        </dependency>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   230
        <dependency>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   231
            <groupId>org.opencoweb</groupId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   232
            <artifactId>coweb-javascript</artifactId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   233
            <version>${coweb-version}</version>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   234
            <type>war</type>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   235
        </dependency>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   236
        <dependency>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   237
            <groupId>org.opencoweb.cowebx</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   238
            <artifactId>cowebx-widgets-dojo</artifactId>
48
01fb9167ad75 Correct bug on insert, delete move objects
ymh <ymh.work@gmail.com>
parents: 47
diff changeset
   239
            <version>${cowebx-version}</version>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   240
            <type>war</type>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   241
        </dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   242
        <dependency>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   243
            <groupId>org.glassfish.jersey.core</groupId>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   244
            <artifactId>jersey-server</artifactId>
164
8786006c553c Add jsonp to get of single renkan resources.
ymh <ymh.work@gmail.com>
parents: 150
diff changeset
   245
            <version>${jersey-version}</version>
8786006c553c Add jsonp to get of single renkan resources.
ymh <ymh.work@gmail.com>
parents: 150
diff changeset
   246
        </dependency>
8786006c553c Add jsonp to get of single renkan resources.
ymh <ymh.work@gmail.com>
parents: 150
diff changeset
   247
        <dependency>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   248
            <groupId>org.glassfish.jersey.media</groupId>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   249
            <artifactId>jersey-media-json-jackson</artifactId>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   250
            <version>${jersey-version}</version>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   251
        </dependency>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   252
        <dependency>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   253
            <groupId>org.glassfish.jersey.ext</groupId>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   254
            <artifactId>jersey-spring3</artifactId>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   255
            <version>${jersey-version}</version>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   256
            <!--exclusions>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   257
                <exclusion>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   258
                    <groupId>org.springframework</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   259
                    <artifactId>spring-context</artifactId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   260
                </exclusion>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   261
                <exclusion>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   262
                    <groupId>org.springframework</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   263
                    <artifactId>spring-beans</artifactId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   264
                </exclusion>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   265
                <exclusion>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   266
                    <groupId>org.springframework</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   267
                    <artifactId>spring-core</artifactId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   268
                </exclusion>
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   269
                <exclusion>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   270
                    <groupId>org.springframework</groupId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   271
                    <artifactId>spring-web</artifactId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   272
                </exclusion>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   273
                <exclusion>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   274
                    <groupId>org.springframework</groupId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   275
                    <artifactId>spring-aop</artifactId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   276
                </exclusion>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   277
            </exclusions-->
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   278
        </dependency>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   279
        <dependency>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   280
            <groupId>org.glassfish.jersey.test-framework.providers</groupId>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   281
            <artifactId>jersey-test-framework-provider-grizzly2</artifactId>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   282
            <version>${jersey-version}</version>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   283
            <scope>test</scope>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   284
        </dependency>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   285
        <dependency>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   286
            <groupId>org.mongodb</groupId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   287
            <artifactId>mongo-java-driver</artifactId>
215
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents: 179
diff changeset
   288
            <version>${mongo-driver-version}</version>
22
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents: 13
diff changeset
   289
        </dependency>
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents: 13
diff changeset
   290
        <dependency> 
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents: 13
diff changeset
   291
            <groupId>org.slf4j</groupId>
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents: 13
diff changeset
   292
            <artifactId>slf4j-log4j12</artifactId>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   293
            <version>${slf4j-log4j12-version}</version>
22
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents: 13
diff changeset
   294
        </dependency>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   295
        <dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   296
            <groupId>org.springframework</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   297
            <artifactId>spring-core</artifactId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   298
            <version>${spring-version}</version>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   299
        </dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   300
        <dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   301
            <groupId>org.springframework</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   302
            <artifactId>spring-context</artifactId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   303
            <version>${spring-version}</version>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   304
        </dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   305
        <dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   306
            <groupId>org.springframework</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   307
            <artifactId>spring-web</artifactId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   308
            <version>${spring-version}</version>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   309
        </dependency>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   310
        <dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   311
            <groupId>org.springframework</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   312
            <artifactId>spring-test</artifactId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   313
            <version>${spring-version}</version>
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   314
            <scope>test</scope>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   315
        </dependency>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   316
        <dependency>
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   317
            <groupId>org.springframework</groupId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   318
            <artifactId>spring-webmvc</artifactId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   319
            <version>${spring-version}</version>
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
        <dependency>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   322
            <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
   323
            <artifactId>spring-data-commons</artifactId>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   324
            <version>${spring-data-commons-version}</version>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   325
        </dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   326
        <dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   327
            <groupId>org.springframework.data</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   328
            <artifactId>spring-data-jpa</artifactId>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   329
            <version>${spring-data-jpa-version}</version>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   330
        </dependency> 
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   331
        <dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   332
            <groupId>org.springframework.data</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   333
            <artifactId>spring-data-mongodb</artifactId>
215
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents: 179
diff changeset
   334
            <version>${spring-data-mongodb-version}</version>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   335
        </dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   336
        <dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   337
            <groupId>javax.persistence</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   338
            <artifactId>persistence-api</artifactId>  
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   339
            <version>${javax-persistence-api-version}</version>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   340
        </dependency>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   341
        <dependency>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   342
            <groupId>junit</groupId>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   343
            <artifactId>junit</artifactId>
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   344
            <version>${junit-version}</version>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   345
            <scope>test</scope>
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   346
        </dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   347
        <dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   348
            <groupId>javax.servlet</groupId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   349
            <artifactId>jstl</artifactId>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   350
            <version>${javax-servlet-jstl-version}</version>
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   351
            <scope>runtime</scope>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   352
        </dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   353
        <dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   354
            <groupId>org.thymeleaf</groupId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   355
            <artifactId>thymeleaf</artifactId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   356
            <version>${thymeleaf-version}</version>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   357
        </dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   358
        <dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   359
            <groupId>org.thymeleaf</groupId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   360
            <artifactId>thymeleaf-spring3</artifactId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   361
            <version>${thymeleaf-version}</version>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   362
        </dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   363
        <dependency>
150
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   364
            <groupId>org.thymeleaf.extras</groupId>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   365
            <artifactId>thymeleaf-extras-springsecurity3</artifactId>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   366
            <version>${thymeleaf-springsecurity-version}</version>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   367
        </dependency>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   368
        <dependency>
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   369
            <groupId>net.sourceforge.nekohtml</groupId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   370
            <artifactId>nekohtml</artifactId>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   371
            <version>${nekohtml-version}</version>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   372
        </dependency>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   373
        <dependency>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   374
            <groupId>com.fasterxml.jackson.core</groupId>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   375
            <artifactId>jackson-core</artifactId>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   376
            <version>${jackson-version}</version>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   377
        </dependency>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   378
        <dependency>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   379
            <groupId>com.fasterxml.jackson.core</groupId>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   380
            <artifactId>jackson-databind</artifactId>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   381
            <version>${jackson-version}</version>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   382
        </dependency>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   383
        <dependency>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   384
            <groupId>com.fasterxml.jackson.core</groupId>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   385
            <artifactId>jackson-annotations</artifactId>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   386
            <version>${jackson-version}</version>
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   387
        </dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   388
        <dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   389
            <groupId>com.fasterxml.jackson.jaxrs</groupId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   390
            <artifactId>jackson-jaxrs-json-provider</artifactId>
71
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   391
            <version>${jackson-version}</version>
51
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   392
        </dependency>
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   393
        <dependency>
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   394
            <groupId>commons-codec</groupId>
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   395
            <artifactId>commons-codec</artifactId>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   396
            <version>${commons-codec-version}</version>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   397
        </dependency>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   398
        <dependency>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   399
            <groupId>org.eclipse.jetty.aggregate</groupId>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   400
            <artifactId>jetty-all</artifactId>
106
d34e253f5c32 Simplify spring integration + correct key for collaborative usage
ymh <ymh.work@gmail.com>
parents: 103
diff changeset
   401
            <version>${jetty-version}</version>
d34e253f5c32 Simplify spring integration + correct key for collaborative usage
ymh <ymh.work@gmail.com>
parents: 103
diff changeset
   402
        </dependency>
d34e253f5c32 Simplify spring integration + correct key for collaborative usage
ymh <ymh.work@gmail.com>
parents: 103
diff changeset
   403
        <dependency>
71
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   404
            <groupId>org.springframework.security</groupId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   405
            <artifactId>spring-security-core</artifactId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   406
            <version>${spring-security-version}</version>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   407
        </dependency> 
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   408
        <dependency>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   409
            <groupId>org.springframework.security</groupId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   410
            <artifactId>spring-security-web</artifactId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   411
            <version>${spring-security-version}</version>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   412
        </dependency> 
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   413
        <dependency>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   414
            <groupId>org.springframework.security</groupId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   415
            <artifactId>spring-security-config</artifactId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   416
            <version>${spring-security-version}</version>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   417
        </dependency>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   418
        <dependency>
150
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   419
            <groupId>org.springframework.security</groupId>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   420
            <artifactId>spring-security-acl</artifactId>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   421
            <version>${spring-security-version}</version>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   422
        </dependency>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   423
	    <dependency>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   424
            <groupId>org.springframework.security</groupId>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   425
            <artifactId>spring-security-taglibs</artifactId>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   426
            <version>${spring-security-version}</version>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   427
	    </dependency>        
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   428
        <dependency>
71
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   429
	       <groupId>de.undercouch</groupId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   430
	       <artifactId>bson4jackson</artifactId>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   431
	       <version>${bson4jackson-version}</version>
71
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   432
        </dependency>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   433
        <dependency>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   434
            <groupId>joda-time</groupId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   435
            <artifactId>joda-time</artifactId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   436
            <version>${joda-version}</version>
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   437
        </dependency>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   438
        <dependency>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   439
            <groupId>javax.validation</groupId>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   440
            <artifactId>validation-api</artifactId>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   441
            <version>${javax-validation-api-version}</version>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   442
        </dependency>        
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   443
        <dependency>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   444
            <groupId>org.hibernate</groupId>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   445
            <artifactId>hibernate-validator</artifactId>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   446
            <version>${hibernate-validator-version}</version>
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   447
        </dependency>
129
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   448
        <dependency>
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   449
            <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
   450
            <artifactId>java-uuid-generator</artifactId>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   451
            <version>${fasterxml-java-uuid-generator-version}</version>
129
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   452
        </dependency>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   453
    </dependencies>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   454
    <organization>
220
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   455
        <name>IRI</name>
ecbb104cf3b6 Upgrade to jetty 8, Jersey 2.3, cometd 2.7, coweb 1.0.1 and more...
ymh <ymh.work@gmail.com>
parents: 215
diff changeset
   456
        <url>http://www.iri.centrepompidou.fr</url>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   457
    </organization>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   458
</project>