blob: 57d3de1fdbd427bd778913c8579541d0101856d5 [file] [log] [blame]
jimmydot3982f4f2017-05-07 14:58:24 -04001<?xml version="1.0"?>
2<project
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4 xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5 <modelVersion>4.0.0</modelVersion>
6
7 <!-- This is the Maven project object model (POM) file for VID web application
8 based on the ECOMP SDK distribution. This file stands alone; it does not
9 inherit from a parent maven module. -->
Ofir Sonsino1cfb0872018-01-31 17:19:00 +020010 <groupId>org.onap.vid</groupId>
jimmydot3982f4f2017-05-07 14:58:24 -040011 <artifactId>vid-app-common</artifactId>
Sonsino, Ofir (os0695)ba59d122018-08-26 14:51:39 +030012 <version>3.0.0-SNAPSHOT</version>
jimmydot3982f4f2017-05-07 14:58:24 -040013 <packaging>war</packaging>
14 <name>VID Common</name>
15 <description>VID Common code for opensource version</description>
16
17 <properties>
jimmydotf88fada2017-05-07 19:42:59 -040018 <encoding>UTF-8</encoding>
19 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Ofir Sonsinoefedea12018-02-20 18:03:30 +020021 <epsdk.version>2.1.0</epsdk.version>
Sonsino, Ofir (os0695)745b4d52018-04-03 10:53:27 +030022 <springframework.version>4.2.9.RELEASE</springframework.version>
jimmydotf88fada2017-05-07 19:42:59 -040023 <hibernate.version>4.3.11.Final</hibernate.version>
24 <!-- Skip assembling the zip by default -->
25 <skipassembly>true</skipassembly>
26 <!-- Tests usually require some setup that maven cannot do, so skip. -->
Ofir Sonsino3274b392017-10-08 15:04:04 +030027 <skiptests>false</skiptests>
jimmydotf88fada2017-05-07 19:42:59 -040028 <nexusproxy>https://nexus.onap.org</nexusproxy>
29 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
30 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
31 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +020032 <sitePath>/content/sites/site/org/onap/vid/${project.version}</sitePath>
jimmydot3982f4f2017-05-07 14:58:24 -040033 </properties>
jimmydotf88fada2017-05-07 19:42:59 -040034
35
jimmydot3982f4f2017-05-07 14:58:24 -040036 <!-- this should be commented for local debugging -->
37 <!-- <deployenv>local</deployenv> -->
jimmydotf88fada2017-05-07 19:42:59 -040038
jimmydot3982f4f2017-05-07 14:58:24 -040039 <repositories>
jimmydotf88fada2017-05-07 19:42:59 -040040 <repository>
41 <id>ecomp-releases</id>
42 <name>VID Release Repository</name>
43 <url>${nexusproxy}${releaseNexusPath}</url>
44 </repository>
45 <repository>
46 <id>ecomp-snapshots</id>
47 <name>VID Snapshot Repository</name>
48 <url>${nexusproxy}${snapshotNexusPath}</url>
49 </repository>
50 <repository>
51 <id>ecomp-staging</id>
52 <name>VID Staging Repository</name>
53 <url>${nexusproxy}${stagingNexusPath}</url>
54 </repository>
55 <repository>
56 <!-- Snapshots repository has ECOMP snapshot artifacts -->
57 <id>oss-snapshots</id>
58 <name>oss Central - Snapshots</name>
59 <url>https://oss.sonatype.org/service/local/repositories/releases/content/</url>
60 </repository>
61
jimmydot3982f4f2017-05-07 14:58:24 -040062 </repositories>
jimmydotf88fada2017-05-07 19:42:59 -040063 <distributionManagement>
64 <repository>
65 <id>ecomp-releases</id>
66 <name>VID Release Repository</name>
67 <url>${nexusproxy}/${releaseNexusPath}</url>
68 </repository>
69 <snapshotRepository>
70 <id>ecomp-snapshots</id>
71 <name>VID Snapshot Repository</name>
72 <url>${nexusproxy}/${snapshotNexusPath}</url>
73 </snapshotRepository>
74 <!-- added for javadoc -->
75 <site>
76 <id>ecomp-site</id>
77 <url>dav:${nexusproxy}${sitePath}</url>
78 </site>
79 </distributionManagement>
80
jimmydot3982f4f2017-05-07 14:58:24 -040081 <build>
82 <finalName>vid-common</finalName>
jimmydotf88fada2017-05-07 19:42:59 -040083
jimmydot3982f4f2017-05-07 14:58:24 -040084 <plugins>
85 <plugin>
jimmydotf88fada2017-05-07 19:42:59 -040086 <groupId>org.sonatype.plugins</groupId>
87 <artifactId>nexus-staging-maven-plugin</artifactId>
88 <version>1.6.7</version>
89 <extensions>true</extensions>
90 <configuration>
91 <nexusUrl>${nexusproxy}</nexusUrl>
92 <stagingProfileId>176c31dfe190a</stagingProfileId>
93 <serverId>ecomp-staging</serverId>
94 </configuration>
95 </plugin>
96 <plugin>
Ofir Sonsino3274b392017-10-08 15:04:04 +030097 <groupId>org.jacoco</groupId>
98 <artifactId>jacoco-maven-plugin</artifactId>
99 <version>0.7.9</version>
jimmydot3982f4f2017-05-07 14:58:24 -0400100 <executions>
101 <execution>
Ofir Sonsino3274b392017-10-08 15:04:04 +0300102 <id>default-prepare-agent</id>
jimmydot3982f4f2017-05-07 14:58:24 -0400103 <goals>
Ofir Sonsino3274b392017-10-08 15:04:04 +0300104 <goal>prepare-agent</goal>
105 </goals>
106 </execution>
107 <execution>
108 <id>default-report</id>
109 <goals>
110 <goal>report</goal>
jimmydot3982f4f2017-05-07 14:58:24 -0400111 </goals>
112 </execution>
113 </executions>
114 </plugin>
115 <plugin>
116 <groupId>org.apache.tomcat.maven</groupId>
117 <artifactId>tomcat6-maven-plugin</artifactId>
118 <version>2.2</version>
119 </plugin>
120 <plugin>
121 <groupId>org.apache.tomcat.maven</groupId>
122 <artifactId>tomcat7-maven-plugin</artifactId>
123 <version>2.2</version>
124 </plugin>
125
126 <!-- Generate POJOs from MSO json schema -->
127 <plugin>
128 <groupId>org.jsonschema2pojo</groupId>
129 <artifactId>jsonschema2pojo-maven-plugin</artifactId>
130 <version>0.4.23</version>
131 <configuration>
132 <sourceDirectory>${basedir}/src/main/resources/json/mso</sourceDirectory>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +0200133 <targetPackage>org.onap.vid.domain.mso</targetPackage>
jimmydot3982f4f2017-05-07 14:58:24 -0400134 <outputDirectory>${project.build.directory}/generated-sources</outputDirectory>
135 </configuration>
136 <executions>
137 <execution>
138 <goals>
139 <goal>generate</goal>
140 </goals>
141 </execution>
142 </executions>
143 </plugin>
144
145 <plugin>
146 <groupId>org.apache.maven.plugins</groupId>
147 <artifactId>maven-compiler-plugin</artifactId>
148 <version>3.1</version>
149 <configuration>
150 <source>1.8</source>
151 <target>1.8</target>
152 </configuration>
153 </plugin>
154
155 <plugin>
156 <groupId>org.apache.maven.plugins</groupId>
157 <artifactId>maven-surefire-plugin</artifactId>
158 <version>2.19.1</version>
159 <configuration>
160 <skipTests>${skiptests}</skipTests>
161 <includes>
162 <include>**/Test*.java</include>
163 <include>**/*Test.java</include>
164 <include>**/*TestCase.java</include>
165 </includes>
166 <excludes>
167 <exclude>**/selenium/*.java</exclude>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +0200168 <exclude>**/integrationTest/*.java</exclude>
jimmydot3982f4f2017-05-07 14:58:24 -0400169 </excludes>
170 <additionalClasspathElements>
171 <additionalClasspathElement>${basedir}/war</additionalClasspathElement>
172 </additionalClasspathElements>
173 <systemPropertyVariables>
174 <container.classpath>classpath:</container.classpath>
175 </systemPropertyVariables>
176 </configuration>
177 </plugin>
178
179 <plugin>
180 <artifactId>maven-assembly-plugin</artifactId>
181 <configuration>
182 <skipAssembly>${skipassembly}</skipAssembly>
183 <descriptors>
184 <descriptor>${basedir}/distribution.xml</descriptor>
185 </descriptors>
186 </configuration>
187 <executions>
188 <execution>
189 <id>make-assembly</id>
190 <phase>package</phase>
191 <goals>
192 <goal>single</goal>
193 </goals>
194 </execution>
195 </executions>
196 </plugin>
197
198
199 <plugin>
200 <groupId>org.apache.maven.plugins</groupId>
201 <artifactId>maven-war-plugin</artifactId>
202 <version>3.0.0</version>
203 <configuration>
204 <!-- Build a jar with all the Java classes -->
205 <attachClasses>true</attachClasses>
206 <!-- Do not put any jars in the war -->
207 <packagingExcludes>WEB-INF/lib/*.jar</packagingExcludes>
208 </configuration>
209 </plugin>
jimmydot15eae842017-05-09 11:03:39 -0400210 <plugin>
211 <groupId>org.apache.maven.plugins</groupId>
212 <artifactId>maven-site-plugin</artifactId>
213 <version>3.6</version>
214 <dependencies>
215 <dependency>
216 <groupId>org.apache.maven.wagon</groupId>
217 <artifactId>wagon-webdav-jackrabbit</artifactId>
218 <version>2.10</version>
219 </dependency>
220 </dependencies>
221 </plugin>
jimmydot3982f4f2017-05-07 14:58:24 -0400222 </plugins>
jimmydot3982f4f2017-05-07 14:58:24 -0400223 </build>
224
jimmydot15eae842017-05-09 11:03:39 -0400225 <reporting>
226 <plugins>
227 <plugin>
228 <groupId>org.apache.maven.plugins</groupId>
229 <artifactId>maven-javadoc-plugin</artifactId>
230 <version>2.10.4</version>
231 <configuration>
232 <failOnError>false</failOnError>
233 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
234 <docletArtifact>
235 <groupId>org.umlgraph</groupId>
236 <artifactId>umlgraph</artifactId>
237 <version>5.6</version>
238 </docletArtifact>
239 <additionalparam>-views</additionalparam>
240 <useStandardDocletOptions>true</useStandardDocletOptions>
241 </configuration>
242 </plugin>
243 </plugins>
244 </reporting>
245
jimmydot3982f4f2017-05-07 14:58:24 -0400246 <dependencies>
Ofir Sonsinob94bd702018-02-11 19:21:35 +0200247
248 <dependency>
249 <groupId>com.opencsv</groupId>
250 <artifactId>opencsv</artifactId>
251 <version>4.1</version>
252 </dependency>
golabek985bc342018-08-01 15:56:44 +0200253
kobloszd47fd3b2018-08-20 16:42:57 +0200254 <!-- HTTP client -->
golabek985bc342018-08-01 15:56:44 +0200255
256 <dependency>
257 <groupId>io.joshworks.unirest</groupId>
258 <artifactId>unirest-java</artifactId>
259 <version>0.2.1</version>
260 </dependency>
261 <dependency>
262 <groupId>org.apache.httpcomponents</groupId>
263 <artifactId>httpclient</artifactId>
264 <version>4.3.6</version>
265 </dependency>
266 <dependency>
267 <groupId>org.apache.httpcomponents</groupId>
268 <artifactId>httpasyncclient</artifactId>
269 <version>4.0.2</version>
270 </dependency>
271 <dependency>
272 <groupId>org.apache.httpcomponents</groupId>
273 <artifactId>httpmime</artifactId>
274 <version>4.3.6</version>
275 </dependency>
kobloszd47fd3b2018-08-20 16:42:57 +0200276 <dependency>
277 <groupId>com.xebialabs.restito</groupId>
278 <artifactId>restito</artifactId>
279 <version>0.9.3</version>
280 <scope>test</scope>
281 </dependency>
jimmydot3982f4f2017-05-07 14:58:24 -0400282
golabek985bc342018-08-01 15:56:44 +0200283 <!-- Helpers -->
284 <dependency>
285 <groupId>org.projectlombok</groupId>
286 <artifactId>lombok</artifactId>
287 <version>1.18.2</version>
288 <scope>provided</scope>
289 </dependency>
290 <dependency>
291 <groupId>io.vavr</groupId>
292 <artifactId>vavr</artifactId>
293 <version>0.9.2</version>
294 </dependency>
295
296 <!-- SDK overlay war -->
jimmydot3982f4f2017-05-07 14:58:24 -0400297 <dependency>
Ofir Sonsino564a0d72017-10-22 17:03:35 +0300298 <groupId>org.onap.portal.sdk</groupId>
jimmydot3982f4f2017-05-07 14:58:24 -0400299 <artifactId>epsdk-app-overlay</artifactId>
300 <version>${epsdk.version}</version>
301 <type>war</type>
302 </dependency>
303 <dependency>
Ofir Sonsino564a0d72017-10-22 17:03:35 +0300304 <groupId>org.onap.portal.sdk</groupId>
jimmydot3982f4f2017-05-07 14:58:24 -0400305 <artifactId>epsdk-app-common</artifactId>
306 <version>${epsdk.version}</version>
307 <type>jar</type>
308 </dependency>
jimmydotf88fada2017-05-07 19:42:59 -0400309
jimmydot3982f4f2017-05-07 14:58:24 -0400310 <dependency>
Ofir Sonsino564a0d72017-10-22 17:03:35 +0300311 <groupId>org.onap.portal.sdk</groupId>
jimmydot3982f4f2017-05-07 14:58:24 -0400312 <artifactId>epsdk-core</artifactId>
313 <version>${epsdk.version}</version>
314 </dependency>
315 <dependency>
Ofir Sonsino564a0d72017-10-22 17:03:35 +0300316 <groupId>org.onap.portal.sdk</groupId>
jimmydot3982f4f2017-05-07 14:58:24 -0400317 <artifactId>epsdk-analytics</artifactId>
318 <version>${epsdk.version}</version>
319 </dependency>
320 <dependency>
Ofir Sonsino564a0d72017-10-22 17:03:35 +0300321 <groupId>org.onap.portal.sdk</groupId>
jimmydot3982f4f2017-05-07 14:58:24 -0400322 <artifactId>epsdk-workflow</artifactId>
323 <version>${epsdk.version}</version>
324 </dependency>
325 <dependency>
326 <groupId>com.att.eelf</groupId>
327 <artifactId>eelf-core</artifactId>
328 <version>1.0.0</version>
329 </dependency>
Sonsino, Ofir (os0695)845e43d2018-03-19 18:37:37 +0200330 <dependency>
331 <groupId>ch.qos.logback</groupId>
332 <artifactId>logback-core</artifactId>
333 <version>1.2.3</version>
334 </dependency>
335 <dependency>
336 <groupId>ch.qos.logback</groupId>
337 <artifactId>logback-classic</artifactId>
338 <version>1.2.3</version>
339 </dependency>
jimmydot3982f4f2017-05-07 14:58:24 -0400340
341 <!-- Mapper -->
342 <dependency>
343 <groupId>com.fasterxml.jackson.core</groupId>
344 <artifactId>jackson-annotations</artifactId>
345 <version>2.6.3</version>
346 </dependency>
347 <dependency>
348 <groupId>com.fasterxml.jackson.core</groupId>
349 <artifactId>jackson-core</artifactId>
Sonsino, Ofir (os0695)745b4d52018-04-03 10:53:27 +0300350 <version>2.8.6</version>
jimmydot3982f4f2017-05-07 14:58:24 -0400351 </dependency>
352 <dependency>
353 <groupId>com.fasterxml.jackson.core</groupId>
354 <artifactId>jackson-databind</artifactId>
Sonsino, Ofir (os0695)845e43d2018-03-19 18:37:37 +0200355 <version>2.6.7.1</version>
jimmydot3982f4f2017-05-07 14:58:24 -0400356 </dependency>
357 <dependency>
358 <groupId>org.codehaus.jackson</groupId>
359 <artifactId>jackson-mapper-asl</artifactId>
360 <version>1.9.13</version>
361 </dependency>
362 <dependency>
363 <groupId>com.mchange</groupId>
364 <artifactId>c3p0</artifactId>
365 <version>0.9.5.2</version>
366 </dependency>
367 <dependency>
368 <groupId>io.searchbox</groupId>
369 <artifactId>jest</artifactId>
370 <version>2.0.0</version>
371 <exclusions>
372 <exclusion>
373 <groupId>commons-logging</groupId>
374 <artifactId>commons-logging</artifactId>
375 </exclusion>
376 </exclusions>
377 </dependency>
378 <dependency>
379 <groupId>javax.servlet</groupId>
380 <artifactId>javax.servlet-api</artifactId>
381 <version>3.1.0</version>
382 <scope>provided</scope>
383 </dependency>
384 <dependency>
385 <groupId>junit</groupId>
386 <artifactId>junit</artifactId>
387 <version>4.12</version>
388 </dependency>
389 <dependency>
golabek985bc342018-08-01 15:56:44 +0200390 <groupId>commons-io</groupId>
391 <artifactId>commons-io</artifactId>
392 <version>2.4</version>
393 <!--<scope>test</scope>-->
394 </dependency>
395 <dependency>
tgolabek5f147732018-05-21 12:13:08 +0200396 <groupId>com.google.code.bean-matchers</groupId>
397 <artifactId>bean-matchers</artifactId>
398 <version>0.11</version>
399 <scope>test</scope>
400 </dependency>
401 <dependency>
jimmydot3982f4f2017-05-07 14:58:24 -0400402 <groupId>org.json</groupId>
403 <artifactId>json</artifactId>
404 <version>20160212</version>
405 </dependency>
406 <dependency>
407 <groupId>org.quartz-scheduler</groupId>
408 <artifactId>quartz</artifactId>
409 <version>2.2.1</version>
410 <exclusions>
411 <!-- exclude 0.9.1.1 to avoid dupe of com.mchange:c3p0:0.9.2.1 -->
412 <exclusion>
413 <groupId>c3p0</groupId>
414 <artifactId>c3p0</artifactId>
415 </exclusion>
416 </exclusions>
417 </dependency>
418 <!-- bridge to implement commons-logging using slf4j -->
419 <dependency>
420 <groupId>org.slf4j</groupId>
421 <artifactId>jcl-over-slf4j</artifactId>
422 <version>1.7.12</version>
423 </dependency>
424 <dependency>
425 <groupId>org.springframework</groupId>
426 <artifactId>spring-context-support</artifactId>
427 <version>${springframework.version}</version>
428 </dependency>
429 <dependency>
430 <groupId>org.springframework</groupId>
431 <artifactId>spring-core</artifactId>
432 <version>${springframework.version}</version>
433 <exclusions>
434 <exclusion>
435 <groupId>commons-logging</groupId>
436 <artifactId>commons-logging</artifactId>
437 </exclusion>
438 </exclusions>
439 </dependency>
440 <dependency>
441 <groupId>org.springframework</groupId>
442 <artifactId>spring-test</artifactId>
443 <version>${springframework.version}</version>
444 </dependency>
445 <dependency>
446 <groupId>org.springframework</groupId>
447 <artifactId>spring-tx</artifactId>
448 <version>${springframework.version}</version>
449 </dependency>
450 <dependency>
451 <groupId>org.springframework</groupId>
452 <artifactId>spring-web</artifactId>
453 <version>${springframework.version}</version>
454 </dependency>
455 <dependency>
456 <groupId>org.springframework</groupId>
457 <artifactId>spring-webmvc</artifactId>
458 <version>${springframework.version}</version>
459 </dependency>
460 <dependency>
461 <groupId>org.glassfish.jersey.core</groupId>
462 <artifactId>jersey-client</artifactId>
463 <version>2.23.1</version>
464 </dependency>
465 <dependency>
466 <groupId>org.glassfish.jersey.connectors</groupId>
467 <artifactId>jersey-jetty-connector</artifactId>
468 <version>2.23.1</version>
469 </dependency>
470 <dependency>
471 <groupId>com.fasterxml.jackson.jaxrs</groupId>
472 <artifactId>jackson-jaxrs-json-provider</artifactId>
473 <version>2.6.3</version>
474 </dependency>
475 <dependency>
476 <groupId>commons-beanutils</groupId>
477 <artifactId>commons-beanutils</artifactId>
478 <version>1.9.3</version>
479 </dependency>
480 <dependency>
481 <groupId>com.googlecode.json-simple</groupId>
482 <artifactId>json-simple</artifactId>
483 <version>1.1.1</version>
484 </dependency>
485 <dependency>
486 <groupId>org.seleniumhq.selenium</groupId>
487 <artifactId>selenium-java</artifactId>
488 <version>2.53.1</version>
489 <scope>test</scope>
490 </dependency>
491 <dependency>
492 <groupId>org.seleniumhq.selenium</groupId>
493 <artifactId>selenium-api</artifactId>
494 <version>2.53.1</version>
495 <scope>test</scope>
496 </dependency>
497 <dependency>
498 <groupId>org.testng</groupId>
499 <artifactId>testng</artifactId>
500 <version>6.8</version>
501 <scope>test</scope>
502 </dependency>
503 <dependency>
504 <groupId>org.seleniumhq.selenium</groupId>
505 <artifactId>selenium-firefox-driver</artifactId>
506 <version>2.53.1</version>
507 </dependency>
508 <dependency>
509 <groupId>xml-apis</groupId>
510 <artifactId>xml-apis</artifactId>
511 <version>1.4.01</version>
512 </dependency>
513 <dependency>
jimmydot3982f4f2017-05-07 14:58:24 -0400514 <groupId>org.yaml</groupId>
515 <artifactId>snakeyaml</artifactId>
516 <version>1.16</version>
517 </dependency>
Ofir Sonsinob3567072017-09-04 14:52:07 +0300518 <dependency>
519 <groupId>org.skyscreamer</groupId>
520 <artifactId>jsonassert</artifactId>
521 <version>1.5.0</version>
522 </dependency>
523 <dependency>
Sonsino, Ofir (os0695)a94ec862018-03-19 15:22:39 +0200524 <groupId>org.onap.sdc.sdc-tosca</groupId>
Ofir Sonsinob3567072017-09-04 14:52:07 +0300525 <artifactId>sdc-tosca</artifactId>
Sonsino, Ofir (os0695)290473a2018-08-15 14:38:20 +0300526 <version>1.4.1</version>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +0200527 <scope>compile</scope>
Ofir Sonsinob3567072017-09-04 14:52:07 +0300528 </dependency>
529 <dependency>
530 <groupId>net.javacrumbs.json-unit</groupId>
531 <artifactId>json-unit</artifactId>
532 <version>1.23.0</version>
533 <scope>test</scope>
534 </dependency>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +0200535 <dependency>
536 <groupId>org.apache.commons</groupId>
537 <artifactId>commons-text</artifactId>
538 <version>1.1</version>
539 </dependency>
540 <dependency>
541 <groupId>org.hamcrest</groupId>
542 <artifactId>java-hamcrest</artifactId>
543 <version>2.0.0.0</version>
544 <scope>test</scope>
545 </dependency>
Sonsino, Ofir (os0695)c72d5652018-07-10 14:20:54 +0300546 <dependency>
547 <groupId>org.togglz</groupId>
548 <artifactId>togglz-spring-core</artifactId>
549 <version>2.5.0.Final</version>
550 </dependency>
kobloszd47fd3b2018-08-20 16:42:57 +0200551 <dependency>
552 <groupId>org.assertj</groupId>
553 <artifactId>assertj-core</artifactId>
554 <version>3.10.0</version>
555 <scope>compile</scope>
556 </dependency>
Ofir Sonsino1cfb0872018-01-31 17:19:00 +0200557 </dependencies>
jimmydot3982f4f2017-05-07 14:58:24 -0400558</project>