Skip to content

Instantly share code, notes, and snippets.

openapi: "3.0.0"
info:
version: 1.0.0
title: Swagger Petstore
license:
name: MIT
servers:
- url: http://petstore.swagger.io/v1
paths:
/pets:
@ravthiru
ravthiru / application.properties
Created July 12, 2019 14:37
Application properties
server.connection-timeout=5000
server.port = 8090
keycloak.realm=university
keycloak.auth-server-url=http://localhost:8080/auth
keycloak.ssl-required=external
keycloak.resource=course-management
keycloak.bearer-only=true
keycloak.credentials.secret=2a03baf8-58fc-47f2-9dd7-7a87a3004f80
@ravthiru
ravthiru / pom.xml
Created July 12, 2019 14:31
course-management pom file
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.lantana.school.course</groupId>
<artifactId>course-managment</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>course-managment</name>