summaryrefslogtreecommitdiffstats
path: root/docs/guides/onap-developer/apiref
AgeCommit message (Expand)AuthorFilesLines
2019-10-14Correct System Message Warning errorsEric Debeau1-1/+0
2019-09-02update link to Policy APIsRene_Robert1-1/+1
2019-08-05add links to ONAP Postman collection documentationRene_Robert1-0/+10
2019-05-31Update to Dublin API specJimmy Forsyth1-1/+1
2019-01-10Updated: TypoManish Kumar1-2/+2
2018-11-15Correct REST API Reference sectionEric Debeau1-3/+7
2018-11-03Update MultiCloud API referenceBin Yang1-1/+1
2018-09-08update the SO APIs in the docsseshukm1-1/+1
2018-09-01Cherry pick beijing improvements to masterRich Bennett1-6/+8
2018-05-22Add link check exceptionsRich Bennett1-1/+2
2018-05-09VVP - Fixing reference titles for VVPBozawglanian, Hagop (hb755d)1-1/+1
2018-05-04VVP - Updating docs to include vvpBozawglanian, Hagop (hb755d)1-0/+1
2018-04-26Add tox environment for spellcheckRich Bennett1-1/+1
2018-04-18Add platform operations to user guidesRich Bennett1-2/+1
2018-03-28Correct link to externalapi/nbi.gitRene Robert1-1/+1
2018-03-28add links to externalAPIRene Robert1-0/+1
2018-03-21Add MUSIC project submodule and toctree refsRich Bennett1-0/+1
2017-11-17Improve References to User GuidesRich Bennett1-0/+2
2017-11-13Fix reference for vnfsdkEric Debeau1-1/+1
2017-11-10Update apirefEric Debeau1-7/+15
2017-11-07Correct a reference to VID and add modelingEric Debeau1-4/+5
2017-11-06Create API reference pageEric Debeau1-0/+42
2017-11-03Multiple editorial improvementsRich Bennett1-0/+9
span class="nt"><groupId>org.onap.ccsdk.features.sdnr.wt</groupId> <artifactId>sdnr-wt-readthedocs-installer</artifactId> <version>1.2.0-SNAPSHOT</version> <packaging>pom</packaging> <name>ccsdk-features :: ${project.artifactId}</name> <properties> <application.name>sdnr-wt-readthedocs-installer</application.name> <include.transitive.dependencies>false</include.transitive.dependencies> </properties> <build> <plugins> <plugin> <artifactId>exec-maven-plugin</artifactId> <groupId>org.codehaus.mojo</groupId> <executions> <execution><!-- Run our version calculation script --> <id>generate readthedocs files from helpserver markdowns</id> <phase>generate-resources</phase> <goals> <goal>exec</goal> </goals> <configuration> <executable>convert.sh</executable> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>maven-repo-zip</id> <goals> <goal>single</goal> </goals> <phase>package</phase> <configuration> <attach>true</attach> <finalName>stage/${application.name}-${project.version}</finalName> <descriptors> <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor> </descriptors> <appendAssemblyId>true</appendAssemblyId> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>copy-resources</id> <!-- here the phase you need --> <!-- <phase>validate</phase> --> <phase>prepare-package</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/assembly/docs/</outputDirectory> <resources> <resource> <directory>../../../docs/</directory> <filtering>true</filtering> </resource> </resources> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>