aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwaqas.ikram <waqas.ikram@est.tech>2021-02-16 12:47:37 +0000
committerwaqas.ikram <waqas.ikram@est.tech>2021-02-16 13:12:54 +0000
commit538e4cefc767010885126373d41e62656c494383 (patch)
treeb6078b0d1248f24fd552d8a9c187b6683a9e8e7f
parent3c35f4000d657e4538dceca0465cdb2457150eb7 (diff)
Changing parent and core version to 1.8.0-SNAPSHOT
Change-Id: Ibe116a8e59e072ed98f441b7c4e504b0647e8c79 Issue-ID: SO-3486 Signed-off-by: waqas.ikram <waqas.ikram@est.tech>
-rw-r--r--pom.xml55
1 files changed, 53 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index 1c9df0c..ea4e36c 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,11 +4,11 @@
<parent>
<groupId>org.onap.so</groupId>
<artifactId>so</artifactId>
- <version>1.7.0-SNAPSHOT</version>
+ <version>1.8.0-SNAPSHOT</version>
</parent>
<groupId>org.onap.so.adapters.so-etsi-sol003-adapter</groupId>
<artifactId>so-etsi-sol003-adapter</artifactId>
- <version>1.8.0-SNAPSHOT</version>
+ <version>1.7.1-SNAPSHOT</version>
<name>SO ETSI SOL003 Adapter</name>
<packaging>pom</packaging>
@@ -44,6 +44,57 @@
<target>${version.java.compiler}</target>
</configuration>
</plugin>
+ <plugin>
+ <groupId>net.revelc.code.formatter</groupId>
+ <artifactId>formatter-maven-plugin</artifactId>
+ <version>2.9.0</version>
+ <executions>
+ <execution>
+ <id>format-java</id>
+ <goals>
+ <goal>format</goal>
+ </goals>
+ <phase>process-sources</phase>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </execution>
+ <execution>
+ <id>format-xml</id>
+ <goals>
+ <goal>format</goal>
+ </goals>
+ <phase>process-sources</phase>
+ <configuration>
+ <skip>true</skip>
+ <includes>
+ <include>pom.xml</include>
+ </includes>
+ </configuration>
+ </execution>
+ <execution>
+ <id>validate-java</id>
+ <goals>
+ <goal>validate</goal>
+ </goals>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </execution>
+ <execution>
+ <id>validate-poms</id>
+ <goals>
+ <goal>validate</goal>
+ </goals>
+ <configuration>
+ <skip>true</skip>
+ <includes>
+ <include>pom.xml</include>
+ </includes>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>