server/pom.xml
author ymh <ymh.work@gmail.com>
Sat, 14 Jun 2014 00:15:18 +0200
changeset 305 4dc484119b4c
parent 304 8ad1734d9d8a
child 308 7fcb9d12e181
permissions -rw-r--r--
Streamline commands. Add popup menus. new version
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>
305
4dc484119b4c Streamline commands. Add popup menus. new version
ymh <ymh.work@gmail.com>
parents: 304
diff changeset
     7
    <version>0.7.10</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>
257
6bf1126c5add add header to go back to space
ymh <ymh.work@gmail.com>
parents: 246
diff changeset
    14
        <jersey-version>2.5.1</jersey-version>
6bf1126c5add add header to go back to space
ymh <ymh.work@gmail.com>
parents: 246
diff changeset
    15
        <spring-version>3.2.6.RELEASE</spring-version>
6bf1126c5add add header to go back to space
ymh <ymh.work@gmail.com>
parents: 246
diff changeset
    16
        <spring-data-mongodb-version>1.3.3.RELEASE</spring-data-mongodb-version>
6bf1126c5add add header to go back to space
ymh <ymh.work@gmail.com>
parents: 246
diff changeset
    17
        <spring-security-version>3.2.0.RELEASE</spring-security-version>
258
c14725cb24ae take version from manifest
ymh <ymh.work@gmail.com>
parents: 257
diff changeset
    18
        <spring-data-commons-version>1.6.3.RELEASE</spring-data-commons-version>
257
6bf1126c5add add header to go back to space
ymh <ymh.work@gmail.com>
parents: 246
diff changeset
    19
        <spring-data-jpa-version>1.4.3.RELEASE</spring-data-jpa-version>
246
176ff9c25b8d upgrade jetty
ymh <ymh.work@gmail.com>
parents: 245
diff changeset
    20
        <jetty-plugin-version>8.1.14.v20131031</jetty-plugin-version>
176ff9c25b8d upgrade jetty
ymh <ymh.work@gmail.com>
parents: 245
diff changeset
    21
        <jetty-version>8.1.14.v20131031</jetty-version>
223
5ad314cb2337 Upgrade libs + format sources
ymh <ymh.work@gmail.com>
parents: 221
diff changeset
    22
        <junit-version>4.11</junit-version>
233
bf599928e1ad correct joda migration
ymh <ymh.work@gmail.com>
parents: 232
diff changeset
    23
        <thymeleaf-version>2.1.1.RELEASE</thymeleaf-version>
bf599928e1ad correct joda migration
ymh <ymh.work@gmail.com>
parents: 232
diff changeset
    24
        <thymeleaf-springsecurity-version>2.1.0.RELEASE</thymeleaf-springsecurity-version>
bf599928e1ad correct joda migration
ymh <ymh.work@gmail.com>
parents: 232
diff changeset
    25
        <thymeleaf-joda-dialect-version>0.0.3</thymeleaf-joda-dialect-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
    26
        <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
    27
        <jackson-version>2.2.3</jackson-version>
223
5ad314cb2337 Upgrade libs + format sources
ymh <ymh.work@gmail.com>
parents: 221
diff changeset
    28
        <joda-version>2.3</joda-version>
258
c14725cb24ae take version from manifest
ymh <ymh.work@gmail.com>
parents: 257
diff changeset
    29
        <mongo-driver-version>2.11.4</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
    30
        <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
    31
        <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
    32
        <javax-inject-version>1</javax-inject-version>
221
a392390de1a7 upgrade to servlet 3.0
ymh <ymh.work@gmail.com>
parents: 220
diff changeset
    33
        <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
    34
        <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
    35
        <javax-persistence-api-version>1.0.2</javax-persistence-api-version>
223
5ad314cb2337 Upgrade libs + format sources
ymh <ymh.work@gmail.com>
parents: 221
diff changeset
    36
        <javax-validation-api-version>1.1.0.Final</javax-validation-api-version>
5ad314cb2337 Upgrade libs + format sources
ymh <ymh.work@gmail.com>
parents: 221
diff changeset
    37
        <hibernate-validator-version>5.0.1.Final</hibernate-validator-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
    38
        <slf4j-log4j12-version>1.7.5</slf4j-log4j12-version>
223
5ad314cb2337 Upgrade libs + format sources
ymh <ymh.work@gmail.com>
parents: 221
diff changeset
    39
        <nekohtml-version>1.9.19</nekohtml-version>
5ad314cb2337 Upgrade libs + format sources
ymh <ymh.work@gmail.com>
parents: 221
diff changeset
    40
        <commons-codec-version>1.8</commons-codec-version>
5ad314cb2337 Upgrade libs + format sources
ymh <ymh.work@gmail.com>
parents: 221
diff changeset
    41
        <bson4jackson-version>2.2.3</bson4jackson-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
    42
        <fasterxml-java-uuid-generator-version>3.1.3</fasterxml-java-uuid-generator-version>
299
c5086f714631 add view management on server
ymh <ymh.work@gmail.com>
parents: 290
diff changeset
    43
        <guava-version>17.0</guava-version>
304
8ad1734d9d8a add export link on project
ymh <ymh.work@gmail.com>
parents: 300
diff changeset
    44
        <json-path-version>0.9.1</json-path-version>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    45
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    46
    </properties>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    47
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    48
    <build>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    49
        <defaultGoal>install</defaultGoal>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    50
        <plugins>
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
                <groupId>org.apache.maven.plugins</groupId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    53
                <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
    54
                <version>3.1</version>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    55
                <configuration>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    56
                    <source>1.7</source>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    57
                    <target>1.7</target>
224
0167b777ad15 remove deprecated warnings + fix date picker default langauge
ymh <ymh.work@gmail.com>
parents: 223
diff changeset
    58
                    <compilerArgs>
0167b777ad15 remove deprecated warnings + fix date picker default langauge
ymh <ymh.work@gmail.com>
parents: 223
diff changeset
    59
                        <arg>-Xlint</arg>
0167b777ad15 remove deprecated warnings + fix date picker default langauge
ymh <ymh.work@gmail.com>
parents: 223
diff changeset
    60
                    </compilerArgs>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    61
                </configuration>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    62
            </plugin>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    63
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    64
            <plugin>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    65
                <groupId>org.mortbay.jetty</groupId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    66
                <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
    67
                <version>${jetty-plugin-version}</version>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    68
                <configuration>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    69
                    <scanIntervalSeconds>10</scanIntervalSeconds>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    70
                    <webApp>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    71
                        <contextPath>/renkan</contextPath>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    72
                    </webApp>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    73
                </configuration>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    74
            </plugin>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    75
            
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    76
            <plugin>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    77
                <artifactId>maven-war-plugin</artifactId>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
    78
                <version>2.3</version>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    79
                <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
    80
                    <archive>
97
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 93
diff changeset
    81
                        <manifest>
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 93
diff changeset
    82
                            <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 93
diff changeset
    83
                            <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries>
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 93
diff changeset
    84
                        </manifest>
f7d611f50e58 add version str + improver css + new version
ymh <ymh.work@gmail.com>
parents: 93
diff changeset
    85
                    </archive>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    86
                    <overlays>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    87
                        <overlay>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    88
                            <groupId>org.opencoweb</groupId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    89
                            <artifactId>coweb-javascript</artifactId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    90
                            <type>war</type>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    91
                            <excludes>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    92
                                <exclude>META-INF/**</exclude>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    93
                                <exclude>WEB-INF/**</exclude>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    94
                            </excludes>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    95
                            <targetPath>lib</targetPath>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    96
                        </overlay>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    97
                        <overlay>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    98
                            <groupId>org.opencoweb.cowebx</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
    99
                            <artifactId>cowebx-widgets-dojo</artifactId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   100
                            <type>war</type>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   101
                            <excludes>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   102
                                <exclude>META-INF/**</exclude>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   103
                                <exclude>WEB-INF/**</exclude>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   104
                            </excludes>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   105
                            <targetPath>lib/cowebx/dojo</targetPath>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   106
                        </overlay>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   107
                    </overlays>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   108
                    <webResources>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   109
                        <resource>
290
8a6eb26ac87f move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents: 279
diff changeset
   110
                            <directory>../client/dist/js</directory>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   111
                            <includes>
290
8a6eb26ac87f move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents: 279
diff changeset
   112
                                <include>*.js</include>
58
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>
290
8a6eb26ac87f move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents: 279
diff changeset
   117
                            <directory>../client/dist/lib</directory>
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
   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>
290
8a6eb26ac87f move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents: 279
diff changeset
   121
                            <directory>../client/dist/css</directory>
58
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>
290
8a6eb26ac87f move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents: 279
diff changeset
   128
                            <directory>../client/dist/img</directory>
58
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>
290
8a6eb26ac87f move client build to Grunt and relocate it into client folder. Adjust server to work with the new build.
ymh <ymh.work@gmail.com>
parents: 279
diff changeset
   132
                            <directory>../client/dist/data</directory>
80
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>
232
b7000ff4989b - Use Joda DateTime instead of java.utils.Date
ymh <ymh.work@gmail.com>
parents: 224
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>
232
b7000ff4989b - Use Joda DateTime instead of java.utils.Date
ymh <ymh.work@gmail.com>
parents: 224
diff changeset
   251
        </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
   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>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   256
        </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
   257
        <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
   258
            <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
   259
            <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
   260
            <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
   261
            <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
   262
        </dependency>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   263
        <dependency>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   264
            <groupId>org.mongodb</groupId>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   265
            <artifactId>mongo-java-driver</artifactId>
215
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents: 179
diff changeset
   266
            <version>${mongo-driver-version}</version>
22
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents: 13
diff changeset
   267
        </dependency>
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents: 13
diff changeset
   268
        <dependency> 
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents: 13
diff changeset
   269
            <groupId>org.slf4j</groupId>
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents: 13
diff changeset
   270
            <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
   271
            <version>${slf4j-log4j12-version}</version>
22
948283342245 Session moderator + test in model
ymh <ymh.work@gmail.com>
parents: 13
diff changeset
   272
        </dependency>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   273
        <dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   274
            <groupId>org.springframework</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   275
            <artifactId>spring-core</artifactId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   276
            <version>${spring-version}</version>
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>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   279
            <groupId>org.springframework</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   280
            <artifactId>spring-context</artifactId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   281
            <version>${spring-version}</version>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   282
        </dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   283
        <dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   284
            <groupId>org.springframework</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   285
            <artifactId>spring-web</artifactId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   286
            <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
   287
        </dependency>
45
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</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   290
            <artifactId>spring-test</artifactId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   291
            <version>${spring-version}</version>
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   292
            <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
   293
        </dependency>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   294
        <dependency>
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   295
            <groupId>org.springframework</groupId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   296
            <artifactId>spring-webmvc</artifactId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   297
            <version>${spring-version}</version>
257
6bf1126c5add add header to go back to space
ymh <ymh.work@gmail.com>
parents: 246
diff changeset
   298
        </dependency>
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   299
        <dependency>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   300
            <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
   301
            <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
   302
            <version>${spring-data-commons-version}</version>
45
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
        <dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   305
            <groupId>org.springframework.data</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   306
            <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
   307
            <version>${spring-data-jpa-version}</version>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   308
        </dependency> 
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   309
        <dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   310
            <groupId>org.springframework.data</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   311
            <artifactId>spring-data-mongodb</artifactId>
215
a282eebbc5e0 - add users to Renkan
ymh <ymh.work@gmail.com>
parents: 179
diff changeset
   312
            <version>${spring-data-mongodb-version}</version>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   313
        </dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   314
        <dependency>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   315
            <groupId>javax.persistence</groupId>
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   316
            <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
   317
            <version>${javax-persistence-api-version}</version>
45
37c9a17c3284 - add Spring
ymh <ymh.work@gmail.com>
parents: 22
diff changeset
   318
        </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
   319
        <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
   320
            <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
   321
            <artifactId>junit</artifactId>
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   322
            <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
   323
            <scope>test</scope>
47
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>javax.servlet</groupId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   327
            <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
   328
            <version>${javax-servlet-jstl-version}</version>
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   329
            <scope>runtime</scope>
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
        <dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   332
            <groupId>org.thymeleaf</groupId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   333
            <artifactId>thymeleaf</artifactId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   334
            <version>${thymeleaf-version}</version>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   335
        </dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   336
        <dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   337
            <groupId>org.thymeleaf</groupId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   338
            <artifactId>thymeleaf-spring3</artifactId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   339
            <version>${thymeleaf-version}</version>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   340
        </dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   341
        <dependency>
150
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   342
            <groupId>org.thymeleaf.extras</groupId>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   343
            <artifactId>thymeleaf-extras-springsecurity3</artifactId>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   344
            <version>${thymeleaf-springsecurity-version}</version>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   345
        </dependency>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   346
        <dependency>
233
bf599928e1ad correct joda migration
ymh <ymh.work@gmail.com>
parents: 232
diff changeset
   347
            <groupId>org.thymeleaf.extras</groupId>
bf599928e1ad correct joda migration
ymh <ymh.work@gmail.com>
parents: 232
diff changeset
   348
            <artifactId>thymeleaf-joda-dialect</artifactId>
bf599928e1ad correct joda migration
ymh <ymh.work@gmail.com>
parents: 232
diff changeset
   349
            <version>${thymeleaf-joda-dialect-version}</version>
bf599928e1ad correct joda migration
ymh <ymh.work@gmail.com>
parents: 232
diff changeset
   350
        </dependency>
bf599928e1ad correct joda migration
ymh <ymh.work@gmail.com>
parents: 232
diff changeset
   351
        <dependency>
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   352
            <groupId>net.sourceforge.nekohtml</groupId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   353
            <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
   354
            <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
   355
        </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
   356
        <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
   357
            <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
   358
            <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
   359
            <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
   360
        </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
   361
        <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
   362
            <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
   363
            <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
   364
            <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
   365
        </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
   366
        <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
   367
            <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
   368
            <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
   369
            <version>${jackson-version}</version>
47
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   370
        </dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   371
        <dependency>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   372
            <groupId>com.fasterxml.jackson.jaxrs</groupId>
267d67791e05 first stabilization of editing a renkan.
ymh <ymh.work@gmail.com>
parents: 45
diff changeset
   373
            <artifactId>jackson-jaxrs-json-provider</artifactId>
71
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   374
            <version>${jackson-version}</version>
51
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   375
        </dependency>
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   376
        <dependency>
232
b7000ff4989b - Use Joda DateTime instead of java.utils.Date
ymh <ymh.work@gmail.com>
parents: 224
diff changeset
   377
            <groupId>com.fasterxml.jackson.datatype</groupId>
b7000ff4989b - Use Joda DateTime instead of java.utils.Date
ymh <ymh.work@gmail.com>
parents: 224
diff changeset
   378
            <artifactId>jackson-datatype-joda</artifactId>
b7000ff4989b - Use Joda DateTime instead of java.utils.Date
ymh <ymh.work@gmail.com>
parents: 224
diff changeset
   379
            <version>${jackson-version}</version>
b7000ff4989b - Use Joda DateTime instead of java.utils.Date
ymh <ymh.work@gmail.com>
parents: 224
diff changeset
   380
        </dependency>  
b7000ff4989b - Use Joda DateTime instead of java.utils.Date
ymh <ymh.work@gmail.com>
parents: 224
diff changeset
   381
        <dependency>
51
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   382
            <groupId>commons-codec</groupId>
3247fccfbd3f update on renkan
ymh <ymh.work@gmail.com>
parents: 48
diff changeset
   383
            <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
   384
            <version>${commons-codec-version}</version>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   385
        </dependency>
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   386
        <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
   387
            <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
   388
            <artifactId>jetty-all</artifactId>
106
d34e253f5c32 Simplify spring integration + correct key for collaborative usage
ymh <ymh.work@gmail.com>
parents: 103
diff changeset
   389
            <version>${jetty-version}</version>
d34e253f5c32 Simplify spring integration + correct key for collaborative usage
ymh <ymh.work@gmail.com>
parents: 103
diff changeset
   390
        </dependency>
d34e253f5c32 Simplify spring integration + correct key for collaborative usage
ymh <ymh.work@gmail.com>
parents: 103
diff changeset
   391
        <dependency>
71
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   392
            <groupId>org.springframework.security</groupId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   393
            <artifactId>spring-security-core</artifactId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   394
            <version>${spring-security-version}</version>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   395
        </dependency> 
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   396
        <dependency>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   397
            <groupId>org.springframework.security</groupId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   398
            <artifactId>spring-security-web</artifactId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   399
            <version>${spring-security-version}</version>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   400
        </dependency> 
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   401
        <dependency>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   402
            <groupId>org.springframework.security</groupId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   403
            <artifactId>spring-security-config</artifactId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   404
            <version>${spring-security-version}</version>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   405
        </dependency>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   406
        <dependency>
150
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   407
            <groupId>org.springframework.security</groupId>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   408
            <artifactId>spring-security-acl</artifactId>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   409
            <version>${spring-security-version}</version>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   410
        </dependency>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   411
	    <dependency>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   412
            <groupId>org.springframework.security</groupId>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   413
            <artifactId>spring-security-taglibs</artifactId>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   414
            <version>${spring-security-version}</version>
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   415
	    </dependency>        
5b62100b8562 - replace simple http authentication by form auth
ymh <ymh.work@gmail.com>
parents: 147
diff changeset
   416
        <dependency>
71
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   417
	       <groupId>de.undercouch</groupId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   418
	       <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
   419
	       <version>${bson4jackson-version}</version>
71
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   420
        </dependency>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   421
        <dependency>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   422
            <groupId>joda-time</groupId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   423
            <artifactId>joda-time</artifactId>
9af0874ce43f First version of space level.
ymh <ymh.work@gmail.com>
parents: 58
diff changeset
   424
            <version>${joda-version}</version>
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   425
        </dependency>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   426
        <dependency>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   427
            <groupId>javax.validation</groupId>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   428
            <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
   429
            <version>${javax-validation-api-version}</version>
58
87569ad0ff53 - update libraries
ymh <ymh.work@gmail.com>
parents: 54
diff changeset
   430
        </dependency>        
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   431
        <dependency>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   432
            <groupId>org.hibernate</groupId>
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   433
            <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
   434
            <version>${hibernate-validator-version}</version>
127
906fed13c1e1 space admin edit.
ymh <ymh.work@gmail.com>
parents: 115
diff changeset
   435
        </dependency>
129
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   436
        <dependency>
01c862ada33c Add delete for spaces, check that there is no linked projects
ymh <ymh.work@gmail.com>
parents: 127
diff changeset
   437
            <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
   438
            <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
   439
            <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
   440
        </dependency>
237
0e6c826a046e Add group and user management on user and group repositories + unit tests
ymh <ymh.work@gmail.com>
parents: 233
diff changeset
   441
        <dependency>
0e6c826a046e Add group and user management on user and group repositories + unit tests
ymh <ymh.work@gmail.com>
parents: 233
diff changeset
   442
            <groupId>org.apache.commons</groupId>
0e6c826a046e Add group and user management on user and group repositories + unit tests
ymh <ymh.work@gmail.com>
parents: 233
diff changeset
   443
            <artifactId>commons-collections4</artifactId>
0e6c826a046e Add group and user management on user and group repositories + unit tests
ymh <ymh.work@gmail.com>
parents: 233
diff changeset
   444
            <version>4.0</version>
0e6c826a046e Add group and user management on user and group repositories + unit tests
ymh <ymh.work@gmail.com>
parents: 233
diff changeset
   445
        </dependency>
299
c5086f714631 add view management on server
ymh <ymh.work@gmail.com>
parents: 290
diff changeset
   446
        <dependency>
c5086f714631 add view management on server
ymh <ymh.work@gmail.com>
parents: 290
diff changeset
   447
            <groupId>com.google.guava</groupId>
c5086f714631 add view management on server
ymh <ymh.work@gmail.com>
parents: 290
diff changeset
   448
            <artifactId>guava</artifactId>
c5086f714631 add view management on server
ymh <ymh.work@gmail.com>
parents: 290
diff changeset
   449
            <version>${guava-version}</version>
c5086f714631 add view management on server
ymh <ymh.work@gmail.com>
parents: 290
diff changeset
   450
        </dependency>
304
8ad1734d9d8a add export link on project
ymh <ymh.work@gmail.com>
parents: 300
diff changeset
   451
        <dependency>
8ad1734d9d8a add export link on project
ymh <ymh.work@gmail.com>
parents: 300
diff changeset
   452
            <groupId>com.jayway.jsonpath</groupId>
8ad1734d9d8a add export link on project
ymh <ymh.work@gmail.com>
parents: 300
diff changeset
   453
            <artifactId>json-path-assert</artifactId>
8ad1734d9d8a add export link on project
ymh <ymh.work@gmail.com>
parents: 300
diff changeset
   454
            <version>${json-path-version}</version>
8ad1734d9d8a add export link on project
ymh <ymh.work@gmail.com>
parents: 300
diff changeset
   455
            <scope>test</scope>
8ad1734d9d8a add export link on project
ymh <ymh.work@gmail.com>
parents: 300
diff changeset
   456
        </dependency>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   457
    </dependencies>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   458
    <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
   459
        <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
   460
        <url>http://www.iri.centrepompidou.fr</url>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   461
    </organization>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
   462
</project>