diff options
author | krishnaa96 <krishna.moorthy6@wipro.com> | 2021-02-26 13:17:40 +0530 |
---|---|---|
committer | krishnaa96 <krishna.moorthy6@wipro.com> | 2021-03-04 17:50:06 +0530 |
commit | 49ef5e4035726ae067fe6024b3aa01ec82b4211f (patch) | |
tree | 5f9c5c4803aa712f128b95bde6808c2d529db50b | |
parent | 00b90746ce2c65de3e7b50ef1b87af3933c895e7 (diff) |
Add application code
Issue-ID: CPS-243
Signed-off-by: krishnaa96 <krishna.moorthy6@wipro.com>
Change-Id: Iad2c1c7b33ea2d9969b8bf2284d30a206c03e41d
-rw-r--r-- | cps-tbdmt-application/pom.xml | 76 | ||||
-rw-r--r-- | cps-tbdmt-application/src/main/java/org/onap/cps/tbdmt/Application.java | 32 |
2 files changed, 107 insertions, 1 deletions
diff --git a/cps-tbdmt-application/pom.xml b/cps-tbdmt-application/pom.xml index ac57848..5ead62f 100644 --- a/cps-tbdmt-application/pom.xml +++ b/cps-tbdmt-application/pom.xml @@ -28,4 +28,78 @@ <modelVersion>4.0.0</modelVersion> <artifactId>cps-tbdmt-application</artifactId> -</project>
\ No newline at end of file + + <properties> + <app>org.onap.cps.tbdmt.Application</app> + <image.name>cps-tbdmt</image.name> + <jib-maven-plugin.version>2.8.0</jib-maven-plugin.version> + <minimum-coverage>0.0</minimum-coverage> + <nexus.repository>nexus3.onap.org:10003/onap/</nexus.repository> + <openjdk11.base.image>nexus3.onap.org:10001/onap/integration-java11:8.0.0</openjdk11.base.image> + </properties> + + <dependencies> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-web</artifactId> + <exclusions> + <exclusion> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-tomcat</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-actuator</artifactId> + </dependency> + <dependency> + <groupId>org.springframework.cloud</groupId> + <artifactId>spring-cloud-starter-sleuth</artifactId> + </dependency> + <dependency> + <groupId>${project.groupId}</groupId> + <artifactId>cps-tbdmt-rest</artifactId> + </dependency> + </dependencies> + <build> + <plugins> + <plugin> + <groupId>com.google.cloud.tools</groupId> + <artifactId>jib-maven-plugin</artifactId> + <version>${jib-maven-plugin.version}</version> + <configuration> + <container> + <mainClass>${app}</mainClass> + <creationTime>USE_CURRENT_TIMESTAMP</creationTime> + </container> + <from> + <image>${openjdk11.base.image}</image> + </from> + <to> + <tags> + <tag>latest</tag> + </tags> + <image>${nexus.repository}${image.name}:${project.version}</image> + </to> + </configuration> + <executions> + <execution> + <phase>package</phase> + <id>build</id> + <goals> + <goal>dockerBuild</goal> + </goals> + </execution> + <execution> + <phase>deploy</phase> + <id>buildAndPush</id> + <goals> + <goal>build</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> +</project> diff --git a/cps-tbdmt-application/src/main/java/org/onap/cps/tbdmt/Application.java b/cps-tbdmt-application/src/main/java/org/onap/cps/tbdmt/Application.java new file mode 100644 index 0000000..6e8be81 --- /dev/null +++ b/cps-tbdmt-application/src/main/java/org/onap/cps/tbdmt/Application.java @@ -0,0 +1,32 @@ +/*- + * ============LICENSE_START======================================================= + * ONAP + * ================================================================================ + * Copyright (C) 2021 Wipro Limited. + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============LICENSE_END========================================================= + */ + +package org.onap.cps.tbdmt; + +import org.springframework.boot.SpringApplication; +import org.springframework.boot.autoconfigure.SpringBootApplication; + +@SpringBootApplication +public class Application { + + public static void main(final String[] args) { + SpringApplication.run(Application.class, args); + } +} |