diff options
author | Huabing Zhao <zhaohuabing@gmail.com> | 2018-11-15 22:26:35 +0800 |
---|---|---|
committer | Huabing Zhao <zhaohuabing@gmail.com> | 2018-11-15 22:28:06 +0800 |
commit | 457508be9cc33473b68759fff21c2f3c06e8f4ec (patch) | |
tree | ddb1db6b1bcf174643e8700996c8cd14ccc9c197 /sdclient/discovery-service | |
parent | 717c3283ca2f58d0f04b710c0ee3aad6677145d2 (diff) |
Bump verison to 1.2.2
Issue-ID: MSB-302
Change-Id: I7be0dd78fbd0510e0890927a60c8b39d37651f46
Signed-off-by: Huabing Zhao <zhaohuabing@gmail.com>
Diffstat (limited to 'sdclient/discovery-service')
-rw-r--r-- | sdclient/discovery-service/dependency-reduced-pom.xml | 79 | ||||
-rw-r--r-- | sdclient/discovery-service/pom.xml | 4 |
2 files changed, 79 insertions, 4 deletions
diff --git a/sdclient/discovery-service/dependency-reduced-pom.xml b/sdclient/discovery-service/dependency-reduced-pom.xml index bced298..7e607ba 100644 --- a/sdclient/discovery-service/dependency-reduced-pom.xml +++ b/sdclient/discovery-service/dependency-reduced-pom.xml @@ -3,13 +3,13 @@ <parent> <artifactId>sdclient</artifactId> <groupId>org.onap.msb.discovery</groupId> - <version>1.1.0-SNAPSHOT</version> + <version>1.2.0-SNAPSHOT</version> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.onap.msb.discovery.sdclient</groupId> <artifactId>discovery-service</artifactId> <name>onap/msb/discovery/sdclient/discovery-service</name> - <version>1.1.0-SNAPSHOT</version> + <version>1.2.0-SNAPSHOT</version> <build> <resources> <resource> @@ -24,6 +24,81 @@ </resources> <plugins> <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>properties-maven-plugin</artifactId> + <version>1.0.0</version> + <executions> + <execution> + <phase>initialize</phase> + <goals> + <goal>read-project-properties</goal> + </goals> + <configuration> + <files> + <file>${basedir}/src/main/resources/swagger.properties</file> + </files> + </configuration> + </execution> + </executions> + </plugin> + <plugin> + <groupId>com.github.kongchen</groupId> + <artifactId>swagger-maven-plugin</artifactId> + <version>3.1.4</version> + <executions> + <execution> + <phase>compile</phase> + <goals> + <goal>generate</goal> + </goals> + </execution> + </executions> + <configuration> + <apiSources> + <apiSource> + <locations>${api-rest-package}</locations> + <schemes> + <scheme>http</scheme> + <scheme>https</scheme> + </schemes> + <host>${api-host-ip}:${api-host-port}</host> + <basePath>${api-base-path}</basePath> + <info> + <title>${api-title}</title> + <version>${api-version}</version> + <description>${api-description}</description> + <license> + <name>${api-license}</name> + </license> + </info> + <swaggerDirectory>${basedir}/target/classes</swaggerDirectory> + </apiSource> + </apiSources> + </configuration> + </plugin> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>build-helper-maven-plugin</artifactId> + <executions> + <execution> + <id>attach-artifacts</id> + <phase>package</phase> + <goals> + <goal>attach-artifact</goal> + </goals> + <configuration> + <artifacts> + <artifact> + <file>target/classes/swagger.json</file> + <type>json</type> + <classifier>schema</classifier> + </artifact> + </artifacts> + </configuration> + </execution> + </executions> + </plugin> + <plugin> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <configuration> diff --git a/sdclient/discovery-service/pom.xml b/sdclient/discovery-service/pom.xml index a3eb85c..227be6a 100644 --- a/sdclient/discovery-service/pom.xml +++ b/sdclient/discovery-service/pom.xml @@ -13,14 +13,14 @@ <parent> <groupId>org.onap.msb.discovery</groupId> <artifactId>sdclient</artifactId> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.2-SNAPSHOT</version> </parent> <groupId>org.onap.msb.discovery.sdclient</groupId> <artifactId>discovery-service</artifactId> <name>onap/msb/discovery/sdclient/discovery-service</name> <packaging>jar</packaging> - <version>1.2.0-SNAPSHOT</version> + <version>1.2.2-SNAPSHOT</version> <dependencies> |