pom fix 75/48075/1
authorAreli, Fuss (af732p) <af732p@intl.att.com>
Thu, 17 May 2018 16:53:13 +0000 (19:53 +0300)
committerAreli, Fuss (af732p) <af732p@att.com>
Thu, 17 May 2018 16:56:01 +0000 (19:56 +0300)
Change-Id: If3bbd9f8bf578a60a6a2bbd32125217e6ecb3941
Issue-ID: SDC-1339
Signed-off-by: Areli, Fuss (af732p) <af732p@att.com>
dcaedt_be/pom.xml
dcaedt_catalog/api/pom.xml
dcaedt_catalog/asdc/pom.xml
dcaedt_catalog/db/pom.xml
dcaedt_catalog/pom.xml
dcaedt_catalog/service/pom.xml
dcaedt_tools/pom.xml
dcaedt_validator/kwalify/pom.xml
dcaedt_validator/pom.xml
pom.xml
version.properties

index 2bd614a..61b4482 100644 (file)
                <artifactId>dcae_dt_be_main</artifactId>
                <version>1.2.0-SNAPSHOT</version>
        </parent>
+
+       <properties>
+               <docker.staging.tag>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-STAGING-latest</docker.staging.tag>
+       </properties>
+
        <dependencies>
                <dependency>
                        <groupId>org.springframework.boot</groupId>
                        <version>6.9.10</version>
                        <scope>test</scope>
                </dependency>
-               <!-- https://mvnrepository.com/artifact/com.googlecode.json-simple/json-simple -->
                <dependency>
                        <groupId>com.googlecode.json-simple</groupId>
                        <artifactId>json-simple</artifactId>
                        <version>2.6.1</version>
                        <scope>compile</scope>
                </dependency>
+               <dependency>
+                       <groupId>javax.servlet</groupId>
+                       <artifactId>javax.servlet-api</artifactId>
+                       <version>4.0.0</version>
+                       <scope>provided</scope>
+               </dependency>
     </dependencies>
        <profiles>
                <profile>
                                </dependency>
                        </dependencies>
                </profile>
+               <!--<profile>-->
+                       <!--<id>server</id>-->
+                       <!--<activation>-->
+                               <!--<activeByDefault>true</activeByDefault>-->
+                       <!--</activation>-->
+                       <!--<dependencies>-->
+                               <!--<dependency>-->
+                                       <!--<groupId>javax.servlet</groupId>-->
+                                       <!--<artifactId>javax.servlet-api</artifactId>-->
+                                       <!--<version>4.0.0</version>-->
+                               <!--</dependency>-->
+                       <!--</dependencies>-->
+               <!--</profile>-->
+
                <profile>
-                       <id>server</id>
-                       <activation>
-                               <activeByDefault>true</activeByDefault>
-                       </activation>
-                       <dependencies>
-                               <dependency>
-                                       <groupId>javax.servlet</groupId>
-                                       <artifactId>javax.servlet-api</artifactId>
-                                       <version>4.0.0</version>
-                               </dependency>
-                       </dependencies>
-               </profile>
-               <profile>
-                 <id>docker</id>
+                    <id>docker</id>
                        <build>
-                       <plugins>
-                               <plugin>
+                           <plugins>
+                                   <plugin>
                                                <artifactId>maven-resources-plugin</artifactId>
                                                <version>3.0.2</version>
                                                <executions>
-                                                               <execution>
-                                                                               <id>copy-dcae-be-war</id>
-                                                                               <phase>validate</phase>
-                                                                               <goals>
-                                                                                               <goal>copy-resources</goal>
-                                                                               </goals>
-                                                                               <configuration>
-                                                                                               <outputDirectory>${project.parent.basedir}/docker/docker_be/target</outputDirectory>
-                                                                                               <resources>
-                                                                                                               <resource>
-                                                                                                                               <directory>${project.basedir}/target</directory>
-                                                                                                                               <includes>
-                                                                                                                                               <include>dcae.war</include>
-                                                                                                                               </includes>
-                                                                                                               </resource>
-                                                                                               </resources>
-                                                                               </configuration>
-                                                               </execution>
+                                                       <execution>
+                                                               <id>copy-dcae-be-war</id>
+                                                               <phase>verify</phase>
+                                                                       <goals>
+                                                                               <goal>copy-resources</goal>
+                                                                       </goals>
+                                                                       <configuration>
+                                                                               <outputDirectory>${project.parent.basedir}/docker/docker_be/target</outputDirectory>
+                                                                               <resources>
+                                                                                       <resource>
+                                                                                               <directory>${project.basedir}/target</directory>
+                                                                                               <includes>
+                                                                                                       <include>dcae.war</include>
+                                                                                               </includes>
+                                                                                       </resource>
+                                                                               </resources>
+                                                                       </configuration>
+                                                       </execution>
                                                </executions>
-                               </plugin>
-                               <plugin>
+                                       </plugin>
+                                       <plugin>
                                                <groupId>io.fabric8</groupId>
                                                <artifactId>docker-maven-plugin</artifactId>
                                                <version>0.23.0</version>
                                                <configuration>
-                                                               <verbose>true</verbose>
-                                                               <apiVersion>1.23</apiVersion>
-                                                               <images>
-                                                                               <!-- Build backend image -->
-                                                                               <image>
-                                                                                               <name>onap/dcae-be</name>
-                                                                                               <alias>dcae-be</alias>
-                                                                                               <build>
-                                                                                                               <cleanup>try</cleanup>
-                                                                                                               <dockerFileDir>${project.parent.basedir}/docker/docker_be</dockerFileDir>
-                                                                                                               <tags>
-                                                                                                                               <tag>${docker.tag}</tag>
-                                                                                                                               <tag>${docker.latest.tag}</tag>
-                                                                                                                               <tag>${docker.staging.tag}</tag>
-                                                                                                                </tags>
-                                                                                               </build>
-                                                                               </image>
-                                                               </images>
+                                                       <verbose>true</verbose>
+                                                       <apiVersion>1.23</apiVersion>
+                                                       <registry>nexus3.onap.org:10001</registry>
+                                                       <authConfig>
+                                                               <pull>
+                                                                       <username>docker</username>
+                                                                       <password>docker</password>
+                                                                </pull>
+                                                       </authConfig>
+                                                       <images>
+                                                               <!-- Build backend image -->
+                                                               <image>
+                                                                       <name>onap/dcae-be</name>
+                                                                       <alias>dcae-be</alias>
+                                                                       <build>
+                                                                               <cleanup>try</cleanup>
+                                                                               <dockerFileDir>${project.parent.basedir}/docker/docker_be</dockerFileDir>
+                                                                               <tags>
+                                                                                       <tag>${docker.tag}</tag>
+                                                                                       <tag>${docker.latest.tag}</tag>
+                                                                                       <tag>${docker.staging.tag}</tag>
+                                                                               </tags>
+                                                                       </build>
+                                                               </image>
+                                                       </images>
                                                </configuration>
                                                <executions>
-                                                               <execution>
-                                                                               <id>clean-images</id>
-                                                                               <phase>pre-clean</phase>
-                                                                               <goals>
-                                                                                               <goal>remove</goal>
-                                                                               </goals>
-                                                                               <configuration>
-                                                                                               <removeAll>true</removeAll>
-                                                                                               <image>onap/dcae-be</image>
-                                                                               </configuration>
-                                                               </execution>
-                                                               <execution>
-                                                                               <id>generate-images</id>
-                                                                               <phase>package</phase>
-                                                                               <goals>
-                                                                                               <goal>build</goal>
-                                                                               </goals>
-                                                               </execution>
-                                                               <execution>
-                                                                               <id>push-images</id>
-                                                                               <phase>deploy</phase>
-                                                                               <goals>
-                                                                                               <goal>push</goal>
-                                                                               </goals>
-                                                                               <configuration>
-                                                                                               <image>onap/dcae-be</image>
-                                                                               </configuration>
-                                                               </execution>
+                                                       <execution>
+                                                               <id>clean-images</id>
+                                                               <phase>pre-clean</phase>
+                                                               <goals>
+                                                                       <goal>remove</goal>
+                                                               </goals>
+                                                               <configuration>
+                                                                       <removeAll>true</removeAll>
+                                                                       <image>onap/dcae-be</image>
+                                                               </configuration>
+                                                       </execution>
+                                                       <execution>
+                                                               <id>generate-images</id>
+                                                               <phase>package</phase>
+                                                               <goals>
+                                                                       <goal>build</goal>
+                                                               </goals>
+                                                       </execution>
+                                                       <execution>
+                                                               <id>push-images</id>
+                                                               <phase>deploy</phase>
+                                                               <goals>
+                                                                       <goal>push</goal>
+                                                               </goals>
+                                                               <configuration>
+                                                                       <image>onap/dcae-be</image>
+                                                               </configuration>
+                                                       </execution>
                                                </executions>
-                               </plugin>
+                                       </plugin>
                        </plugins>
                </build>
-               </profile>
+       </profile>
 
        </profiles>
        <build>
                                                </resource>
                                        </webResources>
                                </configuration>
-                               <!-- <executions><execution><goals><goal>repackage</goal></goals></execution></executions><configuration><jvmArguments> -Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8096
-                                       </jvmArguments></configuration> -->
                        </plugin>
                        <plugin>
                                <groupId>org.apache.maven.plugins</groupId>
index 9f1ee46..ff51800 100644 (file)
                                                </manifestEntries>
                                        </archive>
                                </configuration>
-                               <!-- <executions> <execution> <id>make-assembly</id> this is used for
-                                       inheritance merges <phase>package</phase> bind to the packaging phase <goals>
-                                       <goal>single</goal> </goals> </execution> </executions> -->
                        </plugin>
                </plugins>
        </build>
-       <repositories>
-               <repository>
-                       <snapshots>
-                               <enabled>false</enabled>
-                       </snapshots>
-                       <id>jcenter</id>
-                       <name>Bintray JCenter</name>
-                       <url>http://repo1.maven.org/maven2/</url>
-               </repository>
-       </repositories>
+       <!--<repositories>-->
+               <!--<repository>-->
+                       <!--<snapshots>-->
+                               <!--<enabled>false</enabled>-->
+                       <!--</snapshots>-->
+                       <!--<id>jcenter</id>-->
+                       <!--<name>Bintray JCenter</name>-->
+                       <!--<url>http://repo1.maven.org/maven2/</url>-->
+               <!--</repository>-->
+       <!--</repositories>-->
        <dependencies>
                <dependency>
                        <groupId>commons-jxpath</groupId>
index a140df8..abaff6a 100644 (file)
                                        </execution>
                                </executions>
                        </plugin>
-                       <!-- <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId>
-                               <version>1.4</version> <executions> <execution> <phase>validate</phase> <goals>
-                               <goal>create</goal> </goals> </execution> </executions> <configuration> <doCheck>false</doCheck>
-                               <doUpdate>false</doUpdate> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-jar-plugin</artifactId> <version>2.1</version> <configuration>
-                               <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
-                               </manifest> <manifestEntries> <Implementation-Build>${buildNumber}</Implementation-Build>
-                               </manifestEntries> </archive> </configuration> </plugin> -->
                        <plugin>
                                <groupId>org.springframework.boot</groupId>
                                <artifactId>spring-boot-maven-plugin</artifactId>
@@ -73,8 +65,6 @@
                        <version>3.8.1</version>
                        <scope>test</scope>
                </dependency>
-               <!-- <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId>
-                       <version>2.4.4</version> </dependency> -->
                <dependency>
                        <groupId>org.springframework</groupId>
                        <artifactId>spring-core</artifactId>
index f44410d..152eb11 100644 (file)
        <build>
            <sourceDirectory>src/main/java</sourceDirectory>
            <plugins>
-             <plugin>
-               <artifactId>maven-compiler-plugin</artifactId>
-               <version>3.1</version>
-               <configuration>
-                 <source>1.8</source>
-                 <target>1.8</target>
-                 <encoding>${project.build.sourceEncoding}</encoding>
-               </configuration>
-             </plugin>
-             <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-dependency-plugin</artifactId>
-               <version>2.10</version>
-               <executions>
-                 <execution>
-                   <id>copy-dependencies</id>
-                   <phase>package</phase>
-                   <goals>
-                     <goal>copy-dependencies</goal>
-                   </goals>
-                   <configuration>
-                     <outputDirectory>${project.build.directory}/deps</outputDirectory>
-                     <overWriteReleases>false</overWriteReleases>
-                     <overWriteSnapshots>false</overWriteSnapshots>
-                     <overWriteIfNewer>true</overWriteIfNewer>
-                   </configuration>
-                 </execution>
-               </executions>
-             </plugin>
-       <plugin>
-               <groupId>org.codehaus.mojo</groupId>
-               <artifactId>buildnumber-maven-plugin</artifactId>
-             <version>1.4</version>
-           <executions>
-           <execution>
-                   <phase>validate</phase>
-                 <goals>
-                 <goal>create</goal>
-                 </goals>
-             </execution>
-         </executions>
-               <configuration>
-               <doCheck>false</doCheck>
-               <doUpdate>false</doUpdate>
-               </configuration>
-       </plugin>
-                               <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-jar-plugin</artifactId>
-               <version>2.1</version>
-               <configuration>
-               <archive>
-               <manifest>
-               <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
-               </manifest>
-               <manifestEntries>
-               <Implementation-Build>${buildNumber}</Implementation-Build>
-               </manifestEntries>
-               </archive>
-               </configuration>
-                               </plugin>
-
-             <plugin>
-               <groupId>org.apache.maven.plugins</groupId>
-               <artifactId>maven-assembly-plugin</artifactId>
-             <version>2.6</version>
-           <configuration>
-           <descriptorRefs>
-                   <descriptorRef>jar-with-dependencies</descriptorRef>
-               </descriptorRefs>
-                 <archive>
-                 <manifest>
-                 <mainClass>org.onap.sdc.dcae.db.neo4j.Modeled</mainClass>
-             </manifest>
-                                                       <manifestEntries>
-               <Implementation-Build>${buildNumber}</Implementation-Build>
-                                                       </manifestEntries>
-                 </archive>
-             </configuration>
-           <executions>
-           <execution>
-                   <id>make-assembly</id> <!-- this is used for inheritance merges -->
-                 <phase>package</phase> <!-- bind to the packaging phase -->
-               <goals>
-               <goal>single</goal>
-               </goals>
-           </execution>
-               </executions>
-       </plugin>
+                         <plugin>
+                               <artifactId>maven-compiler-plugin</artifactId>
+                               <version>3.1</version>
+                               <configuration>
+                                 <source>1.8</source>
+                                 <target>1.8</target>
+                                 <encoding>${project.build.sourceEncoding}</encoding>
+                               </configuration>
+                         </plugin>
+                         <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-dependency-plugin</artifactId>
+                               <version>2.10</version>
+                               <executions>
+                                 <execution>
+                                       <id>copy-dependencies</id>
+                                       <phase>package</phase>
+                                       <goals>
+                                         <goal>copy-dependencies</goal>
+                                       </goals>
+                                       <configuration>
+                                         <outputDirectory>${project.build.directory}/deps</outputDirectory>
+                                         <overWriteReleases>false</overWriteReleases>
+                                         <overWriteSnapshots>false</overWriteSnapshots>
+                                         <overWriteIfNewer>true</overWriteIfNewer>
+                                       </configuration>
+                                 </execution>
+                               </executions>
+                         </plugin>
+                       <plugin>
+                               <groupId>org.codehaus.mojo</groupId>
+                               <artifactId>buildnumber-maven-plugin</artifactId>
+                         <version>1.4</version>
+                               <executions>
+                               <execution>
+                                       <phase>validate</phase>
+                                 <goals>
+                                         <goal>create</goal>
+                                 </goals>
+                                 </execution>
+                         </executions>
+                               <configuration>
+                               <doCheck>false</doCheck>
+                               <doUpdate>false</doUpdate>
+                               </configuration>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-jar-plugin</artifactId>
+                               <version>2.1</version>
+                               <configuration>
+                               <archive>
+                                       <manifest>
+                                       <addDefaultImplementationEntries>true</addDefaultImplementationEntries>
+                                       </manifest>
+                                       <manifestEntries>
+                                       <Implementation-Build>${buildNumber}</Implementation-Build>
+                                       </manifestEntries>
+                               </archive>
+                               </configuration>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-assembly-plugin</artifactId>
+                               <version>2.6</version>
+                               <configuration>
+                               <descriptorRefs>
+                                       <descriptorRef>jar-with-dependencies</descriptorRef>
+                               </descriptorRefs>
+                                 <archive>
+                                         <manifest>
+                                                 <mainClass>org.onap.sdc.dcae.db.neo4j.Modeled</mainClass>
+                                         </manifest>
+                                         <manifestEntries>
+                                                 <Implementation-Build>${buildNumber}</Implementation-Build>
+                                         </manifestEntries>
+                                 </archive>
+                         </configuration>
+                               <executions>
+                                       <execution>
+                                               <id>make-assembly</id> <!-- this is used for inheritance merges -->
+                                         <phase>package</phase> <!-- bind to the packaging phase -->
+                                               <goals>
+                                               <goal>single</goal>
+                                               </goals>
+                                       </execution>
+                               </executions>
+                       </plugin>
 
            </plugins>
          </build>
index 3bc2373..82bf7df 100644 (file)
                <version>1.2.0-SNAPSHOT</version>
 </parent>
   <modules>
-    <module>asdc</module>
-    <module>commons</module>
-    <module>db</module>
-    <module>api</module>
-               <module>service</module>
+      <module>commons</module>
+      <module>asdc</module>
+      <module>db</module>
+      <module>api</module>
+      <module>service</module>
   </modules>
 
   <scm>
index 539e0cb..cd66d92 100644 (file)
                  <encoding>${project.build.sourceEncoding}</encoding>
                </configuration>
              </plugin>
-                               <plugin>
-                                       <groupId>org.springframework.boot</groupId>
-                                       <artifactId>spring-boot-maven-plugin</artifactId>
-                                       <version>1.3.3.RELEASE</version>
-               <configuration>
-                       <mainClass>org.onap.sdc.dcae.catalog.engine.CatalogEngine</mainClass>
-               </configuration>
-          <executions>
-                 <execution>
-              <goals>
-                <goal>repackage</goal>
-              </goals>
-            </execution>
-           </executions>
-                               </plugin>
+                       <plugin>
+                               <groupId>org.springframework.boot</groupId>
+                               <artifactId>spring-boot-maven-plugin</artifactId>
+                               <version>1.3.3.RELEASE</version>
+                       <configuration>
+                               <mainClass>org.onap.sdc.dcae.catalog.engine.CatalogEngine</mainClass>
+                       </configuration>
+                       <executions>
+                               <execution>
+                                         <goals>
+                                               <goal>repackage</goal>
+                                         </goals>
+                       </execution>
+                       </executions>
+                       </plugin>
            </plugins>
          </build>
   <dependencies>
index 4888fad..71009bd 100644 (file)
         <artifactId>dcae_dt_be_main</artifactId>
         <version>1.2.0-SNAPSHOT</version>
     </parent>
+
+    <properties>
+        <docker.staging.tag>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-STAGING-latest</docker.staging.tag>
+    </properties>
+
     <profiles>
       <profile>
         <id>docker</id>
             <version>4.12</version>
         </dependency>
     </dependencies>
-
-    <distributionManagement>
-      <site>
-          <id>onap-site</id>
-          <url>dav:${onap.nexus.url}${sitePath}</url>
-      </site>
-       </distributionManagement>
 </project>
index 5eed50b..a80c19c 100644 (file)
@@ -76,5 +76,4 @@
                        </plugin>
                </plugins>
        </build>
-       <dependencies></dependencies>
 </project>
index 5937865..f2535f1 100644 (file)
     <tag>HEAD</tag>
     <url>https://github.research.att.com/ASC/ASC-Validator/</url>
   </scm>
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <configuration>
-          <source>1.8</source>
-          <target>1.8</target>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
 </project>
diff --git a/pom.xml b/pom.xml
index 1e66bc6..c7590d7 100644 (file)
--- a/pom.xml
+++ b/pom.xml
         <!-- lookup parent from repository -->
     </parent>
 
+    <properties>
+        <maven.build.timestamp.format>yyyyMMdd'T'HHmm</maven.build.timestamp.format>
+        <docker.tag>${project.version}-${maven.build.timestamp}</docker.tag>
+        <docker.latest.tag>${project.version}-latest</docker.latest.tag>
+        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+        <java.version>1.8</java.version>
+        <nexus.proxy>https://nexus.onap.org</nexus.proxy>
+        <staging.profile.id>176c31dfe190a</staging.profile.id>
+        <sitePath>/content/sites/site/org/openecomp/sdc/${project.version}</sitePath>
+    </properties>
+
     <dependencies>
         <dependency>
             <groupId>org.onap.sdc.dcae-d.dt-be-property</groupId>
         </dependency>
     </dependencies>
 
-    <properties>
-        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
-        <java.version>1.8</java.version>
-        <nexus.proxy>https://nexus.onap.org</nexus.proxy>
-        <staging.profile.id>176c31dfe190a</staging.profile.id>
-    </properties>
+
     <build>
         <plugins>
             <plugin>
                 </executions>
             </plugin>
             <!-- Site Plugin -->
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-site-plugin</artifactId>
-                               <version>3.4</version>
-                               <dependencies>
-                                       <dependency>
-                                               <groupId>org.apache.maven.wagon</groupId>
-                                               <artifactId>wagon-webdav-jackrabbit</artifactId>
-                                               <version>2.10</version>
-                                       </dependency>
-                               </dependencies>
-                       </plugin>
-                       <!-- Staging Plugin -->
-                       <plugin>
-                               <groupId>org.sonatype.plugins</groupId>
-                               <artifactId>nexus-staging-maven-plugin</artifactId>
-                               <version>1.6.7</version>
-                               <extensions>true</extensions>
-                               <configuration>
-                                       <nexusUrl>${nexus.proxy}</nexusUrl>
-                                       <stagingProfileId>${staging.profile.id}</stagingProfileId>
-                                       <serverId>ecomp-staging</serverId>
-                               </configuration>
-                       </plugin>
+            <plugin>
+                   <groupId>org.apache.maven.plugins</groupId>
+                       <artifactId>maven-site-plugin</artifactId>
+                       <version>3.4</version>
+                       <dependencies>
+                               <dependency>
+                                       <groupId>org.apache.maven.wagon</groupId>
+                                       <artifactId>wagon-webdav-jackrabbit</artifactId>
+                                       <version>2.10</version>
+                               </dependency>
+                       </dependencies>
+            </plugin>
+               <!-- Staging Plugin -->
+               <plugin>
+                       <groupId>org.sonatype.plugins</groupId>
+                       <artifactId>nexus-staging-maven-plugin</artifactId>
+                       <version>1.6.7</version>
+                       <extensions>true</extensions>
+                       <configuration>
+                               <nexusUrl>${nexus.proxy}</nexusUrl>
+                               <stagingProfileId>${staging.profile.id}</stagingProfileId>
+                               <serverId>ecomp-staging</serverId>
+                       </configuration>
+               </plugin>
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>build-helper-maven-plugin</artifactId>
+                <version>1.8</version>
+                <executions>
+                    <execution>
+                        <id>parse-version</id>
+                        <goals>
+                            <goal>parse-version</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.8</source>
+                    <target>1.8</target>
+                </configuration>
+            </plugin>
         </plugins>
     </build>
+
     <profiles>
         <profile>
             <id>all</id>
                 <module>dcaedt_tools</module>
             </modules>
         </profile>
-        <profile>
-            <id>docker</id>
-            <properties>
-                <!-- Docker tags -->
-                <maven.build.timestamp.format>yyyyMMdd'T'HHmm</maven.build.timestamp.format>
-                <docker.tag>${project.version}-${maven.build.timestamp}</docker.tag>
-                <docker.latest.tag>${project.version}-latest</docker.latest.tag>
-                <docker.staging.tag>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-STAGING-latest</docker.staging.tag>
-            </properties>
-            <activation>
-                <activeByDefault>false</activeByDefault>
-            </activation>
-            <build>
-                <plugins>
-                    <plugin>
-                        <groupId>org.codehaus.mojo</groupId>
-                        <artifactId>build-helper-maven-plugin</artifactId>
-                        <version>1.8</version>
-                        <executions>
-                            <execution>
-                                <id>parse-version</id>
-                                <goals>
-                                    <goal>parse-version</goal>
-                                </goals>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-         </profile>
     </profiles>
+
     <repositories>
         <!-- LF repositories -->
         <repository>
index a24b0ee..8471f55 100644 (file)
@@ -4,8 +4,8 @@
 # because they are used in Jenkins, whose plug-in doesn't support
 
 major=1
-minor=3
-patch=5
+minor=2
+patch=0
 
 base_version=${major}.${minor}.${patch}