blob: db7327fce837d84e8501a4b8207203ae40089c30 [file] [log] [blame]
Michael Lando451a3402017-02-19 10:28:42 +02001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 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
5 <groupId>org.openecomp.sdc</groupId>
6 <artifactId>sdc-main</artifactId>
Michael Lando0ad3c802017-09-19 16:32:59 +03007 <version>1.2.0-SNAPSHOT</version>
Michael Lando451a3402017-02-19 10:28:42 +02008 <packaging>pom</packaging>
Jessica Wagantalla38bdc62017-09-08 12:29:32 -07009 <name>sdc</name>
Michael Lando451a3402017-02-19 10:28:42 +020010 <properties>
11
Tal Gitelman51d50f02017-12-10 18:55:03 +020012 <maven.compiler.source>1.8</maven.compiler.source>
13 <maven.compiler.target>1.8</maven.compiler.target>
14
Michael Lando451a3402017-02-19 10:28:42 +020015 <!-- ==================== -->
16 <!-- Generic properties -->
17 <!-- ==================== -->
Michael Lando9db40522017-07-22 17:10:02 +030018 <build.type>-SNAPSHOT</build.type>
Michael Lando451a3402017-02-19 10:28:42 +020019 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Michael Lando75aacbb2017-07-17 21:12:03 +030020 <sprint.number>74</sprint.number>
Michael Lando451a3402017-02-19 10:28:42 +020021
22 <!-- 3rd parties versions -->
23 <lang3.version>3.3.2</lang3.version>
24 <guava.version>18.0</guava.version>
25 <titan.version>1.0.0</titan.version>
26 <spring-boot.version>1.1.6.RELEASE</spring-boot.version>
Michael Landoa5445102018-03-04 14:53:33 +020027 <spring.version>4.3.13.RELEASE</spring.version>
Michael Lando451a3402017-02-19 10:28:42 +020028 <spring.security.version>3.2.3.RELEASE</spring.security.version>
29 <spring.ldap.version>2.0.1.RELEASE</spring.ldap.version>
Michael Landoa5445102018-03-04 14:53:33 +020030 <jersey-bom.version>2.26</jersey-bom.version>
AviZi280f8012017-06-09 02:39:56 +030031 <servlet-api.version>2.5</servlet-api.version>
Michael Landoa5445102018-03-04 14:53:33 +020032 <wire-mock.version>2.11.0</wire-mock.version>
AviZi280f8012017-06-09 02:39:56 +030033
Yuli Shlosberg9dde9262017-09-12 14:11:48 +030034 <artifact-generator-api.version>${project.version}</artifact-generator-api.version>
35 <artifact-generator-core.version>${project.version}</artifact-generator-core.version>
Avi Ziv11c43842017-07-16 15:21:15 +030036 <ecomp.version>1.1.0</ecomp.version>
Yuli Shlosberg9dde9262017-09-12 14:11:48 +030037 <dox-common-lib.version>${project.version}</dox-common-lib.version>
Michael Lando451a3402017-02-19 10:28:42 +020038
Michael Lando451a3402017-02-19 10:28:42 +020039 <!-- Elastic Search mapper (reference the elastic search version actually). -->
Michael Landoa5445102018-03-04 14:53:33 +020040 <elastic-search.version>2.4.0</elastic-search.version>
41 <catalog-artifacts.version>1.0.0-SNAPSHOT</catalog-artifacts.version>
42 <catalog-builders.version>1.0.0-SNAPSHOT</catalog-builders.version>
Michael Lando451a3402017-02-19 10:28:42 +020043 <jetty.version>9.2.10.v20150310</jetty.version>
44
45 <!-- JSON and YAML Parsing -->
Gitelman, Tal (tg851x)483c3d92018-03-12 18:41:15 +020046 <jackson.version>2.8.10</jackson.version>
Michael Landob3d48982017-06-11 14:22:02 +030047 <jackson.yaml.version>2.8.1</jackson.yaml.version>
Michael Landoa5445102018-03-04 14:53:33 +020048 <jackson.annotations.version>2.8.4</jackson.annotations.version>
Michael Lando451a3402017-02-19 10:28:42 +020049
50 <!-- Yaml for properties -->
AviZi280f8012017-06-09 02:39:56 +030051 <snakeyaml.version>1.14</snakeyaml.version>
52 <functionaljava.version>4.4</functionaljava.version>
Michael Lando451a3402017-02-19 10:28:42 +020053 <httpclient.version>4.4.1</httpclient.version>
54 <httpcore.version>4.4.1</httpcore.version>
55 <json-simple.version>1.1</json-simple.version>
AviZi280f8012017-06-09 02:39:56 +030056
Michael Lando451a3402017-02-19 10:28:42 +020057
58 <!-- Logging start -->
59 <!-- logback -->
Gitelman, Tal (tg851x)483c3d92018-03-12 18:41:15 +020060 <logback.version>1.2.3</logback.version>
AviZi280f8012017-06-09 02:39:56 +030061 <slf4j-api.version>1.7.10</slf4j-api.version>
62 <commons-codec>1.10</commons-codec>
63 <commons-logging>1.2</commons-logging>
Michael Lando451a3402017-02-19 10:28:42 +020064 <groovy.version>2.3.5</groovy.version>
65 <janino.version>3.0.6</janino.version>
Michael Lando3c3c8332017-07-20 01:29:49 +030066
Michael Lando451a3402017-02-19 10:28:42 +020067 <!-- aspects -->
68 <jcabi.version>0.20.1</jcabi.version>
69 <aspectjrt.version>1.8.4</aspectjrt.version>
AviZi280f8012017-06-09 02:39:56 +030070 <aspectj.version>1.7.4</aspectj.version>
Michael Lando451a3402017-02-19 10:28:42 +020071 <jcabi.plugin.version>0.13.2</jcabi.plugin.version>
Michael Lando3c3c8332017-07-20 01:29:49 +030072
Michael Lando451a3402017-02-19 10:28:42 +020073 <!-- Logging end -->
74 <!-- System Metrics -->
75 <sigar.version>1.6.4</sigar.version>
76
AviZi280f8012017-06-09 02:39:56 +030077 <regex.version>3.0.3</regex.version>
Michael Lando451a3402017-02-19 10:28:42 +020078
AviZi280f8012017-06-09 02:39:56 +030079 <!--GSON-->
80 <gson.version>2.3.1</gson.version>
81
82 <!--listen to file changes-->
83 <commons-jci-core.version>1.1</commons-jci-core.version>
84
85 <!--TESTING-->
Tal Gitelman51d50f02017-12-10 18:55:03 +020086 <mockito.version>2.12.0</mockito.version>
AviZi280f8012017-06-09 02:39:56 +030087 <junit.version>4.12</junit.version>
Michael Landoa5445102018-03-04 14:53:33 +020088 <assertj.version>3.8.0</assertj.version>
AviZi280f8012017-06-09 02:39:56 +030089 <testng.version>6.9.10</testng.version>
90 <extentreports.version>3.0.3</extentreports.version>
Michael Landoa5445102018-03-04 14:53:33 +020091 <cucumber.version>2.3.1</cucumber.version>
92
Tal Gitelmaned7e1c32017-06-29 19:30:00 +030093 <!-- parser-->
priyanshue812c4f2018-03-05 15:00:10 +053094 <sdc-tosca-parser.version>1.2.3-SNAPSHOT</sdc-tosca-parser.version>
Michael Landoa5445102018-03-04 14:53:33 +020095
Michael Lando451a3402017-02-19 10:28:42 +020096 <!--JaCoCO -->
97 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
AviZi280f8012017-06-09 02:39:56 +030098 <sonar.language>java</sonar.language>
Michael Lando451a3402017-02-19 10:28:42 +020099 <!-- Sonar properties -->
Michael Lando451a3402017-02-19 10:28:42 +0200100 <sonar.sourceEncoding>${project.build.sourceEncoding}</sonar.sourceEncoding>
Michael Lando451a3402017-02-19 10:28:42 +0200101 <sonar.projectBaseDir>${project.basedir}</sonar.projectBaseDir>
Michael Landoe2598f02017-10-18 02:01:08 +0300102 <sonar.branch>${project.version}</sonar.branch>
ml636rd0214c72017-02-22 11:36:55 +0200103
Tal Gitelman51d50f02017-12-10 18:55:03 +0200104 <!--cassandra -->
105 <cassandra.driver.version>3.0.0</cassandra.driver.version>
106 <!-- maven central (Nexus) -->
107 <nexus.id.release>nexus</nexus.id.release>
108 <nexus.id.snapshot>nexus</nexus.id.snapshot>
109
ml636rd0214c72017-02-22 11:36:55 +0200110 <!--nexus-->
Andrew Grimberge636a202017-03-29 13:11:14 -0700111 <nexus.proxy>https://nexus.onap.org</nexus.proxy>
ig6133a16ca442017-04-05 16:10:49 +0300112 <sitePath>/content/sites/site/org/openecomp/sdc/${project.version}</sitePath>
ml636rd0214c72017-02-22 11:36:55 +0200113 <staging.profile.id>176c31dfe190a</staging.profile.id>
Michael Lando5e3ea6a2017-03-15 22:15:17 +0200114 <!--maven-->
115 <maven.build.timestamp.format>yyyyMMdd'T'HHmm</maven.build.timestamp.format>
Michael Landoa5445102018-03-04 14:53:33 +0200116 <!--io.fabric8-->
117 <fabric8.version>0.23.0</fabric8.version>
Yuli Shlosberg0875ce02018-01-25 13:53:36 +0200118 <!--docker tags-->
119 <docker.tag>${project.version}-${maven.build.timestamp}</docker.tag>
120 <docker.latest.tag>${project.version}-latest</docker.latest.tag>
121
Michael Lando451a3402017-02-19 10:28:42 +0200122 </properties>
123
Michael Landoa5445102018-03-04 14:53:33 +0200124 <dependencyManagement>
125 <dependencies>
126 <dependency>
127 <groupId>org.glassfish.jersey.ext</groupId>
128 <artifactId>jersey-bean-validation</artifactId>
129 <version>${jersey-bom.version}</version>
130 </dependency>
131
132 <dependency>
133 <groupId>org.glassfish.hk2.external</groupId>
134 <artifactId>asm-all-repackaged</artifactId>
135 <version>2.4.0</version>
136 </dependency>
137
138 <dependency>
139 <groupId>org.assertj</groupId>
140 <artifactId>assertj-core</artifactId>
141 <version>${assertj.version}</version>
142 </dependency>
143
144 <dependency>
145 <groupId>org.mockito</groupId>
146 <artifactId>mockito-core</artifactId>
147 <version>${mockito.version}</version>
148 </dependency>
149
150 <dependency>
151 <groupId>com.github.tomakehurst</groupId>
152 <artifactId>wiremock</artifactId>
153 <version>${wire-mock.version}</version>
154 </dependency>
155
156 <dependency>
157 <groupId>io.cucumber</groupId>
158 <artifactId>cucumber-java</artifactId>
159 <version>${cucumber.version}</version>
160 </dependency>
161
162 <dependency>
163 <groupId>io.cucumber</groupId>
164 <artifactId>cucumber-junit</artifactId>
165 <version>${cucumber.version}</version>
166 </dependency>
167 </dependencies>
168 </dependencyManagement>
169
Michael Lando451a3402017-02-19 10:28:42 +0200170 <reporting>
171 <plugins>
172 <plugin>
173 <groupId>org.apache.maven.plugins</groupId>
174 <artifactId>maven-javadoc-plugin</artifactId>
vempofcfaa3e2017-10-10 15:50:37 +0000175 <version>3.0.0-M1</version>
Michael Lando451a3402017-02-19 10:28:42 +0200176 <configuration>
177 <failOnError>false</failOnError>
178 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
179 <docletArtifact>
180 <groupId>org.umlgraph</groupId>
181 <artifactId>umlgraph</artifactId>
182 <version>5.6</version>
183 </docletArtifact>
184 <additionalparam>-views</additionalparam>
185 <useStandardDocletOptions>true</useStandardDocletOptions>
186 </configuration>
187 </plugin>
188 </plugins>
189 </reporting>
190
Michael Lando451a3402017-02-19 10:28:42 +0200191 <build>
192 <pluginManagement>
193 <plugins>
194
195 <plugin>
196 <groupId>org.apache.maven.plugins</groupId>
197 <artifactId>maven-site-plugin</artifactId>
198 <version>3.4</version>
199 <dependencies>
200 <dependency>
201 <groupId>org.apache.maven.wagon</groupId>
202 <artifactId>wagon-webdav-jackrabbit</artifactId>
203 <version>2.10</version>
204 </dependency>
205 </dependencies>
206 </plugin>
207
208
209 <plugin>
210 <groupId>org.apache.maven.plugins</groupId>
211 <artifactId>maven-assembly-plugin</artifactId>
212 <version>2.6</version>
213 </plugin>
214
215 <plugin>
216 <groupId>org.codehaus.mojo</groupId>
217 <artifactId>exec-maven-plugin</artifactId>
218 <version>1.4.0</version>
219 </plugin>
220 <plugin>
221 <groupId>org.sonarsource.scanner.maven</groupId>
222 <artifactId>sonar-maven-plugin</artifactId>
223 <version>3.0.2</version>
224 </plugin>
225 </plugins>
226 </pluginManagement>
227
228 <plugins>
Michael Lando546f7cf2017-09-23 00:05:17 +0300229
230 <!-- Staging Plugin -->
231 <plugin>
232 <groupId>org.sonatype.plugins</groupId>
233 <artifactId>nexus-staging-maven-plugin</artifactId>
234 <version>1.6.7</version>
235 <extensions>true</extensions>
236 <configuration>
237 <nexusUrl>${nexus.proxy}</nexusUrl>
238 <stagingProfileId>${staging.profile.id}</stagingProfileId>
239 <serverId>ecomp-staging</serverId>
240 </configuration>
241 </plugin>
242
Michael Lando451a3402017-02-19 10:28:42 +0200243 <plugin>
244 <artifactId>maven-surefire-plugin</artifactId>
245 <version>2.19.1</version>
246 <configuration>
247 <systemPropertyVariables>
248 <logback.configurationFile>src/test/resources/logback-test.xml</logback.configurationFile>
249 </systemPropertyVariables>
250 </configuration>
251 </plugin>
AviZi280f8012017-06-09 02:39:56 +0300252 <!-- plugin for parsing the project version -->
253 <plugin>
254 <groupId>org.codehaus.mojo</groupId>
255 <artifactId>build-helper-maven-plugin</artifactId>
256 <version>1.8</version>
257 <executions>
258 <execution>
259 <id>parse-version</id>
260 <goals>
261 <goal>parse-version</goal>
262 </goals>
263 </execution>
264 </executions>
265 </plugin>
Michael Lando451a3402017-02-19 10:28:42 +0200266
Michael Lando451a3402017-02-19 10:28:42 +0200267 <!-- Java Code Coverage -->
Michael Lando451a3402017-02-19 10:28:42 +0200268 <plugin>
269 <groupId>org.jacoco</groupId>
270 <artifactId>jacoco-maven-plugin</artifactId>
Tal Gitelman51d50f02017-12-10 18:55:03 +0200271 <version>0.7.9</version>
Michael Lando451a3402017-02-19 10:28:42 +0200272 <executions>
Michael Lando451a3402017-02-19 10:28:42 +0200273 <execution>
Tal Gitelman51d50f02017-12-10 18:55:03 +0200274 <id>default-prepare-agent</id>
Michael Lando451a3402017-02-19 10:28:42 +0200275 <goals>
276 <goal>prepare-agent</goal>
277 </goals>
Michael Lando451a3402017-02-19 10:28:42 +0200278 </execution>
Michael Lando451a3402017-02-19 10:28:42 +0200279 <execution>
Tal Gitelman51d50f02017-12-10 18:55:03 +0200280 <id>default-report</id>
Michael Lando451a3402017-02-19 10:28:42 +0200281 <goals>
282 <goal>report</goal>
283 </goals>
Michael Lando451a3402017-02-19 10:28:42 +0200284 </execution>
285 </executions>
286 </plugin>
Idan Amit86e98e72017-10-03 14:29:28 +0300287
288 <plugin>
289 <groupId>org.apache.maven.plugins</groupId>
290 <artifactId>maven-site-plugin</artifactId>
Idan Amit86e98e72017-10-03 14:29:28 +0300291 <dependencies>
292 <dependency>
293 <groupId>org.apache.maven.wagon</groupId>
294 <artifactId>wagon-webdav-jackrabbit</artifactId>
295 <version>2.10</version>
296 </dependency>
297 </dependencies>
298 </plugin>
Michael Lando451a3402017-02-19 10:28:42 +0200299
Michael Lando451a3402017-02-19 10:28:42 +0200300 <!-- Set the deployment repositories properties. -->
Michael Lando451a3402017-02-19 10:28:42 +0200301 <plugin>
302 <groupId>org.codehaus.gmaven</groupId>
303 <artifactId>gmaven-plugin</artifactId>
304 <version>1.4</version>
305 <executions>
306 <execution>
307 <inherited>false</inherited>
308 <phase>integration-test</phase>
309 <goals>
310 <goal>execute</goal>
311 </goals>
312 <configuration>
313 <source>
314 pom.properties['deploy.url']=
315 pom.version.contains('-SNAPSHOT') ?
316 project.distributionManagement.snapshotRepository.url :
317 project.distributionManagement.repository.url;
318 pom.properties['repo.id']= pom.version.contains('-SNAPSHOT') ?
319 project.distributionManagement.snapshotRepository.id :
320 project.distributionManagement.repository.id;
321 </source>
322 </configuration>
323 </execution>
324 </executions>
325 </plugin>
Michael Landoa5445102018-03-04 14:53:33 +0200326
327 <!-- license plugin -->
328 <plugin>
329 <groupId>org.codehaus.mojo</groupId>
330 <artifactId>license-maven-plugin</artifactId>
331 <version>1.10</version>
332 <configuration>
333 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
334 <processStartTag>============LICENSE_START=======================================================</processStartTag>
335 <processEndTag>============LICENSE_END=========================================================</processEndTag>
336 <sectionDelimiter>================================================================================</sectionDelimiter>
337 <licenseName>apache_v2</licenseName>
338 <inceptionYear>2017</inceptionYear>
339 <organizationName>AT&amp;T Intellectual Property. All rights
340 reserved.</organizationName>
341 <projectName>SDC</projectName>
342 <canUpdateCopyright>true</canUpdateCopyright>
343 <canUpdateDescription>true</canUpdateDescription>
344 <canUpdateLicense>true</canUpdateLicense>
345 <emptyLineAfterHeader>true</emptyLineAfterHeader>
346 <verbose>false</verbose>
347 <includes>
348 <include>**/*.java</include>
349 <include>**/*.ts</include>
350 </includes>
351 <excludes>
352 <exclude>**/*.d.ts</exclude>
353 </excludes>
354 <roots>
355 <root>src</root>
356 <root>app</root>
357 <root>server-mock</root>
358 <root>typings</root>
359 </roots>
360 <extraExtensions>
361 <ts>java</ts>
362 </extraExtensions>
363 </configuration>
364 <executions>
365 <execution>
366 <id>first</id>
367 <goals>
368 <goal>update-file-header</goal>
369 </goals>
370 <!--phase>process-sources</phase -->
371 </execution>
372 </executions>
373 </plugin>
AviZi280f8012017-06-09 02:39:56 +0300374 </plugins>
375 </build>
Michael Lando451a3402017-02-19 10:28:42 +0200376
AviZi280f8012017-06-09 02:39:56 +0300377 <profiles>
378 <profile>
379 <id>all</id>
380 <activation>
381 <activeByDefault>true</activeByDefault>
382 </activation>
383 <modules>
vempo09d4f062017-08-29 18:15:04 +0300384 <module>build-tools</module>
AviZi280f8012017-06-09 02:39:56 +0300385 <module>onboarding</module>
Michael Landoed64b5e2017-06-09 03:19:04 +0300386 <module>security-utils</module>
AviZi280f8012017-06-09 02:39:56 +0300387 <module>common-app-api</module>
388 <module>common-be</module>
389 <module>catalog-dao</module>
390 <module>catalog-model</module>
391 <module>catalog-be</module>
392 <module>asdctool</module>
393 <module>catalog-ui</module>
394 <module>catalog-fe</module>
Michael Lando4d97d5f2017-06-17 22:40:44 +0300395 <module>test-apis-ci</module>
396 <module>ui-ci</module>
Michael Landoed64b5e2017-06-09 03:19:04 +0300397 <module>sdc-os-chef</module>
AviZi280f8012017-06-09 02:39:56 +0300398 </modules>
399
400 </profile>
Michael Lando451a3402017-02-19 10:28:42 +0200401
AviZi280f8012017-06-09 02:39:56 +0300402 <profile>
403 <id>catalog</id>
404 <activation>
405 <activeByDefault>false</activeByDefault>
406 </activation>
407 <modules>
408 <module>security-utils</module>
409 <module>common-app-api</module>
410 <module>common-be</module>
411 <module>catalog-dao</module>
412 <module>catalog-model</module>
413 <module>catalog-be</module>
414 <module>asdctool</module>
415 <module>catalog-ui</module>
416 <module>catalog-fe</module>
AviZi280f8012017-06-09 02:39:56 +0300417 <module>test-apis-ci</module>
418 <module>ui-ci</module>
Michael Landoc61d2242017-06-20 11:07:13 +0300419 </modules>
420
421 <properties>
422 <ecomp.version>1.2.7</ecomp.version>
Michael Landoa5445102018-03-04 14:53:33 +0200423 <artifact-generator-api.version>1802.0.1.167</artifact-generator-api.version>
424 <artifact-generator-core.version>1802.0.1.167</artifact-generator-core.version>
425 <dox-common-lib.version>1802.0.1.167</dox-common-lib.version>
Tal Gitelmana20a3a02017-11-01 14:40:02 +0200426 <sdc-tosca-parser.version>1.1.32</sdc-tosca-parser.version>
Michael Landoa5445102018-03-04 14:53:33 +0200427 </properties>
Michael Landoc61d2242017-06-20 11:07:13 +0300428 </profile>
AviZi280f8012017-06-09 02:39:56 +0300429
430 <profile>
431 <id>onboarding</id>
432 <activation>
433 <activeByDefault>false</activeByDefault>
434 </activation>
435 <modules>
ilanapf83c9fd2018-03-08 11:34:13 +0200436 <module>build-tools</module>
AviZi280f8012017-06-09 02:39:56 +0300437 <module>onboarding</module>
438 </modules>
439 </profile>
sheetalm297209b2018-02-20 19:06:27 +0530440
AviZi280f8012017-06-09 02:39:56 +0300441 </profiles>
442
443 <repositories>
Tal Gitelmane2391b82017-08-03 15:53:48 +0300444 <!-- LF repositories -->
AviZi280f8012017-06-09 02:39:56 +0300445 <repository>
446 <id>ecomp-releases</id>
447 <name>Release Repository</name>
448 <url>${nexus.proxy}/content/repositories/releases/</url>
449 </repository>
450 <repository>
AviZi280f8012017-06-09 02:39:56 +0300451 <id>ecomp-snapshots</id>
452 <name>Snapshots Repository</name>
453 <url>${nexus.proxy}/content/repositories/snapshots/</url>
454 </repository>
Idan Amit317e3bc2017-08-16 10:26:17 +0300455 <repository>
456 <id>ecomp-public</id>
457 <name>Public Repository</name>
458 <url>${nexus.proxy}/content/repositories/public/</url>
459 </repository>
Tal Gitelmane2391b82017-08-03 15:53:48 +0300460 <!-- LF repositories END-->
AviZi280f8012017-06-09 02:39:56 +0300461 </repositories>
462
463 <distributionManagement>
AviZi280f8012017-06-09 02:39:56 +0300464 <repository>
465 <id>ecomp-releases</id>
466 <name>Release Repository</name>
467 <url>${nexus.proxy}/content/repositories/releases/</url>
468 </repository>
469 <snapshotRepository>
470 <id>ecomp-snapshots</id>
471 <name>Snapshot Repository</name>
472 <url>${nexus.proxy}/content/repositories/snapshots/</url>
473 </snapshotRepository>
474 <site>
475 <id>ecomp-site</id>
476 <url>dav:${nexus.proxy}${sitePath}</url>
477 </site>
478 </distributionManagement>
479</project>