aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/lib/openecomp-item-permissions-lib
AgeCommit message (Expand)AuthorFilesLines
2022-04-21Step version to 1.10.4-SNAPSHOT1.10.4MichaelMorris4-4/+4
2022-03-22Step version to 1.10.3-SNAPSHOT1.10.3MichaelMorris4-4/+4
2022-02-09Step version to 1.10.2-SNAPSHOTMichaelMorris4-4/+4
2022-02-02Step version to 1.10.1-SNAPSHOTMichaelMorris4-4/+4
2022-01-13Improve testing stabilityvasraz2-2/+2
2021-10-01Step version for JakartaMichaelMorris4-4/+4
2021-09-20Updated SDC version to 1.9.2-SNAPSHOT1.9.2MichaelMorris4-4/+4
2021-09-13Update SDC version to 1.9.1-SNAPSHOT1.9.1MichaelMorris4-4/+4
2021-03-24Reformat openecomp-bevasraz23-242/+136
2021-03-22Update Master to IstambulChrisC4-4/+4
2021-03-17Update SDC versionChrisC4-4/+4
2021-03-16Improve test coveragexuegao1-25/+6
2021-03-04Update to 1.8.31.8.3ChrisC4-4/+4
2021-02-25Update version to 1.8.21.8.2ChrisC4-4/+4
2021-02-20Fix BLOCKER BUGs reported by Sonarvasraz1-83/+78
2021-01-30Update project version 1.8.0 -> 1.8.11.8.1Joanna Jeremicz4-4/+4
2020-11-05Update master to HonoluluChrisC4-4/+4
2020-10-26Fix broken local build1.7.2vasraz4-4/+4
2020-10-20Upgrade to 1.7.2sebdet4-4/+4
2020-09-07Update version to 1.7.1sebdet4-4/+4
2020-09-04Upgrade Vulnerable Direct Dependencies [jackson]amohamad1-1/+1
2020-06-30Fix test coverage drop introduced by #109510vasraz1-5/+0
2020-06-25Rationalize maven dependenciesJulienBe2-13/+2
2020-06-19Remove duplicate codexuegao1-17/+1
2020-05-06Prepare for Junit5vasraz2-63/+53
2020-03-12Disable SecurityFilterOfir Sonsino4-4/+4
2020-02-02Move to version 1.6.1shrek20004-4/+4
2019-10-29Bump SDC version 1.6.0Ofir Sonsino4-4/+4
2019-09-10Bump SDC version 1.5.2Ofir Sonsino4-4/+4
2019-09-03unit tests - openecomp-sdcTomasz Golabek2-18/+57
2019-07-28Update SDC version 1.5.1Ofir Sonsino4-4/+4
2019-07-11Added oparent to sdc mainTomasz Golabek14-2/+253
2019-05-07Update SDC version 1.5.0Sonsino, Ofir (os0695)4-4/+4
2018-11-15update sdc version in masterMichael Lando4-4/+4
2018-11-05bump sdc version to 1.3.3Michael Lando4-4/+4
2018-11-01Sorted out unit-test libraries in onboardingvempo2-4/+18
2018-11-01update sdc to version 1.3.2Michael Lando4-4/+4
2018-10-24update sdc version to 1.3.1Michael Lando4-4/+4
2018-10-14Unit test coverageayalaben3-50/+63
2018-10-09Unit test coverageayalaben1-9/+29
2018-09-25Test coverage-Correctionssiddharth09058-216/+361
2018-08-09Corrected relative path to parent POMvempo3-3/+0
2018-08-02Removed forced dependencies in commonvempo1-5/+6
2018-07-29re base codeMichael Lando1-3/+1
2018-07-15Upgraded servlet-api version to 3.0.1vempo1-1/+1
2018-07-12Response changedsiddharth09051-47/+67
2018-07-08Specified test scope for junit/testng/mockitovempo2-0/+8
2018-06-19Change TestNG scopeavigaffa3-7/+17
2018-06-18Revert "SonarQube coverage"ayalaben1-4/+0
2018-06-02update sdc versionMichael Lando4-4/+4
</goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0-M5</version> </plugin> <!-- Swagger code generation. --> <plugin> <groupId>io.swagger.codegen.v3</groupId> <artifactId>swagger-codegen-maven-plugin</artifactId> <executions> <execution> <id>openapi-yaml-gen</id> <goals> <goal>generate</goal> </goals> <phase>compile</phase> <configuration> <inputSpec>${project.basedir}/docs/openapi/openapi.yml</inputSpec> <language>openapi-yaml</language> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> <version>4.4.2</version> <dependencies> <dependency> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs</artifactId> <version>4.2.0</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>spotbugs</artifactId> <version>${project.version}</version> </dependency> <dependency> <!-- The SpotBugs Maven plugin uses SLF4J 1.8 beta 2 --> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>2.0.6</version> </dependency> </dependencies> <configuration> <plugins> <plugin> <groupId>jp.skypencil.findbugs.slf4j</groupId> <artifactId>bug-pattern</artifactId> <version>1.5.0</version> </plugin> </plugins> <!-- Enables analysis which takes more memory but finds more bugs. If you run out of memory, changes the value of the effort element to 'Low'. --> <addSourceDirs>true</addSourceDirs> <effort>Max</effort> <!-- Reports all bugs (other values are medium and max) --> <threshold>Low</threshold> <!-- Build doesn't fail if problems are found --> <failOnError>true</failOnError> <!-- References the excluded rules --> <excludeFilterFile>spotbugs-exclude.xml</excludeFilterFile> <!-- Produces XML report --> <xmlOutput>true</xmlOutput> <!-- Configures the directory in which the XML report is created --> <xmlOutputDirectory>${project.build.directory}/spotbugs</xmlOutputDirectory> </configuration> <executions> <!-- Ensures that SpotBugs inspects source code when project is compiled. --> <execution> <id>analyze-compile</id> <phase>compile</phase> <goals> <goal>check</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.jsonschema2pojo</groupId> <artifactId>jsonschema2pojo-maven-plugin</artifactId> <version>1.2.1</version> <configuration> <targetVersion>${java.version}</targetVersion> </configuration> <executions> <execution> <goals> <goal>generate</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.11.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <executions> <execution> <id>onap-license</id> <goals> <goal>check</goal> </goals> <phase>process-sources</phase> <configuration> <configLocation>onap-checkstyle/check-license.xml</configLocation> <includeResources>false</includeResources> <includeTestSourceDirectory>true</includeTestSourceDirectory> <includeTestResources>false</includeTestResources> <sourceDirectories> <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> </sourceDirectories> <consoleOutput>false</consoleOutput> <violationSeverity>warning</violationSeverity> <failOnViolation>true</failOnViolation> </configuration> </execution> <execution> <id>onap-java-style</id> <goals> <goal>check</goal> </goals> <phase>process-sources</phase> <configuration> <configLocation>onap-checkstyle/onap-java-style.xml</configLocation> <sourceDirectories> <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> </sourceDirectories> <includeResources>true</includeResources> <includeTestSourceDirectory>true</includeTestSourceDirectory> <includeTestResources>true</includeTestResources> <consoleOutput>false</consoleOutput> <violationSeverity>warning</violationSeverity> <failOnViolation>true</failOnViolation> </configuration> </execution> <execution> <id>cps-java-style</id> <goals> <goal>check</goal> </goals> <phase>process-sources</phase> <configuration> <configLocation>cps-java-style.xml</configLocation> <sourceDirectories> <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory> </sourceDirectories> <includeResources>true</includeResources> <includeTestSourceDirectory>true</includeTestSourceDirectory> <includeTestResources>true</includeTestResources> <consoleOutput>true</consoleOutput> <violationSeverity>warning</violationSeverity> <failOnViolation>true</failOnViolation> </configuration> </execution> </executions> <dependencies> <dependency> <groupId>org.onap.oparent</groupId> <artifactId>checkstyle</artifactId> <version>3.2.0</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>checkstyle</artifactId> <version>${project.version}</version> </dependency> </dependencies> </plugin> <!-- Mandatory plugins for using Spock --> <plugin> <!-- The gmavenplus plugin is used to compile Groovy code. To learn more about this plugin, visit https://github.com/groovy/GMavenPlus/wiki --> <groupId>org.codehaus.gmavenplus</groupId> <artifactId>gmavenplus-plugin</artifactId> <version>1.9.0</version> <executions> <execution> <goals> <goal>compileTests</goal> </goals> </execution> </executions> </plugin> <!-- Required because names of spec classes don't match default Surefire patterns (`*Test` etc.) --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <!--suppress UnresolvedMavenProperty --> <argLine>${surefireArgLine}</argLine> <useFile>false</useFile> <includes> <include>**/*Spec.java</include> <include>**/*Test.java</include> <!-- Just in case of having also "normal" JUnit tests --> </includes> <excludes> <exclude>**/IT*.java</exclude> </excludes> <environmentVariables> <!-- disable privileged container usage to cleanup the test containers; these will be removed automatically on jvm termination; see https://www.testcontainers.org/features/configuration/#disabling-ryuk --> <TESTCONTAINERS_RYUK_DISABLED>true</TESTCONTAINERS_RYUK_DISABLED> <TESTCONTAINERS_HUB_IMAGE_NAME_PREFIX>${docker.pull.registry}/</TESTCONTAINERS_HUB_IMAGE_NAME_PREFIX> </environmentVariables> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.10</version> <configuration> <!--All exclusions below are referring to generated code--> <excludes> <exclude>org/onap/cps/event/model/*</exclude> <exclude>org/onap/cps/rest/model/*</exclude> <exclude>org/onap/cps/cpspath/parser/antlr4/*</exclude> <exclude>org/onap/cps/ncmp/rest/model/*</exclude> <exclude>org/onap/cps/**/*MapperImpl.class</exclude> <exclude>org/onap/cps/ncmp/rest/stub/*</exclude> </excludes> </configuration> <executions> <execution> <id>default-prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>coverage-check</id> <goals> <goal>check</goal> </goals> <configuration> <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile> <rules> <rule> <element>BUNDLE</element> <limits> <limit> <counter>INSTRUCTION</counter> <value>COVEREDRATIO</value> <minimum>${minimum-coverage}</minimum> </limit> </limits> </rule> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>com.github.spotbugs</groupId> <artifactId>spotbugs-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.sonarsource.scanner.maven</groupId> <artifactId>sonar-maven-plugin</artifactId> <version>3.9.1.2184</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.6.0</version> <executions> <execution> <id>generate-csv</id> <phase>prepare-package</phase> <goals> <goal>exec</goal> </goals> </execution> </executions> <configuration> <executable>${script.executor}</executable> <workingDirectory>${parent.directory}/cps-ri/src/main/resources/</workingDirectory> <arguments> <argument>yangResourceCsvGenerator.py</argument> <argument>dmi-registry@2021-12-13</argument> <argument>dmi-registry@2022-02-10</argument> <argument>dmi-registry@2022-05-10</argument> </arguments> </configuration> </plugin> </plugins> </build> </project>