aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/resources/example
AgeCommit message (Expand)AuthorFilesLines
2017-11-05Fix the blueprint for TCADeterme, Sebastien (sd378r)1-3/+0
2017-11-03Update the policyName send to Policyxg353y2-3/+3
2017-11-03Update the content send to Policyxg353y1-31/+33
2017-10-30Add encryption for passwordsDeterme, Sebastien (sd378r)1-0/+1166
2017-10-26Update TCA config json send to Policyxg353y3-8/+22
2017-10-11Update the TCA blueprint formatxg353y1-0/+3
2017-10-06Increase the test portabilityDeterme, Sebastien (sd378r)2-4/+0
2017-10-06Update Holmes related featurexg353y2-3/+3
2017-09-28Change the model to fix TCADeterme, Sebastien (sd378r)5-10/+306
2017-09-28New Files added for future unit testsDeterme, Sebastien (sd378r)3-0/+164
2017-09-27Code Improvement-663/+54
2017-09-22Fix bug at runtimeDeterme, Sebastien (sd378r)2-0/+2
2017-09-22Add the target resource IDDeterme, Sebastien (sd378r)6-68/+288
2017-09-18Reformat the JSON and fix checkstyle issueDeterme, Sebastien (sd378r)8-3370/+3370
2017-09-18Add new tests to CLAMPDeterme, Sebastien (sd378r)1-0/+192
2017-09-14Merge "Add new tests for DAO"Eddy Hautot3-0/+628
2017-09-14Add new tests for DAODeterme, Sebastien (sd378r)3-0/+628
2017-09-13Add test to HolmesDeterme, Sebastien (sd378r)2-0/+226
2017-09-11Fix Holmes delegates and sdcDeterme, Sebastien (sd378r)3-0/+2868
2017-09-08Add Holmes to the BackendDeterme, Sebastien (sd378r)3-110/+194
2017-08-08Rework of the unit tests (mainly IT)Determe, Sebastien (sd378r)5-348/+1248
2017-08-08Rework SDC calls and modelDeterme, Sebastien (sd378r)10-0/+4530
2017-06-21[CLAMP-1] Initial ONAP CLAMP seed code commitChrisC4-0/+490
ss="n">project.version}</ccsdk.project.version> <ccsdk.build.timestamp>${maven.build.timestamp}</ccsdk.build.timestamp> </properties> <dependencies> <dependency> <groupId>org.onap.ccsdk.cds.blueprintsprocessor</groupId> <artifactId>application</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>2.6</version> <executions> <execution> <id>copy-dockerfile</id> <goals> <goal>copy-resources</goal> </goals><!-- here the phase you need --> <phase>validate</phase> <configuration> <outputDirectory>${basedir}/target/docker-stage</outputDirectory> <resources> <resource> <directory>src/main/docker</directory> <includes> <include>*</include> </includes> <filtering>true</filtering> </resource> </resources> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>ant-test</id> <phase>package</phase> <configuration> <tasks> <fixcrlf srcdir="${basedir}" eol="unix" includes="**/*.sh, **/*.source"/> </tasks> </configuration> <goals> <goal>run</goal> </goals> </execution> </executions> </plugin> <plugin> <!--build the final artifact for docker deployment --> <artifactId>maven-assembly-plugin</artifactId> <version>3.1.0</version> <configuration> <!-- <skipAssembly>${skip.assembly}</skipAssembly> --> <outputDirectory>${basedir}/target/docker-stage</outputDirectory> <descriptors> <descriptor>src/main/docker/distribution.xml</descriptor> </descriptors> <tarLongFileMode>posix</tarLongFileMode> </configuration> <executions> <execution> <id>${assembly.id}</id> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.groovy.maven</groupId> <artifactId>gmaven-plugin</artifactId> <version>1.0</version> <executions> <execution> <phase>validate</phase> <goals> <goal>execute</goal> </goals> <configuration> <source>${basedir}/../../../TagVersion.groovy</source> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>docker</id> <build> <plugins> <plugin> <groupId>io.fabric8</groupId> <artifactId>docker-maven-plugin</artifactId> <version>0.26.1</version> <inherited>false</inherited> <configuration> <images> <image> <name>${image.name}</name> <build> <cleanup>try</cleanup> <dockerFileDir>${basedir}/target/docker-stage</dockerFileDir> <tags> <tag>${project.docker.latestminortag.version}</tag> <tag>${project.docker.latestfulltag.version}</tag> <tag>${project.docker.latesttagtimestamp.version}</tag> </tags> </build> </image> </images> <verbose>true</verbose> </configuration> <executions> <execution> <id>generate-images</id> <phase>package</phase> <goals> <goal>build</goal> </goals> </execution> <execution> <id>push-images</id> <phase>${docker.push.phase}</phase> <goals> <goal>build</goal> <goal>push</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>