server/java/pom.xml
author rougeronj
Tue, 22 Sep 2015 15:14:10 +0200
changeset 543 5f7bebdcfc0d
parent 528 468b9176c3f3
child 535 4797b25c5dd1
permissions -rw-r--r--
Improve the way we init the view. The data loader send a "loaded" event, hooked by the scene.py and initializing the backbone.history and the view. We don't use redraw_active in save-once and full-json, because it was making the view initialization dependent of these file which are externals. Small fix to hide the "set saved view" button when there is only one view.
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"?>
309
0c3e6e66881f reorg java sources - add management commands
ymh <ymh.work@gmail.com>
parents: 308
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/maven-v4_0_0.xsd">
0c3e6e66881f reorg java sources - add management commands
ymh <ymh.work@gmail.com>
parents: 308
diff changeset
     3
    <modelVersion>4.0.0</modelVersion>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
     4
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>
309
0c3e6e66881f reorg java sources - add management commands
ymh <ymh.work@gmail.com>
parents: 308
diff changeset
     7
    <packaging>pom</packaging>
528
468b9176c3f3 increment client version
rougeronj
parents: 522
diff changeset
     8
    <version>0.12.4</version>
309
0c3e6e66881f reorg java sources - add management commands
ymh <ymh.work@gmail.com>
parents: 308
diff changeset
     9
    <name>Renkan project</name>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    10
309
0c3e6e66881f reorg java sources - add management commands
ymh <ymh.work@gmail.com>
parents: 308
diff changeset
    11
    <modules>
0c3e6e66881f reorg java sources - add management commands
ymh <ymh.work@gmail.com>
parents: 308
diff changeset
    12
        <module>renkan-core</module>
0c3e6e66881f reorg java sources - add management commands
ymh <ymh.work@gmail.com>
parents: 308
diff changeset
    13
        <module>renkan-web</module>
0c3e6e66881f reorg java sources - add management commands
ymh <ymh.work@gmail.com>
parents: 308
diff changeset
    14
        <module>renkan-management</module>
0c3e6e66881f reorg java sources - add management commands
ymh <ymh.work@gmail.com>
parents: 308
diff changeset
    15
    </modules>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    16
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    17
    <build>
309
0c3e6e66881f reorg java sources - add management commands
ymh <ymh.work@gmail.com>
parents: 308
diff changeset
    18
        <pluginManagement>
0c3e6e66881f reorg java sources - add management commands
ymh <ymh.work@gmail.com>
parents: 308
diff changeset
    19
            <plugins>
0c3e6e66881f reorg java sources - add management commands
ymh <ymh.work@gmail.com>
parents: 308
diff changeset
    20
                <plugin>
0c3e6e66881f reorg java sources - add management commands
ymh <ymh.work@gmail.com>
parents: 308
diff changeset
    21
                    <groupId>org.apache.maven.plugins</groupId>
0c3e6e66881f reorg java sources - add management commands
ymh <ymh.work@gmail.com>
parents: 308
diff changeset
    22
                    <artifactId>maven-compiler-plugin</artifactId>
0c3e6e66881f reorg java sources - add management commands
ymh <ymh.work@gmail.com>
parents: 308
diff changeset
    23
                    <configuration>
0c3e6e66881f reorg java sources - add management commands
ymh <ymh.work@gmail.com>
parents: 308
diff changeset
    24
                        <source>1.7</source>
0c3e6e66881f reorg java sources - add management commands
ymh <ymh.work@gmail.com>
parents: 308
diff changeset
    25
                        <target>1.7</target>
0c3e6e66881f reorg java sources - add management commands
ymh <ymh.work@gmail.com>
parents: 308
diff changeset
    26
                    </configuration>
0c3e6e66881f reorg java sources - add management commands
ymh <ymh.work@gmail.com>
parents: 308
diff changeset
    27
                </plugin>
0c3e6e66881f reorg java sources - add management commands
ymh <ymh.work@gmail.com>
parents: 308
diff changeset
    28
            </plugins>
0c3e6e66881f reorg java sources - add management commands
ymh <ymh.work@gmail.com>
parents: 308
diff changeset
    29
        </pluginManagement>
0c3e6e66881f reorg java sources - add management commands
ymh <ymh.work@gmail.com>
parents: 308
diff changeset
    30
    </build>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    31
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    32
    <dependencies>
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
        <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
    34
            <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
    35
            <artifactId>junit</artifactId>
309
0c3e6e66881f reorg java sources - add management commands
ymh <ymh.work@gmail.com>
parents: 308
diff changeset
    36
            <version>3.8.1</version>
308
7fcb9d12e181 Correct problem with project id and exported/imported project
ymh <ymh.work@gmail.com>
parents: 305
diff changeset
    37
            <scope>test</scope>
7fcb9d12e181 Correct problem with project id and exported/imported project
ymh <ymh.work@gmail.com>
parents: 305
diff changeset
    38
        </dependency>
9
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    39
    </dependencies>
2ab67fa1e78d add first server code version
ymh <ymh.work@gmail.com>
parents:
diff changeset
    40
</project>