-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
186 lines (186 loc) · 7.23 KB
/
pom.xml
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.rvkb.ecahier</groupId>
<artifactId>ecahier</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>ecahier</name>
<properties>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<woko.version>2.0-SNAPSHOT</woko.version>
</properties>
<dependencies>
<dependency>
<groupId>com.pojosontheweb</groupId>
<artifactId>woko-web-bootstrap</artifactId>
<version>${woko.version}</version>
<type>war</type>
</dependency>
<dependency>
<groupId>com.pojosontheweb</groupId>
<artifactId>woko-ri</artifactId>
<version>${woko.version}</version>
</dependency>
<dependency>
<groupId>com.pojosontheweb</groupId>
<artifactId>woko-builtin-auth-web</artifactId>
<version>${woko.version}</version>
<type>war</type>
</dependency>
<dependency>
<groupId>com.pojosontheweb</groupId>
<artifactId>woko-usermanagement-web</artifactId>
<version>${woko.version}</version>
<type>war</type>
</dependency>
<dependency>
<groupId>com.pojosontheweb</groupId>
<artifactId>woko-usermanagement-core</artifactId>
<version>${woko.version}</version>
</dependency>
<dependency>
<groupId>com.pojosontheweb</groupId>
<artifactId>woko-push</artifactId>
<version>${woko.version}</version>
</dependency>
<dependency>
<groupId>com.pojosontheweb</groupId>
<artifactId>woko-tooling</artifactId>
<version>${woko.version}</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>2.3</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy</artifactId>
<version>1.7.4</version>
</dependency>
<dependency>
<groupId>com.pojosontheweb</groupId>
<artifactId>woko-dojo</artifactId>
<version>1.6.1</version>
<type>war</type>
</dependency>
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-highlighter</artifactId>
<version>2.4.1</version>
</dependency>
<dependency>
<groupId>postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>8.4-702.jdbc4</version>
</dependency>
<!-- MySQL -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.0.2</version>
</dependency>
<!-- Hibernate connection C3P0-->
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-c3p0</artifactId>
<version>3.5.6-Final</version>
</dependency>
</dependencies>
<build>
<finalName>ecahier</finalName>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>org.mortbay.jetty</groupId>
<artifactId>maven-jetty-plugin</artifactId>
<version>6.1.10</version>
<configuration>
<scanIntervalSeconds>10</scanIntervalSeconds>
<contextPath>/ecahier</contextPath>
<tmpDir>target/tmp</tmpDir>
<stopKey>foo</stopKey>
<stopPort>9999</stopPort>
<requestLog implementation="org.mortbay.jetty.NCSARequestLog">
<filename>target/yyyy_mm_dd.request.log</filename>
<retainDays>90</retainDays>
<append>true</append>
<extended>false</extended>
<logTimeZone>GMT</logTimeZone>
</requestLog>
</configuration>
</plugin>
<plugin>
<artifactId>maven-war-plugin</artifactId>
<version>2.2</version>
<configuration>
<configuration>
<warSourceExcludes>WEB-INF/lib/servlet-api*.jar</warSourceExcludes>
</configuration>
</configuration>
</plugin>
<plugin>
<groupId>com.pojosontheweb</groupId>
<artifactId>woko-maven-plugin</artifactId>
<version>${woko.version}</version>
<executions>
<execution>
<id>woko.environment</id>
<phase>process-resources</phase>
<goals>
<goal>env</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<version>1.2</version>
<executions>
<execution>
<goals>
<goal>generateStubs</goal>
<goal>compile</goal>
<goal>generateTestStubs</goal>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.codehaus.gmaven.runtime</groupId>
<artifactId>gmaven-runtime-1.7</artifactId>
<version>1.2</version>
<exclusions>
<exclusion>
<artifactId>groovy-all</artifactId>
<groupId>org.codehaus.groovy</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>1.7.0</version>
</dependency>
</dependencies>
<configuration>
<providerSelection>1.7</providerSelection>
</configuration>
</plugin>
</plugins>
</build>
</project>