Drop registry prefix from pom.xml
[aai/babel.git] / pom.xml
1 <!-- ============LICENSE_START======================================================= -->
2 <!-- org.onap.aai -->
3 <!-- ================================================================================ -->
4 <!-- Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved. -->
5 <!-- Copyright © 2017-2018 European Software Marketing Ltd. -->
6 <!-- ================================================================================ -->
7 <!-- Licensed under the Apache License, Version 2.0 (the "License"); -->
8 <!-- you may not use this file except in compliance with the License. -->
9 <!-- You may obtain a copy of the License at -->
10 <!-- -->
11 <!-- http://www.apache.org/licenses/LICENSE-2.0 -->
12 <!-- -->
13 <!-- Unless required by applicable law or agreed to in writing, software -->
14 <!-- distributed under the License is distributed on an "AS IS" BASIS, -->
15 <!-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -->
16 <!-- See the License for the specific language governing permissions and -->
17 <!-- limitations under the License. -->
18 <!-- ============LICENSE_END========================================================= -->
19 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21         <modelVersion>4.0.0</modelVersion>
22
23         <parent>
24                 <artifactId>ajsc-archetype-parent</artifactId>
25                 <groupId>com.att.ajsc</groupId>
26                 <version>2.0.0</version>
27         </parent>
28         <groupId>org.onap.aai</groupId>
29         <artifactId>babel</artifactId>
30         <version>1.2.0-SNAPSHOT</version>
31         <name>aai-babel</name>
32
33         <properties>
34                 <module.ajsc.namespace.name>babel-service</module.ajsc.namespace.name>
35                 <module.ajsc.namespace.version>v1</module.ajsc.namespace.version>
36                 <ajscRuntimeVersion>2.0.0</ajscRuntimeVersion>
37                 <absoluteDistFilesRoot>/appl/${project.artifactId}</absoluteDistFilesRoot>
38
39         <!-- For NO Versioning, REMOVE the /${project.version} from the <distFilesRoot> property below. -->
40                 <distFilesRoot>/appl/${project.artifactId}/${project.version}</distFilesRoot>
41                 <runAjscHome>${basedir}/target/swm/package/nix/dist_files${distFilesRoot}</runAjscHome>
42
43                 <!-- For SOA Cloud Installation -->
44                 <installOwnerUser>aaiadmin</installOwnerUser>
45                 <installOwnerGroup>aaiadmin</installOwnerGroup>
46                 <ownerManagementGroup>com.att.csid.lab</ownerManagementGroup>
47
48         <!-- Port Selection. A value of 0 will allow for dynamic port selection. 
49             For local testing, you may choose to hardcode this value to something like 
50             8080 -->
51                 <serverPort>9515</serverPort>
52                 <sslport>9516</sslport>
53
54                 <testRouteOffer>workstation</testRouteOffer>
55                 <testEnv>DEV</testEnv>
56                 <checkstyle.config.location>google_checks.xml</checkstyle.config.location>
57                 <sitePath>/content/sites/site/org/onap/aai/babel/${project.artifactId}/${project.version}</sitePath>
58
59                 <!-- Dependency Versions -->
60                 <aai.rest.client.version>1.2.1</aai.rest.client.version>
61                 <apache.lang3.version>3.6</apache.lang3.version>
62                 <commons-compress.version>1.14</commons-compress.version>
63                 <common.logging.version>1.2.2</common.logging.version>
64                 <dom4j.version>1.6.1</dom4j.version>
65                 <hamcrest.version>1.3</hamcrest.version>
66                 <javaassist.version>3.21.0-GA</javaassist.version>
67                 <logback.version>1.1.9</logback.version>
68                 <mvn.jaxb2.version>0.13.2</mvn.jaxb2.version>
69                 <mockito.version>1.10.19</mockito.version>
70                 <powermock.version>1.6.2</powermock.version>
71                 <sdc.distribution.client.version>1.1.32</sdc.distribution.client.version>
72                 <sdc.tosca.version>1.3.3</sdc.tosca.version>
73         <fasterxml.version>2.9.4</fasterxml.version>
74                 <jacoco.version>0.7.9</jacoco.version>
75                 <xmlunit.version>1.6</xmlunit.version>
76                 <aai-schema.version>1.2.1</aai-schema.version>
77                 <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
78                 <docker.location>${basedir}/target</docker.location>
79         </properties>
80
81         <dependencies>
82                 <dependency>
83                         <groupId>javax.ws.rs</groupId>
84                         <artifactId>javax.ws.rs-api</artifactId>
85                         <version>2.0.1</version>
86                 </dependency>
87                 <dependency>
88                         <groupId>dom4j</groupId>
89                         <artifactId>dom4j</artifactId>
90                         <version>${dom4j.version}</version>
91                         <scope>provided</scope>
92                 </dependency>
93                 <dependency>
94                         <groupId>com.att.aft</groupId>
95                         <artifactId>dme2</artifactId>
96                 </dependency>
97
98                 <!-- Common logging framework -->
99                 <dependency>
100                         <groupId>org.onap.aai.logging-service</groupId>
101                         <artifactId>common-logging</artifactId>
102                         <version>${common.logging.version}</version>
103                 </dependency>
104                 <dependency>
105                         <groupId>org.hamcrest</groupId>
106                         <artifactId>hamcrest-library</artifactId>
107                         <version>1.3</version>
108                         <scope>test</scope>
109                 </dependency>
110                 <dependency>
111                         <groupId>com.google.code.gson</groupId>
112                         <artifactId>gson</artifactId>
113                         <version>2.8.1</version>
114                 </dependency>
115                 <dependency>
116                         <groupId>ch.qos.logback</groupId>
117                         <artifactId>logback-core</artifactId>
118                         <version>${logback.version}</version>
119                 </dependency>
120
121                 <!-- apache commons -->
122                 <dependency>
123                         <groupId>org.apache.commons</groupId>
124                         <artifactId>commons-compress</artifactId>
125                         <version>${commons-compress.version}</version>
126                 </dependency>
127                 <dependency>
128                         <groupId>commons-io</groupId>
129                         <artifactId>commons-io</artifactId>
130                 </dependency>
131                 <dependency>
132                         <groupId>org.apache.commons</groupId>
133                         <artifactId>commons-lang3</artifactId>
134                         <version>${apache.lang3.version}</version>
135                 </dependency>
136                 <dependency>
137                         <groupId>org.onap.sdc.sdc-tosca</groupId>
138                         <artifactId>sdc-tosca</artifactId>
139                         <version>${sdc.tosca.version}</version>
140                 </dependency>
141                 <dependency>
142                         <groupId>com.fasterxml.jackson.core</groupId>
143                         <artifactId>jackson-core</artifactId>
144             <version>${fasterxml.version}</version><!--$NO-MVN-MAN-VER$ -->
145                 </dependency>
146         <dependency>
147             <groupId>org.onap.aai</groupId>
148             <artifactId>rest-client</artifactId>
149             <version>${aai.rest.client.version}</version>
150         </dependency>
151
152                 <!-- Testing -->
153                 <dependency>
154                         <groupId>org.mockito</groupId>
155                         <artifactId>mockito-core</artifactId>
156                         <version>${mockito.version}</version>
157                         <scope>test</scope>
158                 </dependency>
159                 <dependency>
160                         <groupId>org.powermock</groupId>
161                         <artifactId>powermock-module-junit4</artifactId>
162                         <version>${powermock.version}</version>
163                         <scope>test</scope>
164                 </dependency>
165                 <dependency>
166                         <groupId>org.powermock</groupId>
167                         <artifactId>powermock-api-mockito</artifactId>
168                         <version>${powermock.version}</version>
169                         <scope>test</scope>
170                 </dependency>
171                 <dependency>
172                         <groupId>org.powermock</groupId>
173                         <artifactId>powermock-module-javaagent</artifactId>
174                         <version>${powermock.version}</version>
175                         <scope>test</scope>
176                 </dependency>
177                 <dependency>
178                         <groupId>org.powermock</groupId>
179                         <artifactId>powermock-module-junit4-rule-agent</artifactId>
180                         <version>${powermock.version}</version>
181                         <scope>test</scope>
182                 </dependency>
183                 <dependency>
184                         <groupId>org.javassist</groupId>
185                         <artifactId>javassist</artifactId>
186                         <version>${javaassist.version}</version>
187                 </dependency>
188                 <dependency>
189                         <groupId>org.openecomp.sdc.sdc-distribution-client</groupId>
190                         <artifactId>sdc-distribution-client</artifactId>
191                         <version>${sdc.distribution.client.version}</version>
192                         <scope>test</scope>
193                 </dependency>
194                 <dependency>
195                         <groupId>xmlunit</groupId>
196                         <artifactId>xmlunit</artifactId>
197                         <version>${xmlunit.version}</version>
198                         <scope>test</scope>
199                 </dependency>
200         </dependencies>
201
202         <repositories>
203                 <repository>
204                         <id>ecomp-staging</id>
205                         <name>ECOMP Staging Repository</name>
206                         <url>${onap.nexus.url}/content/repositories/staging/</url>
207                 </repository>
208         </repositories>
209
210         <distributionManagement>
211                 <repository>
212                         <id>ecomp-releases</id>
213                         <name>ECOMP Release Repository</name>
214                         <url>${onap.nexus.url}/content/repositories/releases/</url>
215                 </repository>
216                 <snapshotRepository>
217                         <id>ecomp-snapshots</id>
218                         <name>ECOMP Snapshot Repository</name>
219                         <url>${onap.nexus.url}/content/repositories/snapshots/</url>
220                 </snapshotRepository>
221                 <site>
222                         <id>ecomp-site</id>
223                         <url>dav:${onap.nexus.url}${sitePath}</url>
224                 </site>
225         </distributionManagement>
226
227         <build>
228                 <plugins>
229                         <plugin>
230                                 <groupId>org.apache.maven.plugins</groupId>
231                                 <artifactId>maven-dependency-plugin</artifactId>
232                                 <executions>
233                                         <execution>
234                                                 <id>unpack</id>
235                                                 <phase>initialize</phase>
236                                                 <goals>
237                                                         <goal>unpack</goal>
238                                                 </goals>
239                                                 <configuration>
240                                                         <artifactItems>
241                                                                 <artifactItem>
242                                                                         <groupId>org.onap.aai.aai-common</groupId>
243                                                                         <artifactId>aai-schema</artifactId>
244                                                                         <version>${aai-schema.version}</version>
245                                                                         <type>jar</type>
246                                                                         <includes>aai_schema/aai_schema_v**.xsd</includes>
247                                                                         <outputDirectory>target/tmp</outputDirectory>
248                                                                 </artifactItem>
249                                                         </artifactItems>
250                                                 </configuration>
251                                         </execution>
252                                 </executions>
253                         </plugin>
254                         <plugin>
255                                 <groupId>org.jvnet.jaxb2.maven2</groupId>
256                                 <artifactId>maven-jaxb2-plugin</artifactId>
257                                 <version>${mvn.jaxb2.version}</version>
258                                 <executions>
259                                         <execution>
260                                                 <phase>process-sources</phase>
261                                                 <goals>
262                                                         <goal>generate</goal>
263                                                 </goals>
264                                         </execution>
265                                 </executions>
266                                 <configuration>
267                                         <schemaDirectory>target/tmp/aai_schema</schemaDirectory>
268                                         <generatePackage>org.onap.aai.babel.xml.generator.xsd</generatePackage>
269                                         <generateDirectory>target/generated-sources</generateDirectory>
270                                         <schemaIncludes>
271                                                 <include>aai_schema_latest.xsd</include>
272                                         </schemaIncludes>
273                                         <extension>true</extension>
274                                         <args>
275                                                 <arg>-Xannotate</arg>
276                                         </args>
277                                         <plugins>
278                                                 <plugin>
279                                                         <groupId>org.jvnet.jaxb2_commons</groupId>
280                                                         <artifactId>jaxb2-basics-annotate</artifactId>
281                                                         <version>0.6.4</version>
282                                                 </plugin>
283                                                 <!-- Add the dependencies with your annotations as 'plugins' below -->
284                                                 <plugin>
285                                                         <groupId>org.jvnet.jaxb2_commons</groupId>
286                                                         <artifactId>jaxb2-annotate-plugin-test-annox-annotations</artifactId>
287                                                         <version>1.0.0</version>
288                                                 </plugin>
289                                         </plugins>
290                                 </configuration>
291                         </plugin>
292                         <plugin>
293                                 <artifactId>exec-maven-plugin</artifactId>
294                                 <groupId>org.codehaus.mojo</groupId>
295                                 <executions>
296                                         <execution><!-- Run our script to get latest xsd version -->
297                                                 <id>Get latest xsd version</id>
298                                                 <phase>generate-sources</phase>
299                                                 <goals>
300                                                         <goal>exec</goal>
301                                                 </goals>
302                                                 <configuration>
303                                                         <workingDirectory>${basedir}/scripts</workingDirectory>
304                                                         <executable>bash</executable>
305                                                         <commandlineArgs>get-latest-xsd-version.sh ${basedir}</commandlineArgs>
306                                                 </configuration>
307                                         </execution>
308                                 </executions>
309                         </plugin>
310                         <plugin>
311                                 <groupId>org.codehaus.mojo</groupId>
312                                 <artifactId>sonar-maven-plugin</artifactId>
313                                 <version>3.2</version>
314                         </plugin>
315                         <plugin>
316                                 <groupId>org.codehaus.mojo</groupId>
317                                 <artifactId>cobertura-maven-plugin</artifactId>
318                                 <version>2.7</version>
319                                 <executions>
320                                         <execution>
321                                                 <phase />
322                                         </execution>
323                                 </executions>
324                         </plugin>
325                         <plugin>
326                                 <groupId>org.jacoco</groupId>
327                                 <artifactId>jacoco-maven-plugin</artifactId>
328                                 <version>${jacoco.version}</version>
329                                 <configuration>
330                                         <excludes>
331                                                 <exclude>**/xml/generator/xsd/*.class</exclude>
332                                         </excludes>
333                                 </configuration>
334                                 <executions>
335                                         <execution>
336                                                 <id>prepare-agent</id>
337                                                 <goals>
338                                                         <goal>prepare-agent</goal>
339                                                 </goals>
340                                         </execution>
341
342                                         <execution>
343                                                 <id>report</id>
344                                                 <phase>package</phase>
345                                                 <goals>
346                                                         <goal>report</goal>
347                                                 </goals>
348                                         </execution>
349                                 </executions>
350                         </plugin>
351
352                         <plugin>
353                                 <groupId>org.codehaus.groovy</groupId>
354                                 <artifactId>groovy-eclipse-compiler</artifactId>
355                                 <version>2.9.2-01</version>
356                         </plugin>
357                         <plugin>
358                                 <groupId>org.apache.maven.plugins</groupId>
359                                 <artifactId>maven-resources-plugin</artifactId>
360                                 <version>3.0.2</version>
361                                 <executions>
362                                         <execution>
363                                                 <id>copy-docker-file</id>
364                                                 <phase>package</phase>
365                                                 <goals>
366                                                         <goal>copy-resources</goal>
367                                                 </goals>
368                                                 <configuration>
369                                                         <outputDirectory>target</outputDirectory>
370                                                         <overwrite>true</overwrite>
371                                                         <resources>
372                                                                 <resource>
373                                                                         <directory>${basedir}/src/main/docker</directory>
374                                                                         <filtering>true</filtering>
375                                                                         <includes>
376                                                                                 <include>**/*</include>
377                                                                         </includes>
378                                                                 </resource>
379                                                                 <resource>
380                                                                         <directory>${basedir}/src/main/bin/</directory>
381                                                                 </resource>
382                                                         </resources>
383                                                 </configuration>
384                                         </execution>
385                                 </executions>
386                         </plugin>
387
388                         <plugin>
389                                 <groupId>org.apache.maven.plugins</groupId>
390                                 <artifactId>maven-jar-plugin</artifactId>
391                                 <version>3.0.2</version>
392                                 <executions>
393                                         <execution>
394                                                 <phase>package</phase>
395                                                 <goals>
396                                                         <goal>jar</goal>
397                                                 </goals>
398                                                 <configuration>
399                                                         <classifier>client</classifier>
400                                                         <includes>
401                                                                 <include>**/babel/service/data/*</include>
402                                                         </includes>
403                                                 </configuration>
404                                         </execution>
405                                 </executions>
406                         </plugin>
407                         <plugin>
408                                 <groupId>com.spotify</groupId>
409                                 <artifactId>docker-maven-plugin</artifactId>
410                                 <version>0.4.11</version>
411                                 <dependencies>
412                                         <dependency>
413                                                 <groupId>com.github.jnr</groupId>
414                                                 <artifactId>jnr-unixsocket</artifactId>
415                                                 <version>0.13</version>
416                                         </dependency>
417                                 </dependencies>
418                                 <configuration>
419                                         <verbose>true</verbose>
420                                         <serverId>docker-hub</serverId>
421                                         <imageName>onap/${project.artifactId}</imageName>
422                                         <dockerDirectory>${docker.location}</dockerDirectory>
423                                         <imageTags>
424                                                 <imageTag>latest</imageTag>
425                                         </imageTags>
426                                         <forceTags>true</forceTags>
427                                 </configuration>
428                         </plugin>
429
430                         <plugin>
431                                 <groupId>org.apache.maven.plugins</groupId>
432                                 <artifactId>maven-deploy-plugin</artifactId>
433                                 <version>2.8.2</version>
434                                 <configuration>
435                                         <classifier>client</classifier>
436                                 </configuration>
437                         </plugin>
438
439                         <plugin>
440                                 <groupId>org.apache.maven.plugins</groupId>
441                                 <artifactId>maven-site-plugin</artifactId>
442                                 <version>3.3</version>
443                                 <configuration>
444                                         <reportPlugins>
445                                                 <plugin>
446                                                         <groupId>org.apache.maven.plugins</groupId>
447                                                         <artifactId>maven-checkstyle-plugin</artifactId>
448                                                         <version>2.17</version>
449                                                         <reportSets>
450                                                                 <reportSet>
451                                                                         <reports>
452                                                                                 <report>checkstyle</report>
453                                                                         </reports>
454                                                                 </reportSet>
455                                                         </reportSets>
456                                                 </plugin>
457                                         </reportPlugins>
458                                 </configuration>
459                         </plugin>
460
461                         <plugin>
462                                 <groupId>org.sonatype.plugins</groupId>
463                                 <artifactId>nexus-staging-maven-plugin</artifactId>
464                                 <version>1.6.7</version>
465                                 <extensions>true</extensions>
466                                 <configuration>
467                                         <nexusUrl>${onap.nexus.url}</nexusUrl>
468                                         <stagingProfileId>176c31dfe190a</stagingProfileId>
469                                         <serverId>ecomp-staging</serverId>
470                                 </configuration>
471                         </plugin>
472
473                         <!-- Strong recommendation to use forkCount and reuseForks parameters as forkMode is deprecated since v2.14 -->
474                         <plugin>
475                                 <groupId>org.apache.maven.plugins</groupId>
476                                 <artifactId>maven-surefire-plugin</artifactId>
477                                 <configuration>
478                                         <reuseForks>false</reuseForks>
479                                         <forkCount>1</forkCount>
480                                         <environmentVariables>
481                                                 <AJSC_HOME>.</AJSC_HOME>
482                                         </environmentVariables>
483                                 </configuration>
484                         </plugin>
485                 </plugins>
486
487         </build>
488
489         <profiles>
490                 <profile>
491                         <id>runAjsc</id>
492                         <build>
493                                 <defaultGoal>initialize</defaultGoal>
494                                 <plugins>
495                                         <plugin>
496                                                 <groupId>org.codehaus.mojo</groupId>
497                                                 <artifactId>exec-maven-plugin</artifactId>
498                                                 <version>1.3.2</version>
499                                                 <executions>
500                                                         <execution>
501                                                                 <phase>initialize</phase>
502                                                                 <goals>
503                                                                         <goal>java</goal>
504                                                                 </goals>
505                                                                 <configuration>
506                                                                         <includeProjectDependencies>false</includeProjectDependencies>
507                                                                         <includePluginDependencies>true</includePluginDependencies>
508                                                                         <executable>java</executable>
509                                                                         <mainClass>com.att.ajsc.runner.Runner</mainClass>
510                                                                         <executableDependency>
511                                                                                 <groupId>com.att.ajsc</groupId>
512                                                                                 <artifactId>ajsc-runner</artifactId>
513                                                                         </executableDependency>
514                                                                         <additionalClasspathElements>
515                                                                                 <additionalClasspathElement>${basedir}/ajsc-shared-config/etc</additionalClasspathElement>
516                                                                         </additionalClasspathElements>
517
518                                                                         <environmentVariables>
519                                                                                 <AJSC_HOME>${runAjscHome}</AJSC_HOME>
520                                                                         </environmentVariables>
521
522                                                                         <!-- Main AJSC System Properties below (necessary for proper startup) -->
523                                                                         <systemProperties>
524                                                                                 <systemProperty>
525                                                                                         <key>AJSC_HOME</key>
526                                                                                         <value>${runAjscHome}</value>
527                                                                                 </systemProperty>
528                                                                                 <systemProperty>
529                                                                                         <key>AJSC_HOME</key>
530                                                                                         <value>${runAjscHome}</value>
531                                                                                 </systemProperty>
532                                                                                 <systemProperty>
533                                                                                         <key>AJSC_CONF_HOME</key>
534                                                                                         <value>${basedir}/bundleconfig-local</value>
535                                                                                 </systemProperty>
536                                                                                 <systemProperty>
537                                                                                         <key>logback.configurationFile</key>
538                                                                                         <value>${basedir}/ajsc-shared-config/etc/logback.xml</value>
539                                                                                 </systemProperty>
540                                                                                 <systemProperty>
541                                                                                         <key>AJSC_SHARED_CONFIG</key>
542                                                                                         <value>${basedir}/ajsc-shared-config</value>
543                                                                                 </systemProperty>
544                                                                                 <sysproperty>
545                                                                                         <key>AJSC_EXTERNAL_LIB_FOLDERS</key>
546                                                                                         <value>${basedir}/target/commonLibs</value>
547                                                                                 </sysproperty>
548                                                                                 <sysproperty>
549                                                                                         <key>AJSC_EXTERNAL_PROPERTIES_FOLDERS</key>
550                                                                                         <value>${basedir}/ajsc-shared-config/etc</value>
551                                                                                 </sysproperty>
552
553                                                                                 <systemProperty>
554                                                                                         <key>AJSC_SERVICE_NAMESPACE</key>
555                                                                                         <value>${module.ajsc.namespace.name}</value>
556                                                                                 </systemProperty>
557                                                                                 <systemProperty>
558                                                                                         <key>AJSC_SERVICE_VERSION</key>
559                                                                                         <value>${module.ajsc.namespace.version}</value>
560                                                                                 </systemProperty>
561                                                                                 <systemProperty>
562                                                                                         <key>SOACLOUD_SERVICE_VERSION</key>
563                                                                                         <value>${project.version}</value>
564                                                                                 </systemProperty>
565                                                                                 <systemProperty>
566                                                                                         <key>server.port</key>
567                                                                                         <value>${serverPort}</value>
568                                                                                 </systemProperty>
569                                                                                 <systemProperty>
570                                                                                         <key>CONFIG_HOME</key>
571                                                                                         <value>${basedir}/appconfig-local</value>
572                                                                                 </systemProperty>
573                                                                                 <systemProperty>
574                                                                                         <key>artifactgenerator.config</key>
575                                                                                         <value>${basedir}/appconfig-local/artifact-generator.properties</value>
576                                                                                 </systemProperty>
577                                                                         </systemProperties>
578
579                                     <!-- Command Line Arguments to add to the java command. Here, you 
580                                         can specify the port as well as the Context you want your service to run 
581                                         in. Use context=/ to run in an unnamed Context (Root Context). The default 
582                                         configuration of the AJSC is to run under the / Context. Setting the port 
583                                         here can aid during the development phase of your service. However, you can 
584                                         leave this argument out entirely, and the AJSC will default to using an Ephemeral 
585                                         port. -->
586                                                                         <arguments>
587                                                                                 <argument>context=/</argument>
588                                                                                 <argument>port=${serverPort}</argument>
589                                                                                 <argument>sslport=${sslport}</argument>
590                                                                         </arguments>
591                                                                 </configuration>
592                                                         </execution>
593                                                 </executions>
594                                                 <configuration>
595                                                         <executable>java</executable>
596                                                 </configuration>
597                                                 <dependencies>
598                                                         <dependency>
599                                                                 <groupId>com.att.ajsc</groupId>
600                                                                 <artifactId>ajsc-runner</artifactId>
601                                                                 <version>${ajscRuntimeVersion}</version>
602                                                         </dependency>
603                                                 </dependencies>
604                                         </plugin>
605                                 </plugins>
606                         </build>
607                 </profile>
608         </profiles>
609
610 </project>