Project

General

Profile

Download (14 KB) Statistics
| Branch: | Tag: | Revision:
1
<?xml version="1.0" encoding="UTF-8"?>
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">
3
  <modelVersion>4.0.0</modelVersion>
4
  <parent>
5
    <artifactId>cdmlib-parent</artifactId>
6
    <groupId>eu.etaxonomy</groupId>
7
    <version>5.28.0</version>
8
    <relativePath>../pom.xml</relativePath>
9
  </parent>
10
  <artifactId>cdmlib-remote-webapp</artifactId>
11
  <name>CDM Remote Webapp</name>
12
  <packaging>war</packaging>
13

    
14
  <properties>
15
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
16
    <!-- by default 
17
      no further args by now, see profiles for alternative run configurations -->
18
  </properties>
19

    
20
  <profiles>
21
    <profile>
22
      <id>local-repository</id>
23
      <activation>
24
        <property>
25
          <name>localrepo</name>
26
        </property>
27
      </activation>
28
      <repositories>
29
        <repository>
30
          <id>EditLocalRepository</id>
31
          <url>file://${localrepo}/eu/etaxonomy/</url>
32
          <releases>
33
            <enabled>false</enabled>
34
            <updatePolicy>always</updatePolicy>
35
          </releases>
36
          <snapshots>
37
            <enabled>true</enabled>
38
            <updatePolicy>always</updatePolicy>
39
          </snapshots>
40
        </repository>
41
      </repositories>
42
    </profile>
43
    <!-- ========================= PROFILE : db-create ========================= -->
44
    <!--  How to execute from parent project:
45
        1.) mvn package -DskipTests 
46
        2.) mvn integration-test -pl cdmlib-remote-webapp -Pdb-create
47
    -->
48
    <profile>
49
      <id>db-create</id>
50
      <activation>
51
        <property>
52
          <name>db-create</name>
53
        </property>
54
      </activation>
55
      <properties>
56
        <integrationTest.jvmArgs.cdm.datasource>h2_cdm_blank</integrationTest.jvmArgs.cdm.datasource>
57
        <integrationTest.jvmArgs.cdm.forceSchemaCreate>true</integrationTest.jvmArgs.cdm.forceSchemaCreate>
58
        <integrationTest.log4j.configuration>${project.build.directory}/target/test-classes/log4j.properties</integrationTest.log4j.configuration>
59
      </properties>
60
      <build>
61
        <plugins>
62
          <plugin>
63
            <artifactId>maven-failsafe-plugin</artifactId>
64
            <version>2.16</version>
65
            <configuration>
66
              <forkCount>3</forkCount>
67
              <reuseForks>true</reuseForks>
68
            </configuration>
69
            <executions>
70
              <execution>
71
                <goals>
72
                  <goal>integration-test</goal>
73
                  <goal>verify</goal>
74
                </goals>
75
                <configuration>
76
                  <includes>
77
                    <include>**/ForceSchemaCreateIT.java</include>
78
                  </includes>
79
                </configuration>
80
              </execution>
81
            </executions>
82
          </plugin>
83
        </plugins>
84
      </build>
85
    </profile>
86
    <!-- ========================= DEFAULT-PROFILE : db-use ========================= -->
87
     <profile>
88
      <id>db-use</id>
89
      <activation>
90
        <activeByDefault>true</activeByDefault>
91
        <property>
92
          <name>db-use</name>
93
        </property>
94
      </activation>
95
      <properties>
96
        <integrationTest.jvmArgs.cdm.datasource>h2_cdmTest</integrationTest.jvmArgs.cdm.datasource>
97
        <integrationTest.jvmArgs.cdm.forceSchemaCreate>false</integrationTest.jvmArgs.cdm.forceSchemaCreate>
98
        <integrationTest.log4j.configuration>${project.build.directory}/target/test-classes/log4j.properties</integrationTest.log4j.configuration>
99
      </properties>
100
      <build>
101
        <plugins>
102
          <plugin>
103
            <artifactId>maven-failsafe-plugin</artifactId>
104
            <version>2.16</version>
105
            <configuration>
106
              <forkCount>3</forkCount>
107
              <reuseForks>true</reuseForks>
108
            </configuration>
109
            <executions>
110
              <execution>
111
                <goals>
112
                  <goal>integration-test</goal>
113
                  <goal>verify</goal>
114
                </goals>
115
                <configuration>
116
                  <systemPropertyVariables>
117
                    <cdm.datasource>h2_cdmTest</cdm.datasource>
118
                  </systemPropertyVariables>
119
                  <excludes>
120
                    <exclude>**/ForceSchemaCreateIT.java</exclude>
121
                  </excludes>
122
                </configuration>
123
              </execution>
124
            </executions>
125
          </plugin>
126
        </plugins>
127
      </build>
128
    </profile>
129
  </profiles>
130
  <dependencies>
131
    <dependency>
132
      <groupId>eu.etaxonomy</groupId>
133
      <artifactId>cdmlib-remote</artifactId>
134
      <exclusions>
135
        <!-- exclude all jdbc drivers from the war. Jdbc drivers must only 
136
          be added to {APPLICATION_CONTAINER}/lib see http://dev.e-taxonomy.eu/trac/ticket/4955 
137
          and http://stackoverflow.com/questions/6981564/why-must-the-jdbc-driver-be-put-in-tomcat-home-lib-folder -->
138
        <exclusion>
139
          <groupId>eu.etaxonomy</groupId>
140
          <artifactId>cdmlib-db</artifactId>
141
        </exclusion>
142
      </exclusions>
143
    </dependency>
144
    <dependency>
145
      <groupId>eu.etaxonomy</groupId>
146
      <artifactId>cdmlib-test</artifactId>
147
      <scope>test</scope>
148
    </dependency>
149
    <dependency>
150
      <!-- TODO this is also offered by cdmlib-remote, can it be removed? 
151
        What does provided mean? -->
152
      <groupId>javax.servlet</groupId>
153
      <artifactId>javax.servlet-api</artifactId>
154
      <scope>provided</scope>
155
    </dependency>
156

    
157
    <dependency>
158
      <groupId>xmlunit</groupId>
159
      <artifactId>xmlunit</artifactId>
160
    </dependency>
161
    <!-- JsonView -->
162
    <!-- -->
163
    <dependency>
164
      <groupId>org.springframework</groupId>
165
      <artifactId>spring-oxm</artifactId>
166
    </dependency>
167

    
168
    <!-- XmlView -->
169
    <dependency>
170
      <!-- this is also offered by cdmlib-remote. Can it be removed? -->
171
      <groupId>com.thoughtworks.xstream</groupId>
172
      <artifactId>xstream</artifactId>
173
      <exclusions>
174
        <!-- https://stackoverflow.com/questions/17077922/maven-xpp3-versus-xpp3-min -->
175
        <!-- But maybe we can exclude xpp3 instead, not sure if it is directly needed or only for xstream -->
176
        <exclusion>
177
            <groupId>xpp3</groupId>
178
            <artifactId>xpp3_min</artifactId>
179
        </exclusion>
180
      </exclusions>
181
    </dependency>
182
    <dependency>
183
      <groupId>xpp3</groupId>
184
      <artifactId>xpp3</artifactId>
185
    </dependency>
186

    
187
    <!-- swagger -->
188
    <dependency>
189
      <groupId>io.springfox</groupId>
190
      <artifactId>springfox-swagger2</artifactId>
191
      <scope>test</scope>
192
    </dependency>
193
    <!-- dependencies for springfox-swagger2, added explicitly to pin the 
194
      version these dependencies are also required by the cdmlib! -->
195
    <dependency>
196
      <groupId>com.fasterxml.jackson.core</groupId>
197
      <artifactId>jackson-databind</artifactId>
198
    </dependency>
199
    <dependency>
200
      <groupId>com.fasterxml.jackson.core</groupId>
201
      <artifactId>jackson-core</artifactId>
202
    </dependency>
203
    <dependency>
204
      <groupId>com.fasterxml.jackson.core</groupId>
205
      <artifactId>jackson-annotations</artifactId>
206
    </dependency>
207
    <!-- END of dependencies for swagger-springmvc, added explicitely -->
208

    
209
    <!-- testing -->
210
    <dependency>
211
      <groupId>junit</groupId>
212
      <artifactId>junit</artifactId>
213
      <scope>test</scope>
214
    </dependency>
215

    
216
    <!-- Connection Pooling and jdbc -->
217
    <dependency>
218
      <groupId>org.hibernate</groupId>
219
      <artifactId>hibernate-c3p0</artifactId>
220
      <scope>test</scope>
221
    </dependency>
222
    <!-- <dependency> -->
223
    <!-- <groupId>com.mchange</groupId> -->
224
    <!-- <artifactId>c3p0</artifactId> -->
225
    <!-- <scope>test</scope> -->
226
    <!-- </dependency> -->
227
    <!-- Profiling -->
228
    <dependency>
229
      <groupId>com.yourkit</groupId>
230
      <artifactId>yjp-controller-api-redist</artifactId>
231
      <scope>test</scope>
232
    </dependency>
233
  </dependencies>
234

    
235
  <build>
236
    <resources>
237
      <resource>
238
        <!-- replace the place holders like ${...} in datasources.xml -->
239
        <filtering>true</filtering>
240
        <directory>src/test/resources</directory>
241
        <targetPath>../test-classes</targetPath>
242
        <includes>
243
          <include>datasources.xml</include>
244
        </includes>
245
      </resource>
246
      <resource>
247
        <!-- all other test resources without filtering -->
248
        <directory>src/test/resources</directory>
249
        <targetPath>../test-classes</targetPath>
250
        <excludes>
251
          <exclude>datasources.xml</exclude>
252
        </excludes>
253
      </resource>
254
      <resource>
255
        <!-- all main resources without filtering -->
256
        <directory>src/main/resources</directory>
257
      </resource>
258
    </resources>
259
    <plugins>
260
      <plugin>
261
        <artifactId>maven-failsafe-plugin</artifactId>
262
        <version>2.16</version>
263
        <!-- configuration per maven profile -->
264
        
265
<!--         <configuration> -->
266
<!--           <forkCount>3</forkCount> -->
267
<!--           <reuseForks>true</reuseForks> -->
268
<!--         </configuration> -->
269
<!--         <executions> -->
270
<!--           <execution> -->
271
<!--             <id>default</id> -->
272
<!--             <goals> -->
273
<!--               <goal>integration-test</goal> -->
274
<!--               <goal>verify</goal> -->
275
<!--             </goals> -->
276
<!--             <configuration> -->
277
<!--               <systemPropertyVariables> -->
278
<!--                 <cdm.datasource>h2_cdmTest</cdm.datasource> -->
279
<!--               </systemPropertyVariables> -->
280
<!--               <excludes> -->
281
<!--                 <exclude>**/ForceSchemaCreateIT.java</exclude> -->
282
<!--               </excludes> -->
283
<!--             </configuration> -->
284
<!--           </execution> -->
285
<!--         </executions> -->
286
      </plugin>
287
      <plugin>
288
        <groupId>org.eclipse.jetty</groupId>
289
        <artifactId>jetty-maven-plugin</artifactId>
290
        <version>9.4.15.v20190215</version>
291
        <configuration>
292
          <stopKey>stop</stopKey>
293
          <stopPort>9199</stopPort>
294
          <scanIntervalSeconds>10</scanIntervalSeconds>
295
          <useTestScope>true</useTestScope>
296
          <!-- jvmArgs will only be used when running mvn jetty:run-forked -->
297
          <jvmArgs>-Xmx2000M 
298
            -Dcdm.datasource=${integrationTest.jvmArgs.cdm.datasource}
299
            -Duser.home=${basedir}/target/target/
300
            -Dcdm.beanDefinitionFile=${project.build.directory}/test-classes/datasources.xml
301
            -Dspring.profiles.active=remoting
302
            -Dcdm.forceSchemaCreate=${integrationTest.jvmArgs.cdm.forceSchemaCreate}
303
            -Dlog4j.configuration=${integrationTest.jvmArgs.log4j.configuration}
304
            -Dorg.eclipse.jetty.annotations.AnnotationParser.LEVEL=OFF
305
           </jvmArgs>
306
          <jettyXml>${basedir}/src/test/resources/etc/jetty/jetty.xml,${basedir}/src/test/resources/etc/jetty/jetty-http.xml</jettyXml>
307
          <!-- <jettyXml>./src/test/resources/etc/jetty/jetty.xml,./src/test/resources/etc/jetty/jetty-http.xml,./src/test/resources/etc/jetty/jetty-ssl.xml,./src/test/resources/etc/jetty/jetty-https.xml</jettyXml> -->
308
          <systemProperties>
309
            <force>true</force>
310
            <systemProperty>
311
              <name>cdm.datasource</name>
312
              <value>${integrationTest.jvmArgs.cdm.datasource}</value>
313
            </systemProperty>
314
            <systemProperty>
315
              <!-- The lucene index should be placed into the target folder, 
316
                so user.home needs to be set to this folder. user.home needs to be overridden 
317
                since it already exists, thus the force option is turned on above -->
318
              <name>user.home</name>
319
              <value>${basedir}/target/</value>
320
            </systemProperty>
321
            <systemProperty>
322
              <!-- datasources.xml is prepared by <plugins><resources>..</resources> above -->
323
              <name>cdm.beanDefinitionFile</name>
324
              <value>${project.build.directory}/test-classes/datasources.xml</value>
325
            </systemProperty>
326
            <systemProperty>
327
                <name>cdm.forceSchemaCreate</name>
328
                <value>${integrationTest.jvmArgs.cdm.forceSchemaCreate}</value>
329
            </systemProperty>
330
            <systemProperty>
331
              <!-- start with swagger profile so that the swagger doc can 
332
                be generated -->
333
              <name>spring.profiles.active</name>
334
              <value>swagger</value>
335
            </systemProperty>
336
            <systemProperty>
337
                <name>log4j.configuration</name>
338
                <value>${integrationTest.jvmArgs.log4j.configuration}</value>
339
            </systemProperty>
340
          </systemProperties>
341
        </configuration>
342
        <executions>
343
          <execution>
344
            <id>start-jetty</id>
345
            <phase>pre-integration-test</phase>
346
            <goals>
347
              <goal>start</goal>
348
            </goals>
349
            <configuration>
350
              <scanIntervalSeconds>0</scanIntervalSeconds>
351
              <daemon>true</daemon>
352
            </configuration>
353
          </execution>
354
          <execution>
355
            <id>stop-jetty</id>
356
            <phase>post-integration-test</phase>
357
            <goals>
358
              <goal>stop</goal>
359
            </goals>
360
          </execution>
361
        </executions>
362
      </plugin>
363
      <plugin>
364
        <groupId>org.apache.maven.plugins</groupId>
365
        <artifactId>maven-war-plugin</artifactId>
366
        <version>2.6</version>
367
        <executions>
368
          <execution>
369
            <!-- The war must be created after running the integration-tests, 
370
              since the SwaggerGroupsIT test populates the classes/api-docs-static/ folder 
371
              with static swagger doc files. They are otherwise not packed into the war 
372
              file. -->
373
            <phase>verify</phase>
374
            <goals>
375
              <goal>war</goal>
376
            </goals>
377
          </execution>
378
        </executions>
379
      </plugin>
380
      <plugin>
381
        <artifactId>maven-resources-plugin</artifactId>
382
        <version>2.7</version>
383
        <configuration>
384
          <escapeWindowsPaths>false</escapeWindowsPaths>
385
        </configuration>
386
      </plugin>
387
    </plugins>
388
  </build>
389
</project>
(3-3/3)