summaryrefslogtreecommitdiffstats
path: root/docs
AgeCommit message (Expand)AuthorFilesLines
2018-04-09Updated git submodulesSai Gandham1-0/+0
2018-04-09Updated git submodulesyangyan1-0/+0
2018-04-09Updated git submodulesMei Su1-0/+0
2018-04-08Updated git submodulesSai Gandham1-0/+0
2018-04-08Updated git submodulesSai Gandham1-0/+0
2018-04-08Updated git submodulesSai Gandham1-0/+0
2018-04-08Updated git submodulesSai Gandham1-0/+0
2018-04-08Updated git submodulesSai Gandham1-0/+0
2018-04-08Updated git submodulesSai Gandham1-0/+0
2018-04-08Updated git submodulesSai Gandham1-0/+0
2018-04-08Updated git submodulessu622b1-0/+0
2018-04-08Updated git submodulesSai Gandham1-0/+0
2018-04-08Updated git submodulesshrikantawachar1-0/+0
2018-04-08Updated git submodulesLizi1-0/+0
2018-04-08Updated git submodulesvempo1-0/+0
2018-04-08Updated git submodulesvempo1-0/+0
2018-04-08Updated git submodulesSai Gandham1-0/+0
2018-04-08Updated git submodulessiddharth09051-0/+0
2018-04-08Updated git submodulesSai Gandham1-0/+0
2018-04-08Updated git submodulesDenes Nemeth1-0/+0
2018-04-08Updated git submodulesdenghui021-0/+0
2018-04-08Updated git submodulesJessica Wagantall1-0/+0
2018-04-08Updated git submodulesJessica Wagantall1-0/+0
2018-04-08Updated git submodulesDenes Nemeth1-0/+0
2018-04-08Updated git submodulesJessica Wagantall1-0/+0
2018-04-08Updated git submodulesJessica Wagantall1-0/+0
2018-04-07Updated git submodulesst782s1-0/+0
2018-04-07Updated git submodulesBozawglanian, Hagop (hb755d)1-0/+0
2018-04-06Updated git submodulesInstrumental1-0/+0
2018-04-06Updated git submodulesSai Gandham1-0/+0
2018-04-06Updated git submodulesBozawglanian, Hagop (hb755d)1-0/+0
2018-04-06Updated git submodulesBozawglanian, Hagop (hb755d)1-0/+0
2018-04-06Updated git submodulesvidhyasree1-0/+0
2018-04-06Updated git submodulesInstrumental1-0/+0
2018-04-06Updated git submodulessu622b1-0/+0
2018-04-06Updated git submodulesMike Elliott1-0/+0
2018-04-06Updated git submodulesSai Gandham1-0/+0
2018-04-06Updated git submodulesMike Elliott1-0/+0
2018-04-06Updated git submodulesGary Wu1-0/+0
2018-04-06Updated git submodulesJessica Wagantall1-0/+0
2018-04-06Updated git submodulessu622b1-0/+0
2018-04-06Updated git submodulesMike Elliott1-0/+0
2018-04-06Updated git submodulesvidhyasree1-0/+0
2018-04-06Updated git submodulesPatrick Brady1-0/+0
2018-04-06Updated git submodulesMandeep Khinda1-0/+0
2018-04-06Updated git submodulesTimoney, Dan (dt5972)1-0/+0
2018-04-06Updated git submodulesMandeep Khinda1-0/+0
2018-04-06Updated git submodulesMandeep Khinda1-0/+0
2018-04-06Updated git submodulesSai Gandham1-0/+0
2018-04-06Updated git submodulesMike Elliott1-0/+0
"nt"></version> </dependency> <dependency> <groupId>org.glassfish.hk2.external</groupId> <artifactId>javax.inject</artifactId> <version>2.4.0-b31</version> </dependency> <dependency> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path</artifactId> <version>${json.path.version}</version> </dependency> <dependency> <groupId>org.glassfish.jersey.containers</groupId> <artifactId>jersey-common</artifactId> <version>${jersey.version}</version> </dependency> <dependency> <groupId>org.glassfish.jersey.containers</groupId> <artifactId>jersey-container-servlet-core</artifactId> <version>${jersey.version}</version> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> <version>${hibernate.core.version}</version> </dependency> <dependency> <groupId>org.hibernate.common</groupId> <artifactId>hibernate-commons-annotations</artifactId> <version>${hibernate.commons.annotations.version}</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commons.io.version}</version> </dependency> <dependency> <groupId>xml-apis</groupId> <artifactId>xml-apis</artifactId> <version>${xml.apis.version}</version> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <executions> <execution> <id>pre-unit-test</id> <goals> <goal>prepare-agent</goal> </goals> <configuration> <destFile>${sonar.jacoco.reportPath}</destFile> <append>true</append> </configuration> </execution> <execution> <id>post-unit-test</id> <phase>test</phase> <goals> <goal>report</goal> </goals> <configuration> <dataFile>${sonar.jacoco.reportPath}</dataFile> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-checkstyle-plugin</artifactId> <executions> <execution> <id>onap-java-style</id> <goals> <goal>check</goal> </goals> <phase>process-sources</phase> <configuration> <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml with minor changes --> <configLocation>onap-checkstyle/onap-java-style.xml</configLocation> <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory --> <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> <includeResources>true</includeResources> <includeTestSourceDirectory>true</includeTestSourceDirectory> <includeTestResources>true</includeTestResources> <excludes> </excludes> <!-- suppressionsLocation>${project.baseUri}checkstyle-suppressions.xml</suppressionsLocation --> <consoleOutput>true</consoleOutput> <failsOnViolation>true</failsOnViolation> <violationSeverity>warning</violationSeverity> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>org.onap.oparent</groupId> <artifactId>checkstyle</artifactId> <version>${oparent.version}</version> <scope>compile</scope> </dependency> </dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-deploy-plugin</artifactId> <configuration> <skip /> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <encoding>${project.encoding}</encoding> <source>${project.source.version}</source> <target>${project.target.version}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <configuration> <encoding>${project.encoding}</encoding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <dependencies> <dependency> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-webdav-jackrabbit</artifactId> <version>2.10</version> </dependency> </dependencies> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco.version}</version> <configuration> <!-- Note: This exclusion list should match <sonar.exclusions> property above --> <excludes> <exclude>**/gen/**</exclude> <exclude>**/generated-sources/**</exclude> <exclude>**/yang-gen/**</exclude> <exclude>**/pax/**</exclude> </excludes> </configuration> <executions> <!-- Prepares the property pointing to the JaCoCo runtime agent which is passed as VM argument when Maven the Surefire plugin is executed. --> <execution> <id>pre-unit-test</id> <goals> <goal>prepare-agent</goal> </goals> <configuration> <destFile>${sonar.jacoco.reportPath}</destFile> </configuration> </execution> <!-- Ensures that the code coverage report for unit tests is created after unit tests have been run. --> <execution> <id>post-unit-test</id> <phase>test</phase> <goals> <goal>report</goal> </goals> <configuration> <dataFile>${sonar.jacoco.reportPath}</dataFile> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.eclipse.m2e</groupId> <artifactId>lifecycle-mapping</artifactId> <version>1.0.0</version> <configuration> <lifecycleMappingMetadata> <pluginExecutions> <pluginExecution> <pluginExecutionFilter> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <versionRange>2.17,)</versionRange> <goals> <goal>check</goal> </goals> </pluginExecutionFilter> <action> <ignore /> </action> </pluginExecution> </pluginExecutions> </lifecycleMappingMetadata> </configuration> </plugin> </plugins> </pluginManagement> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.4</version> <configuration> <failOnError>false</failOnError> <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet> <docletArtifact> <groupId>org.umlgraph</groupId> <artifactId>umlgraph</artifactId> <version>5.6</version> </docletArtifact> <additionalparam>-views</additionalparam> <useStandardDocletOptions>true</useStandardDocletOptions> </configuration> </plugin> </plugins> </reporting> </project>