temporary fix for missing focker image
[dmaap/messagerouter/messageservice.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index 55926f4..65e17bf 100644 (file)
--- a/pom.xml
+++ b/pom.xml
        <parent>
                <groupId>org.onap.oparent</groupId>
                <artifactId>oparent</artifactId>
-               <version>0.1.1</version>
+               <version>1.1.0</version>
        </parent>
 
        <groupId>org.onap.dmaap.messagerouter.messageservice</groupId>
        <artifactId>dmaapMR1</artifactId>
-       <version>1.1.3-SNAPSHOT</version>
+       <version>1.1.4-SNAPSHOT</version>
        <name>dmaap-messagerouter-messageservice</name>
        <description>Message Router - Restful interface built for kafka</description>
        <licenses>
                                        <serverId>docker-hub</serverId>
                                        <imageTags>
                                                <imageTag>${dmaapImg}</imageTag>
+                                               <imageTag>${dmaapImg.release.version}</imageTag>
                                                <imageTag>latest</imageTag>
                                        </imageTags>
                                        <forceTags>true</forceTags>
                                <executions>
                                        <execution>
                                                <id>build-image</id>
-                                               <phase>package</phase>
+                                               <phase>install</phase>
                                                <goals>
                                                        <goal>build</goal>
                                                </goals>
 
                                        <execution>
                                                <id>tag-image-project-version</id>
-                                               <phase>package</phase>
+                                               <phase>install</phase>
                                                <goals>
                                                        <goal>tag</goal>
                                                </goals>
 
                                        <execution>
                                                <id>tag-image-latest</id>
-                                               <phase>package</phase>
+                                               <phase>install</phase>
                                                <goals>
                                                        <goal>tag</goal>
                                                </goals>
                                                        <skipDockerTag>${skip.docker.push}</skipDockerTag>
                                                </configuration>
                                        </execution>
+                                       <execution>
+                                               <id>tag-image-tmp</id>
+                                               <phase>install</phase>
+                                               <goals>
+                                                       <goal>tag</goal>
+                                               </goals>
+                                               <configuration>
+                                                       <image>onap/dmaap/dmaap-mr</image>
+                                                       <newName>${docker.push.registry}/onap/dmaap/dmaap-mr:${dmaapImg.release.version}</newName>
+                                                       <skipDockerTag>${skip.docker.push}</skipDockerTag>
+                                               </configuration>
+                                       </execution>
 
                                        <execution>
                                                <id>push-image-latest</id>
                                                        <skipDockerPush>${skip.docker.push}</skipDockerPush>
                                                </configuration>
                                        </execution>
+                                       <execution>
+                                               <id>push-image-tmp</id>
+                                               <phase>deploy</phase>
+                                               <goals>
+                                                       <goal>push</goal>
+                                               </goals>
+                                               <configuration>
+                                                       <imageName>${docker.push.registry}/onap/dmaap/dmaap-mr:${dmaapImg.release.version}</imageName>
+                                                       <skipDockerPush>${skip.docker.push}</skipDockerPush>
+                                               </configuration>
+                                       </execution>
                                </executions>
                        </plugin>
                        <plugin>
                <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
                <dockerLocation>${basedir}/target/swm/package/nix/dist_files/</dockerLocation>
                <docker.image.prefix>simpledemo</docker.image.prefix>
-
+        <javax-mail-version>1.5.0</javax-mail-version>
                <module.ajsc.namespace.name>dmaap</module.ajsc.namespace.name>
                <module.ajsc.namespace.version>v1</module.ajsc.namespace.version>
-               <ajscRuntimeVersion>1.0.0</ajscRuntimeVersion>
+               <ajscRuntimeVersion>3.0.6-oss</ajscRuntimeVersion>
+               <dmaapImg.release.version>1.1.4</dmaapImg.release.version>
 
                <!-- This will be the Absolute Root of the Project and should contain NO 
                        Versioning -->
                <testRouteOffer>workstation</testRouteOffer>
                <testEnv>DEV</testEnv>
                <dmaapImg>${project.version}</dmaapImg>
-               <camel.version>2.16.0</camel.version>
+               <camel.version>2.17.6</camel.version>
                <sitePath>/content/sites/site/org/onap/dmaap/messagerouter/messageservice/${project.artifactId}/${project.version}</sitePath>
                <skip.docker.build>true</skip.docker.build>
                <skip.docker.push>true</skip.docker.push>
                <nexusproxy>https://nexus.onap.org</nexusproxy>
                <docker.push.registry>nexus3.onap.org:10003</docker.push.registry>
+               <spring.version>3.2.18.RELEASE</spring.version>
        </properties>
 
        <!-- Distribution management -->
                so). If you have a startup failure related to a missing dme2 class not found 
                exception, please contact the AJSC team for assistance. You can email support 
                at ajsc-Support <DL-ajsc-Support@att.com>. For more information regarding 
-               the usage of the AJSC service pom.xml and management of dependencies, please 
-               goto wiki link:http://wiki.web.att.com/display/ajsc/pom.xml -->
+               the usage of the AJSC service pom.xml and management of dependencies,  -->
        <dependencies>
 
                <!-- cmn-CommonDataModel dependency added to resolve build issue not finding 
                <!-- <dependency> <groupId>csi-schemas-source</groupId> <artifactId>cmn-CommonDataModel</artifactId> 
                        <version>112.0.50</version> </dependency> -->
                <!-- TODO: add open source version here -->
+
                <dependency>
                        <groupId>com.att.cadi</groupId>
                        <artifactId>cadi-core</artifactId>
                        <artifactId>dme2</artifactId>
                        <version>3.1.200-oss</version>
                </dependency>
+               <dependency>
+                       <groupId>org.springframework</groupId>
+                       <artifactId>spring-expression</artifactId>
+                       <version>4.3.16.RELEASE</version>
+               </dependency>
+               <dependency>
+                       <groupId>org.springframework</groupId>
+                       <artifactId>spring-messaging</artifactId>
+                       <version>4.1.9.RELEASE</version>
+               </dependency>
+               <dependency>
+            <groupId>com.sun.mail</groupId>
+            <artifactId>javax.mail</artifactId>
+            <version>${javax-mail-version}</version>
+            <exclusions>
+              <!-- javax activation is part of the JDK now -->
+              <exclusion>
+                <groupId>javax.activation</groupId>
+                <artifactId>activation</artifactId>
+              </exclusion>
+            </exclusions>
+        </dependency>
+               
+               <dependency>
+                       <groupId>org.apache.zookeeper</groupId>
+                       <artifactId>zookeeper</artifactId>
+                       <version>3.4.10</version>
+               </dependency>
+               <dependency>
+      <groupId>org.grails</groupId>
+      <artifactId>grails-bootstrap</artifactId>
+      <version>2.5.4</version>
+      <scope>compile</scope>
+      <exclusions>
+        <exclusion>
+          <artifactId>ant</artifactId>
+          <groupId>org.apache.ant</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jna</artifactId>
+          <groupId>net.java.dev.jna</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>ant-trax</artifactId>
+          <groupId>org.apache.ant</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>gant_groovy1.8</artifactId>
+          <groupId>org.codehaus.gant</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>ant-launcher</artifactId>
+          <groupId>org.apache.ant</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jline</artifactId>
+          <groupId>jline</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>ivy</artifactId>
+          <groupId>org.apache.ivy</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>jansi</artifactId>
+          <groupId>org.fusesource.jansi</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>commons-logging</artifactId>
+          <groupId>commons-logging</groupId>
+        </exclusion>
+        <exclusion>
+          <artifactId>ant-junit</artifactId>
+          <groupId>org.apache.ant</groupId>
+        </exclusion>
+      </exclusions>
+    </dependency>
+    <dependency>
+                       <groupId>org.springframework</groupId>
+                       <artifactId>spring-webmvc</artifactId>
+                       <version>4.3.15.RELEASE</version>
+               </dependency>
+       <dependency>
+                       <groupId>org.springframework</groupId>
+                       <artifactId>spring-core</artifactId>
+                       <version>4.3.15.RELEASE</version>
+               </dependency>
+       <dependency>
+                       <groupId>org.springframework</groupId>
+                       <artifactId>spring-beans</artifactId>
+                       <version>4.3.15.RELEASE</version>
+               </dependency>
+               
+               <dependency>
+                       <groupId>org.springframework</groupId>
+                       <artifactId>spring-context</artifactId>
+                       <version>4.3.15.RELEASE</version>
+               </dependency>
                <dependency>
                        <groupId>commons-io</groupId>
                        <artifactId>commons-io</artifactId>
                <dependency>
                        <groupId>org.onap.dmaap.messagerouter.msgrtr</groupId>
                        <artifactId>msgrtr</artifactId>
-                       <version>1.1.1</version>
+                       <version>1.1.3</version>
                        <exclusions>
                                <exclusion>
                                        <groupId>org.slf4j</groupId>
                <dependency>
                <groupId>org.grails</groupId>
        <artifactId>grails-web</artifactId>
-       <version>2.4.4</version>
-        </dependency>
+       <version>2.5.4</version>
+       <exclusions>
+               <exclusion>
+                       <groupId>org.grails</groupId>
+                       <artifactId>grails-web-jsp</artifactId>
+               </exclusion>
+       </exclusions>
+               </dependency>
         <dependency>
                <groupId>org.codehaus.groovy</groupId>
                <artifactId>groovy-all</artifactId>
                <dependency>
                        <groupId>org.apache.cxf</groupId>
                        <artifactId>cxf-rt-rs-extension-providers</artifactId>
-                       <version>3.0.4</version>
+                       <version>3.0.12</version>
                </dependency>
                <dependency>
                        <groupId>org.codehaus.jettison</groupId>
                        <version>1.6.1</version>
                        <scope>provided</scope>
                </dependency>
-               <dependency>
-                       <groupId>com.att.aft</groupId>
-                       <artifactId>dme2</artifactId>
-                       <version>3.1.200</version>
-                       <!-- <scope>provided</scope> -->
-               </dependency>
                <dependency>
                        <groupId>com.att.ajsc</groupId>
                        <artifactId>ajsc-archetype-parent</artifactId>
-                       <version>2.0.0</version>
+                       <version>3.0.6-oss</version>
                        <type>pom</type>
                </dependency>
 
                <dependency>
                        <groupId>com.att.ajsc</groupId>
                        <artifactId>ajsc-runner</artifactId>
-                       <version>2.0.0</version>
+                       <version>3.0.6-oss</version>
                        <scope>runtime</scope>
                </dependency>
                <dependency>
                        <groupId>com.att.ajsc</groupId>
                        <artifactId>ajsc-core</artifactId>
-                       <version>2.0.0</version>
+                       <version>3.0.6-oss</version>
                        <scope>provided</scope>
                </dependency>
        </dependencies>
                                                                                        <key>logback.configurationFile</key>
                                                                                        <value>${basedir}/ajsc-shared-config/etc/logback.xml</value>
                                                                                </systemProperty>
+                                                                               <systemProperty>
+                                                                                       <key>com.att.eelf.logging.file</key>
+                                                                                       <value>logback.xml</value>
+                                                                               </systemProperty>
+                                                                               <systemProperty>
+                                                                                       <key>com.att.eelf.logging.path</key>
+                                                                                       <value>${basedir}/ajsc-shared-config/etc</value>
+                                                                               </systemProperty>
+                                                                               <systemProperty>
+                                                                                       <key>logging.config</key>
+                                                                                       <value>${basedir}/ajsc-shared-config/etc/logback.xml</value>
+                                                                               </systemProperty>
                                                                                <systemProperty>
                                                                                        <key>AJSC_SHARED_CONFIG</key>
                                                                                        <value>${basedir}/ajsc-shared-config</value>