diff options
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 272 |
1 files changed, 136 insertions, 136 deletions
@@ -11,7 +11,7 @@ <groupId>org.onap.so</groupId> <artifactId>so</artifactId> <packaging>pom</packaging> - <version>1.6.0-SNAPSHOT</version> + <version>1.7.0-SNAPSHOT</version> <name>so</name> <description>This Maven project is responsible to build and package all child projects - contributions in the MSO project. This build can be configured to run Functional tests and to start/stop a jboss server + Mysql DB. @@ -267,23 +267,23 @@ <configLocation>/google_checks.xml</configLocation> </configuration> </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>findbugs-maven-plugin</artifactId> - <version>2.5.2</version> - <configuration> - <includeFilterFile>project-configs/code-tools/findbugs_include_filter.xml</includeFilterFile> - <nested>true</nested> - <findbugsXmlOutput>true</findbugsXmlOutput> - <findbugsXmlWithMessages>true</findbugsXmlWithMessages> - <xmlOutput>true</xmlOutput> - </configuration> - </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>sonar-maven-plugin</artifactId> - <version>5.1</version> - </plugin> +<!-- <plugin>--> +<!-- <groupId>org.codehaus.mojo</groupId>--> +<!-- <artifactId>findbugs-maven-plugin</artifactId>--> +<!-- <version>2.5.2</version>--> +<!-- <configuration>--> +<!-- <includeFilterFile>project-configs/code-tools/findbugs_include_filter.xml</includeFilterFile>--> +<!-- <nested>true</nested>--> +<!-- <findbugsXmlOutput>true</findbugsXmlOutput>--> +<!-- <findbugsXmlWithMessages>true</findbugsXmlWithMessages>--> +<!-- <xmlOutput>true</xmlOutput>--> +<!-- </configuration>--> +<!-- </plugin>--> +<!-- <plugin>--> +<!-- <groupId>org.codehaus.mojo</groupId>--> +<!-- <artifactId>sonar-maven-plugin</artifactId>--> +<!-- <version>5.1</version>--> +<!-- </plugin>--> <plugin> <artifactId>maven-scm-plugin</artifactId> <version>1.8.1</version> @@ -308,31 +308,31 @@ </dependency> </dependencies> </plugin> - <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>cobertura-maven-plugin</artifactId> - <version>2.5.2</version> - <configuration> - <formats> - <format>xml</format> - </formats> - </configuration> - </plugin> +<!-- <plugin>--> +<!-- <groupId>org.codehaus.mojo</groupId>--> +<!-- <artifactId>cobertura-maven-plugin</artifactId>--> +<!-- <version>2.5.2</version>--> +<!-- <configuration>--> +<!-- <formats>--> +<!-- <format>xml</format>--> +<!-- </formats>--> +<!-- </configuration>--> +<!-- </plugin>--> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>1.3.1</version> </plugin> - <plugin> - <groupId>com.fortify.ps.maven.plugin</groupId> - <artifactId>sca-maven-plugin</artifactId> - <version>4.20</version> - <configuration> - <buildId>mso-${project.version}</buildId> - <source>1.8</source> - </configuration> - </plugin> +<!-- <plugin>--> +<!-- <groupId>com.fortify.ps.maven.plugin</groupId>--> +<!-- <artifactId>sca-maven-plugin</artifactId>--> +<!-- <version>4.20</version>--> +<!-- <configuration>--> +<!-- <buildId>mso-${project.version}</buildId>--> +<!-- <source>1.8</source>--> +<!-- </configuration>--> +<!-- </plugin>--> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> @@ -435,105 +435,105 @@ </execution> </executions> </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>${format.skipExecute}</skip> - <configFile>${base-path}/project-configs/code-tools/onap-eclipse-format.xml</configFile> - </configuration> - </execution> - <execution> - <id>format-xml</id> - <goals> - <goal>format</goal> - </goals> - <phase>process-sources</phase> - <configuration> - <skip>${format.skipExecute}</skip> - <sourceDirectory>${project.basedir}</sourceDirectory> - <configXmlFile>${base-path}/project-configs/code-tools/pom-format.properties</configXmlFile> - <includes> - <include>pom.xml</include> - </includes> - </configuration> - </execution> - <execution> - <id>validate-java</id> - <goals> - <goal>validate</goal> - </goals> - <configuration> - <skip>${format.skipValidate}</skip> - <configFile>${base-path}/project-configs/code-tools/onap-eclipse-format.xml</configFile> - </configuration> - </execution> - <execution> - <id>validate-poms</id> - <goals> - <goal>validate</goal> - </goals> - <configuration> - <skip>${format.skipValidate}</skip> - <configFile>${base-path}/project-configs/code-tools/pom-format.properties</configFile> - <includes> - <include>pom.xml</include> - </includes> - </configuration> - </execution> - </executions> - <dependencies> - <dependency> - <groupId>com.fasterxml.jackson.core</groupId> - <artifactId>jackson-annotations</artifactId> - <version>2.9.8</version> - </dependency> - </dependencies> - </plugin> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-enforcer-plugin</artifactId> - <version>3.0.0-M3</version> - <executions> - <execution> - <id>enforce-property</id> - <configuration> - <skip>true</skip> - </configuration> - </execution> - <execution> - <id>enforce-no-snapshots</id> - <configuration> - <skip>true</skip> - </configuration> - </execution> - <execution> - <id>enforce-banned-dependencies</id> - <goals> - <goal>enforce</goal> - </goals> - <configuration> - <rules> - <bannedDependencies> - <excludes> - <exclude>org.powermock</exclude> - </excludes> - <searchTransitive>false</searchTransitive> - </bannedDependencies> - </rules> - <fail>true</fail> - </configuration> - </execution> - </executions> - </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>${format.skipExecute}</skip>--> +<!-- <configFile>${base-path}/project-configs/code-tools/onap-eclipse-format.xml</configFile>--> +<!-- </configuration>--> +<!-- </execution>--> +<!-- <execution>--> +<!-- <id>format-xml</id>--> +<!-- <goals>--> +<!-- <goal>format</goal>--> +<!-- </goals>--> +<!-- <phase>process-sources</phase>--> +<!-- <configuration>--> +<!-- <skip>${format.skipExecute}</skip>--> +<!-- <sourceDirectory>${project.basedir}</sourceDirectory>--> +<!-- <configXmlFile>${base-path}/project-configs/code-tools/pom-format.properties</configXmlFile>--> +<!-- <includes>--> +<!-- <include>pom.xml</include>--> +<!-- </includes>--> +<!-- </configuration>--> +<!-- </execution>--> +<!-- <execution>--> +<!-- <id>validate-java</id>--> +<!-- <goals>--> +<!-- <goal>validate</goal>--> +<!-- </goals>--> +<!-- <configuration>--> +<!-- <skip>${format.skipValidate}</skip>--> +<!-- <configFile>${base-path}/project-configs/code-tools/onap-eclipse-format.xml</configFile>--> +<!-- </configuration>--> +<!-- </execution>--> +<!-- <execution>--> +<!-- <id>validate-poms</id>--> +<!-- <goals>--> +<!-- <goal>validate</goal>--> +<!-- </goals>--> +<!-- <configuration>--> +<!-- <skip>${format.skipValidate}</skip>--> +<!-- <configFile>${base-path}/project-configs/code-tools/pom-format.properties</configFile>--> +<!-- <includes>--> +<!-- <include>pom.xml</include>--> +<!-- </includes>--> +<!-- </configuration>--> +<!-- </execution>--> +<!-- </executions>--> +<!-- <dependencies>--> +<!-- <dependency>--> +<!-- <groupId>com.fasterxml.jackson.core</groupId>--> +<!-- <artifactId>jackson-annotations</artifactId>--> +<!-- <version>2.9.8</version>--> +<!-- </dependency>--> +<!-- </dependencies>--> +<!-- </plugin>--> +<!-- <plugin>--> +<!-- <groupId>org.apache.maven.plugins</groupId>--> +<!-- <artifactId>maven-enforcer-plugin</artifactId>--> +<!-- <version>3.0.0-M3</version>--> +<!-- <executions>--> +<!-- <execution>--> +<!-- <id>enforce-property</id>--> +<!-- <configuration>--> +<!-- <skip>true</skip>--> +<!-- </configuration>--> +<!-- </execution>--> +<!-- <execution>--> +<!-- <id>enforce-no-snapshots</id>--> +<!-- <configuration>--> +<!-- <skip>true</skip>--> +<!-- </configuration>--> +<!-- </execution>--> +<!-- <execution>--> +<!-- <id>enforce-banned-dependencies</id>--> +<!-- <goals>--> +<!-- <goal>enforce</goal>--> +<!-- </goals>--> +<!-- <configuration>--> +<!-- <rules>--> +<!-- <bannedDependencies>--> +<!-- <excludes>--> +<!-- <exclude>org.powermock</exclude>--> +<!-- </excludes>--> +<!-- <searchTransitive>false</searchTransitive>--> +<!-- </bannedDependencies>--> +<!-- </rules>--> +<!-- <fail>true</fail>--> +<!-- </configuration>--> +<!-- </execution>--> +<!-- </executions>--> +<!-- </plugin>--> </plugins> <pluginManagement> <plugins> |