forked from xrosecky/differ
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpom.xml
More file actions
110 lines (103 loc) · 4.77 KB
/
pom.xml
File metadata and controls
110 lines (103 loc) · 4.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?xml version="1.0" encoding="UTF-8"?>
<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">
<modelVersion>4.0.0</modelVersion>
<groupId>cz.nkp</groupId>
<artifactId>differ</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Differ</name>
<prerequisites>
<maven>2.2.1</maven>
</prerequisites>
<properties>
<differ.bin.dir>./bin</differ.bin.dir>
<vaadin.version>6.8.1</vaadin.version>
<gwt.version>2.4.0</gwt.version>
<derby.version>10.8.2.2</derby.version>
<apache.commons-io.version>2.3</apache.commons-io.version>
<apache.commons-codec.version>1.6</apache.commons-codec.version>
<javadjvu-lib.version>0.8.9-RELEASE</javadjvu-lib.version>
<apache.commons-io.version>2.3</apache.commons-io.version>
<jai.version>1.1.3</jai.version>
<proguard-plugin.version>2.0.4</proguard-plugin.version>
<gwt-maven-plugin.version>2.4.0</gwt-maven-plugin.version>
<maven.jar.plugin.version>2.3.1</maven.jar.plugin.version>
<maven.war.plugin.version>2.2</maven.war.plugin.version>
<maven-clean-plugin.version>2.5</maven-clean-plugin.version>
<vaadin-maven-plugin.version>1.0.2</vaadin-maven-plugin.version>
<gmaven-plugin.version>1.0</gmaven-plugin.version>
<jetty-maven-plugin.version>8.1.3.v20120416</jetty-maven-plugin.version>
<maven-compiler-plugin.version>2.4</maven-compiler-plugin.version>
<java.source.version>1.6</java.source.version>
<java.source.target.version>1.6</java.source.target.version>
<sphinx-maven-plugin.version>1.0.3-SNAPSHOT</sphinx-maven-plugin.version>
</properties>
<modules>
<module>differ-webapp</module>
<module>differ-common</module>
<module>differ-cmdline</module>
<!-- <module>differ-selenium</module> -->
<module>differ-dao</module>
</modules>
<build>
<plugins>
<!-- A simple Jetty test server at http://localhost:8080/differ can be launched with the Maven goal jetty:run and stopped with jetty:stop -->
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>jetty-maven-plugin</artifactId>
<version>${jetty-maven-plugin.version}</version>
<inherited>false</inherited>
<configuration>
<stopPort>9966</stopPort>
<stopKey>differ</stopKey>
<!-- Redeploy every x seconds if changes are detected, 0 for no automatic redeployment -->
<scanIntervalSeconds>0</scanIntervalSeconds>
<!-- make sure Jetty also finds the widgetset -->
<war>${differ.bin.dir}/differ.war</war>
<webAppConfig>
<contextPath>/differ</contextPath>
</webAppConfig>
</configuration>
</plugin>
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
<executions>
<execution>
<id>copy-resources</id>
<phase>validate</phase>
<goals>
<goal>copy-resources</goal>
</goals>
<configuration>
<outputDirectory>../${differ.bin.dir}/resources</outputDirectory>
<encoding>UTF-8</encoding>
<resources>
<resource>
<directory>unpacked_resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-maven-plugin</artifactId>
<version>${vaadin-maven-plugin.version}</version>
<inherited>false</inherited>
<executions>
<execution>
<configuration>
<module>cz.nkp.differ.gwt.DifferWidgetSet</module>
</configuration>
<goals>
<goal>update-widgetset</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>