Project

General

Profile

Download (21.7 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/maven-v4_0_0.xsd">
3
  <modelVersion>4.0.0</modelVersion>
4
  <groupId>eu.etaxonomy</groupId>
5
  <artifactId>cdm-vaadin</artifactId>
6
  <packaging>war</packaging>
7
  <version>4.0.0-SNAPSHOT</version>
8
  <name>Vaadin Web Application</name>
9
  <properties>
10
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
11
    <vaadin.version>7.6.3</vaadin.version>
12
    <vaadin.plugin.version>${vaadin.version}</vaadin.plugin.version>
13
    <cdmlib.version>4.0.0-SNAPSHOT</cdmlib.version>
14
    <unitils.version>3.4.2</unitils.version>
15
    <spring.version>4.2.4.RELEASE</spring.version>
16
  </properties>
17
  <prerequisites>
18
    <maven>3.0.5</maven>
19
  </prerequisites>
20
  <repositories>
21
    <!-- the cdm internal repository -->
22
    <repository>
23
      <id>EditRepository</id>
24
      <url>http://wp5.e-taxonomy.eu/mavenrepo/</url>
25
    </repository>
26
    <!-- current spring source repositories -->
27
    <repository>
28
      <id>SpringSource Enterprise Bundle Repository - External Bundle Milestones</id>
29
      <url>http://repository.springsource.com/maven/bundles/milestone</url>
30
    </repository>
31
    <repository>
32
      <id>SpringSource Enterprise Bundle Repository - SpringSource Bundle Releases</id>
33
      <url>http://repository.springsource.com/maven/bundles/release</url>
34
    </repository>
35
    <repository>
36
      <id>SpringSource Enterprise Bundle Repository - External Bundle Releases</id>
37
      <url>http://repository.springsource.com/maven/bundles/external</url>
38
    </repository>
39
    <repository>
40
      <id>vaadin-addons</id>
41
      <url>http://maven.vaadin.com/vaadin-addons</url>
42
    </repository>
43
    <repository>
44
      <id>vaadin-snapshots</id>
45
      <url>http://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
46
      <releases>
47
        <enabled>false</enabled>
48
      </releases>
49
      <snapshots>
50
        <enabled>true</enabled>
51
      </snapshots>
52
    </repository>
53
  </repositories>
54
  <pluginRepositories>
55
    <pluginRepository>
56
      <id>vaadin-snapshots</id>
57
      <url>http://oss.sonatype.org/content/repositories/vaadin-snapshots/</url>
58
      <releases>
59
        <enabled>false</enabled>
60
      </releases>
61
      <snapshots>
62
        <enabled>true</enabled>
63
      </snapshots>
64
    </pluginRepository>
65
  </pluginRepositories>
66
  <distributionManagement>
67
    <repository>
68
      <uniqueVersion>false</uniqueVersion>
69
      <id>wp5.e-taxonomy.eu</id>
70
      <name>Edit Maven Repository</name>
71
      <url>scpexe://wp5.e-taxonomy.eu/var/www/wp5.e-taxonomy.eu/mavenrepo/</url>
72
      <layout>default</layout>
73
    </repository>
74
  </distributionManagement>
75

    
76
  <profiles>
77
    <profile>
78
      <activation>
79
        <property>
80
          <name>align-cdmlib-version</name>
81
        </property>
82
      </activation>
83
      <build>
84
        <plugins>
85
          <plugin>
86
            <groupId>com.google.code.maven-replacer-plugin</groupId>
87
            <artifactId>replacer</artifactId>
88
            <version>1.5.3</version>
89
            <executions>
90
              <execution>
91
                <phase>process-sources</phase>
92
                <goals>
93
                  <goal>replace</goal>
94
                </goals>
95
              </execution>
96
            </executions>
97
            <configuration>
98
              <file>pom.xml</file>
99
              <!-- \u003C = < , \u003E = >  -->
100
              <token>(\u003Ccdmlib\.version\u003E)[^\u003C]*</token>
101
              <value>$1${project.version}</value>
102
            </configuration>
103
          </plugin>
104
        </plugins>
105
      </build>
106
    </profile>
107
  </profiles>
108
  <build>
109
    <plugins>
110
      <plugin>
111
        <groupId>org.apache.maven.plugins</groupId>
112
        <artifactId>maven-compiler-plugin</artifactId>
113
        <version>3.3</version>
114
        <configuration>
115
          <source>1.7</source>
116
          <target>1.7</target>
117
          <encoding>UTF-8</encoding>
118
        </configuration>
119
      </plugin>
120
      <plugin>
121
        <groupId>org.apache.maven.plugins</groupId>
122
        <artifactId>maven-surefire-plugin</artifactId>
123
        <configuration>
124
          <argLine>-Xms256m -Xmx512m</argLine>
125
        </configuration>
126
      </plugin>
127
      <!-- As we are doing "inplace" GWT compilation, ensure the widgetset -->
128
      <!-- directory is cleaned properly -->
129
      <plugin>
130
        <artifactId>maven-clean-plugin</artifactId>
131
        <version>2.4.1</version>
132
        <configuration>
133
          <filesets>
134
            <fileset>
135
              <directory>src/main/webapp/VAADIN/widgetsets</directory>
136
            </fileset>
137
          </filesets>
138
        </configuration>
139
      </plugin>
140
      <plugin>
141
        <groupId>org.apache.maven.plugins</groupId>
142
        <artifactId>maven-war-plugin</artifactId>
143
        <version>2.2</version>
144
        <configuration>
145
          <failOnMissingWebXml>false</failOnMissingWebXml>
146
          <warSourceExcludes>WEB-INF/*,WEB-INF/datasources/*</warSourceExcludes>
147
        </configuration>
148
      </plugin>
149
      <plugin>
150
        <groupId>com.vaadin</groupId>
151
        <artifactId>vaadin-maven-plugin</artifactId>
152
        <version>${vaadin.plugin.version}</version>
153
        <configuration>
154
          <extraJvmArgs>-Xmx512M -Xss1024k</extraJvmArgs>
155
          <!-- <runTarget>mobilemail</runTarget> -->
156
          <!-- We are doing "inplace" but into subdir VAADIN/widgetsets. 
157
            This way compatible with Vaadin eclipse plugin. -->
158
          <webappDirectory>${basedir}/src/main/webapp/VAADIN/widgetsets
159
          </webappDirectory>
160
          <hostedWebapp>${basedir}/src/main/webapp/VAADIN/widgetsets
161
          </hostedWebapp>
162
          <!-- Most Vaadin apps don't need this stuff, guide that to target -->
163
          <persistentunitcachedir>${project.build.directory}</persistentunitcachedir>
164
          <deploy>${project.build.directory}/gwt-deploy</deploy>
165
          <!-- Compile report is not typically needed either, saves hunreds 
166
            of mb disk -->
167
          <compileReport>false</compileReport>
168
          <noServer>true</noServer>
169
          <!-- Remove draftCompile when project is ready -->
170
          <draftCompile>false</draftCompile>
171
          <style>OBF</style>
172
          <strict>true</strict>
173
          <runTarget>http://localhost:8080/</runTarget>
174
        </configuration>
175
        <executions>
176
          <execution>
177
            <configuration>
178
              <!-- if you don't specify any modules, the plugin will find 
179
                them -->
180
              <!-- <modules> <module>com.vaadin.demo.mobilemail.gwt.ColorPickerWidgetSet</module> 
181
                </modules> -->
182
            </configuration>
183
            <goals>
184
              <goal>clean</goal>
185
              <goal>resources</goal>
186
              <goal>update-theme</goal>
187
              <goal>update-widgetset</goal>
188
              <goal>compile-theme</goal>
189
              <goal>compile</goal>
190
            </goals>
191
          </execution>
192
        </executions>
193
      </plugin>
194
      <!-- <plugin> -->
195
      <!-- <groupId>org.eclipse.jetty</groupId> -->
196
      <!-- <artifactId>jetty-maven-plugin</artifactId> -->
197
      <!-- <version>9.2.3.v20140905</version> -->
198
      <!-- <configuration> -->
199
      <!-- <scanIntervalSeconds>10</scanIntervalSeconds> -->
200
      <!-- <stopPort>8005</stopPort> -->
201
      <!-- <stopKey>STOP</stopKey> -->
202
      <!-- <useProvidedScope>true</useProvidedScope> -->
203
      <!-- <webApp> -->
204
      <!-- <descriptor>${project.basedir}/src/main/webapp/WEB-INF/web.xml</descriptor> -->
205
      <!-- </webApp> -->
206
      <!-- </configuration> -->
207
      <!-- <executions> -->
208
      <!-- <execution> -->
209
      <!-- <id>start-jetty</id> -->
210
      <!-- <phase>pre-integration-test</phase> -->
211
      <!-- <goals> -->
212
      <!-- <goal>start</goal> -->
213
      <!-- </goals> -->
214
      <!-- <configuration> -->
215
      <!-- <scanIntervalSeconds>0</scanIntervalSeconds> -->
216
      <!-- <daemon>true</daemon> -->
217
      <!-- </configuration> -->
218
      <!-- </execution> -->
219
      <!-- <execution> -->
220
      <!-- <id>stop-jetty</id> -->
221
      <!-- <phase>post-integration-test</phase> -->
222
      <!-- <goals> -->
223
      <!-- <goal>stop</goal> -->
224
      <!-- </goals> -->
225
      <!-- </execution> -->
226
      <!-- </executions> -->
227
      <!-- </plugin> -->
228
      <plugin>
229
        <groupId>org.apache.maven.plugins</groupId>
230
        <artifactId>maven-failsafe-plugin</artifactId>
231
        <version>2.17</version>
232
        <configuration>
233
          <!-- Remove the skipTests line below to run TestBench tests -->
234
          <!-- <skipTests>true</skipTests> -->
235
        </configuration>
236
        <executions>
237
          <execution>
238
            <goals>
239
              <goal>integration-test</goal>
240
              <goal>verify</goal>
241
            </goals>
242
          </execution>
243
        </executions>
244
      </plugin>
245
      <plugin>
246
        <groupId>external.atlassian.jgitflow</groupId>
247
        <artifactId>jgitflow-maven-plugin</artifactId>
248
        <version>1.0-m6</version>
249
        <configuration>
250
          <pushHotfixes>true</pushHotfixes>
251
          <pushReleases>true</pushReleases>
252
          <enableSshAgent>true</enableSshAgent>
253
          <allowSnapshots>true</allowSnapshots>
254
          <allowUntracked>true</allowUntracked>
255
        </configuration>
256
        <dependencies>
257
          <!-- 
258
                upgrading dependency jsch.agent.version of jgit-flow plugin to 0.1.53 
259
                in order have ssl key exchange algorithms compatible with openssh 6.7 
260
             -->
261
          <dependency>
262
            <groupId>com.jcraft</groupId>
263
            <artifactId>jsch</artifactId>
264
            <version>0.1.53</version>
265
          </dependency>
266
        </dependencies>
267
      </plugin>
268
    </plugins>
269
    <extensions>
270
      <extension>
271
        <groupId>org.apache.maven.wagon</groupId>
272
        <artifactId>wagon-scm</artifactId>
273
        <version>1.0-beta-6</version>
274
      </extension>
275
      <extension>
276
        <groupId>org.apache.maven.wagon</groupId>
277
        <artifactId>wagon-ssh</artifactId>
278
        <version>1.0-beta-6</version>
279
      </extension>
280
      <extension>
281
        <groupId>org.apache.maven.wagon</groupId>
282
        <artifactId>wagon-ssh-external</artifactId>
283
        <version>1.0-beta-6</version>
284
      </extension>
285
      <extension>
286
        <groupId>org.apache.maven.scm</groupId>
287
        <artifactId>maven-scm-manager-plexus</artifactId>
288
        <version>1.0</version>
289
      </extension>
290
      <extension>
291
        <groupId>org.apache.maven.scm</groupId>
292
        <artifactId>maven-scm-provider-svnexe</artifactId>
293
        <version>1.0</version>
294
      </extension>
295
      <!-- WebDAV plugin to upload snapshots -->
296
      <extension>
297
        <groupId>org.apache.maven.wagon</groupId>
298
        <artifactId>wagon-webdav</artifactId>
299
        <version>1.0-beta-2</version>
300
      </extension>
301
    </extensions>
302
    <pluginManagement>
303
      <plugins>
304
        <plugin>
305
          <artifactId>maven-eclipse-plugin</artifactId>
306
          <configuration>
307
            <wtpversion>2.0</wtpversion>
308
            <additionalProjectnatures>
309
              <projectnature>com.vaadin.integration.eclipse.widgetsetNature</projectnature>
310
            </additionalProjectnatures>
311
            <additionalBuildcommands>
312
              <buildcommand>com.vaadin.integration.eclipse.widgetsetBuilder</buildcommand>
313
              <buildcommand>com.vaadin.integration.eclipse.addonStylesBuilder</buildcommand>
314
            </additionalBuildcommands>
315
          </configuration>
316
        </plugin>
317
      </plugins>
318
    </pluginManagement>
319
  </build>
320
    <dependencies>
321
    <dependency>
322
      <groupId>com.vaadin</groupId>
323
      <artifactId>vaadin-server</artifactId>
324
      <version>${vaadin.version}</version>
325
    </dependency>
326
    <dependency>
327
      <groupId>com.vaadin</groupId>
328
      <artifactId>vaadin-client-compiled</artifactId>
329
      <version>${vaadin.version}</version>
330
    </dependency>
331
    <!-- Needed when using the widgetset optimizer (custom ConnectorBundleLoaderFactory). 
332
      For widgetset compilation, vaadin-client-compiler is automatically added 
333
      on the compilation classpath by vaadin-maven-plugin so normally there is 
334
      no need for an explicit dependency. -->
335
    <!-- <dependency> <groupId>com.vaadin</groupId> <artifactId>vaadin-client-compiler</artifactId> 
336
      <version>${vaadin.version}</version> <scope>provided</scope> </dependency> -->
337
    <dependency>
338
      <groupId>com.vaadin</groupId>
339
      <artifactId>vaadin-client</artifactId>
340
      <version>${vaadin.version}</version>
341
      <scope>provided</scope>
342
    </dependency>
343
    <!-- disabling push for the moment because it does not work with run-jetty-run 
344
      due to the fact that the latest (even nightly) version of run-jetty-run uses 
345
      9.0.0 M3 which is incompatible with atmoshpere. this does work with the jetty 
346
      included in this pom which is 9.2.5.xx, implying that enabling the dependency 
347
      and running the web app via 'mvn jetty:run' works fine. -->
348
    <!-- <dependency> -->
349
    <!-- <groupId>com.vaadin</groupId> -->
350
    <!-- <artifactId>vaadin-push</artifactId> -->
351
    <!-- <version>${vaadin.version}</version> -->
352
    <!-- </dependency> -->
353
    <dependency>
354
      <groupId>com.vaadin</groupId>
355
      <artifactId>vaadin-themes</artifactId>
356
      <version>${vaadin.version}</version>
357
    </dependency>
358
    <dependency>
359
      <groupId>javax.servlet</groupId>
360
      <artifactId>javax.servlet-api</artifactId>
361
      <version>3.1.0</version>
362
      <scope>provided</scope>
363
    </dependency>
364
    <dependency>
365
      <groupId>com.vaadin</groupId>
366
      <artifactId>vaadin-testbench-api</artifactId>
367
      <version>RELEASE</version>
368
      <scope>test</scope>
369
    </dependency>
370
    <dependency>
371
      <groupId>eu.etaxonomy</groupId>
372
      <artifactId>cdmlib-services</artifactId>
373
      <version>${cdmlib.version}</version>
374
<!--       <scope>provided</scope> -->
375
    </dependency>
376
    <dependency>
377
      <groupId>eu.etaxonomy</groupId>
378
      <artifactId>cdmlib-test</artifactId>
379
      <version>${cdmlib.version}</version>
380
      <scope>test</scope>
381
    </dependency>
382
    <!-- to override version number coming with vaadin client -->
383
    <dependency>
384
       <groupId>javax.validation</groupId>
385
       <artifactId>validation-api</artifactId>
386
       <version>1.1.0.Final</version>
387
     </dependency>
388
      
389
      
390
    
391
    <dependency>
392
      <groupId>org.springmodules</groupId>
393
      <artifactId>spring-modules-cache</artifactId>
394
      <version>0.7</version>
395
      <exclusions>
396
        <exclusion>
397
          <groupId>org.springframework</groupId>
398
          <artifactId>spring</artifactId>
399
        </exclusion>
400
        <exclusion>
401
          <groupId>org.springframework</groupId>
402
          <artifactId>spring-mock</artifactId>
403
        </exclusion>
404
      </exclusions>
405
      <scope>provided</scope>
406
    </dependency>
407
    <dependency>
408
      <groupId>com.thoughtworks.xstream</groupId>
409
      <artifactId>xstream</artifactId>
410
      <version>1.4.7</version>
411
      <scope>provided</scope>
412
    </dependency>
413
    <dependency>
414
      <groupId>org.springframework</groupId>
415
      <artifactId>spring-mock</artifactId>
416
      <version>2.0.8</version>
417
      <scope>provided</scope>
418
    </dependency>
419
    <dependency>
420
      <groupId>org.springframework</groupId>
421
      <artifactId>spring-context-support</artifactId>
422
      <version>${spring.version}</version>
423
      <scope>provided</scope>
424
    </dependency>
425
     <dependency>
426
        <groupId>org.springframework</groupId>
427
        <artifactId>spring-web</artifactId>
428
        <version>${spring.version}</version>
429
      </dependency>
430
   <dependency>
431
      	<groupId>org.springframework</groupId>
432
        <artifactId>spring-webmvc</artifactId>
433
        <version>${spring.version}</version>
434
      </dependency>
435

    
436
    <!-- vaadin addons / extensions -->
437
    <dependency>
438
      <groupId>org.vaadin.addons</groupId>
439
      <artifactId>contextmenu</artifactId>
440
      <version>4.5</version>
441
    </dependency>
442
    
443
    <dependency>
444
      <groupId>junit</groupId>
445
      <artifactId>junit</artifactId>
446
      <version>4.11</version>
447
      <scope>test</scope>
448
    </dependency>
449
    <!-- unitils dependencies - start -->
450
<!--     <dependency> -->
451
<!--       <groupId>org.unitils</groupId> -->
452
<!--       <artifactId>unitils-core</artifactId> -->
453
<!--       <version>${unitils.version}</version> -->
454
<!--       <scope>test</scope> -->
455
<!--     </dependency> -->
456
<!--     <dependency> -->
457
<!--       <groupId>org.unitils</groupId> -->
458
<!--       <artifactId>unitils-database</artifactId> -->
459
<!--       <version>${unitils.version}</version> -->
460
<!--       <scope>test</scope> -->
461
<!--       <exclusions> -->
462
<!--         <exclusion> -->
463
<!--           <groupId>org.springframework</groupId> -->
464
<!--           <artifactId>spring-jdbc</artifactId> -->
465
<!--         </exclusion> -->
466
<!--       </exclusions> -->
467
<!--     </dependency> -->
468
<!--     <dependency> -->
469
<!--       <groupId>org.unitils</groupId> -->
470
<!--       <artifactId>unitils-dbmaintainer</artifactId> -->
471
<!--       <version>${unitils.version}</version> -->
472
<!--       <scope>test</scope> -->
473
<!--       <exclusions> -->
474
<!--         <exclusion> -->
475
<!--           <groupId>org.hibernate</groupId> -->
476
<!--           <artifactId>hibernate</artifactId> -->
477
<!--         </exclusion> -->
478
<!--       </exclusions> -->
479
<!--     </dependency> -->
480
<!--     <dependency> -->
481
<!--       <groupId>org.unitils</groupId> -->
482
<!--       <artifactId>unitils-dbunit</artifactId> -->
483
<!--       <version>${unitils.version}</version> -->
484
<!--       <scope>test</scope> -->
485
<!--       <exclusions> -->
486
<!--         <exclusion> -->
487
<!--           <groupId>org.springframework</groupId> -->
488
<!--           <artifactId>spring-core</artifactId> -->
489
<!--         </exclusion> -->
490
<!--         <exclusion> -->
491
<!--           <groupId>org.springframework</groupId> -->
492
<!--           <artifactId>spring-jdbc</artifactId> -->
493
<!--         </exclusion> -->
494
<!--         <exclusion> -->
495
<!--           <groupId>org.springframework</groupId> -->
496
<!--           <artifactId>spring-beans</artifactId> -->
497
<!--         </exclusion> -->
498
<!--       </exclusions> -->
499
<!--     </dependency> -->
500
<!--     <dependency> -->
501
<!--       <groupId>org.unitils</groupId> -->
502
<!--       <artifactId>unitils-easymock</artifactId> -->
503
<!--       <version>${unitils.version}</version> -->
504
<!--       <scope>test</scope> -->
505
<!--     </dependency> -->
506
<!--     <dependency> -->
507
<!--       <groupId>org.unitils</groupId> -->
508
<!--       <artifactId>unitils-mock</artifactId> -->
509
<!--       <version>${unitils.version}</version> -->
510
<!--       <scope>test</scope> -->
511
<!--     </dependency> -->
512
<!--     <dependency> -->
513
<!--       <groupId>org.unitils</groupId> -->
514
<!--       <artifactId>unitils-inject</artifactId> -->
515
<!--       <version>${unitils.version}</version> -->
516
<!--       <scope>test</scope> -->
517
<!--     </dependency> -->
518
<!--     <dependency> -->
519
<!--       <groupId>org.unitils</groupId> -->
520
<!--       <artifactId>unitils-orm</artifactId> -->
521
<!--       <version>${unitils.version}</version> -->
522
<!--        <scope>test</scope> -->
523
<!--       <exclusions> -->
524
<!--      <exclusion> -->
525
<!--        <artifactId>*</artifactId> -->
526
<!--        <groupId>org.springframework</groupId> -->
527
<!--      </exclusion> -->
528
<!--      <exclusion> -->
529
<!--        <artifactId>persistence-api</artifactId> -->
530
<!--        <groupId>javax.persistence</groupId> -->
531
<!--      </exclusion> -->
532
<!--      <exclusion> -->
533
<!--        <artifactId>hibernate</artifactId> -->
534
<!--        <groupId>org.hibernate</groupId> -->
535
<!--      </exclusion> -->
536
<!--    </exclusions> -->
537
<!--     </dependency>  -->
538
<!--     <dependency> -->
539
<!--       <groupId>org.unitils</groupId> -->
540
<!--       <artifactId>unitils-spring</artifactId> -->
541
<!--       <version>${unitils.version}</version> -->
542
<!--       <scope>test</scope> -->
543
<!--       <exclusions> -->
544
<!--         <exclusion> -->
545
<!--           <groupId>org.springframework</groupId> -->
546
<!--           <artifactId>spring-core</artifactId> -->
547
<!--         </exclusion> -->
548
<!--         <exclusion> -->
549
<!--           <groupId>org.springframework</groupId> -->
550
<!--           <artifactId>spring-context</artifactId> -->
551
<!--         </exclusion> -->
552
<!--         <exclusion> -->
553
<!--           <groupId>org.springframework</groupId> -->
554
<!--           <artifactId>spring-beans</artifactId> -->
555
<!--         </exclusion> -->
556
<!--         <exclusion> -->
557
<!--           <groupId>org.springframework</groupId> -->
558
<!--           <artifactId>spring-test</artifactId> -->
559
<!--         </exclusion> -->
560
<!--         <exclusion> -->
561
<!--           <groupId>org.springframework</groupId> -->
562
<!--           <artifactId>spring-tx</artifactId> -->
563
<!--         </exclusion> -->
564
<!--       </exclusions> -->
565
<!--     </dependency> -->
566
<!--     <dependency> -->
567
<!--       <groupId>org.easymock</groupId> -->
568
<!--       <artifactId>easymock</artifactId> -->
569
<!--       <version>3.1</version> -->
570
<!--       <scope>test</scope> -->
571
<!--     </dependency> -->
572
<!--     <dependency> -->
573
<!--       <groupId>xmlunit</groupId> -->
574
<!--       <artifactId>xmlunit</artifactId> -->
575
<!--       <version>1.4</version> -->
576
<!--       <scope>test</scope> -->
577
<!--     </dependency> -->
578
<!--     <dependency> -->
579
<!--       <groupId>org.dbunit</groupId> -->
580
<!--       <artifactId>dbunit</artifactId> -->
581
<!--       <version>2.4.9</version> -->
582
<!--       <scope>test</scope> -->
583
<!--     </dependency> -->
584
<!--     <dependency> -->
585
<!--       <groupId>commons-dbcp</groupId> -->
586
<!--       <artifactId>commons-dbcp</artifactId> -->
587
<!--       <version>1.4</version> -->
588
<!--       <scope>test</scope> -->
589
<!--     </dependency> -->
590
    <!-- unitils dependencies - end -->
591
    <dependency>
592
      <groupId>org.slf4j</groupId>
593
      <artifactId>slf4j-log4j12</artifactId>
594
      <version>1.7.2</version>
595
      <scope>provided</scope>
596
    </dependency>
597
    <dependency>
598
      <groupId>org.slf4j</groupId>
599
      <artifactId>slf4j-api</artifactId>
600
      <version>1.7.2</version>
601
      <scope>provided</scope>
602
    </dependency>
603
    <dependency>
604
		<groupId>org.json</groupId>
605
		<artifactId>json</artifactId>
606
		<version>20151123</version>
607
	</dependency>
608
    
609
  </dependencies>
610
</project>
(3-3/3)