Advertisement
Guest User

Untitled

a guest
Oct 19th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 3.18 KB | None | 0 0
  1. {
  2.   "project": {
  3.     "-xmlns": "http://maven.apache.org/POM/4.0.0",
  4.     "-xmlns:xsi": "http://www.w3.org/2001/XMLSchema-instance",
  5.     "-xsi:schemaLocation": "http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd",
  6.     "modelVersion": "4.0.0",
  7.     "groupId": "ru.messenger",
  8.     "artifactId": "myChat",
  9.     "packaging": "jar",
  10.     "version": "1.0-preRelize",
  11.     "name": "myChat Maven Webapp",
  12.     "parent": {
  13.       "groupId": "org.springframework.boot",
  14.       "artifactId": "spring-boot-starter-parent",
  15.       "version": "1.5.6.RELEASE"
  16.     },
  17.     "properties": { "java.version": "1.8" },
  18.     "dependencies": {
  19.       "dependency": [
  20.         {
  21.           "groupId": "org.springframework.boot",
  22.           "artifactId": "spring-boot-starter-web"
  23.         },
  24.         {
  25.           "groupId": "org.springframework.social",
  26.           "artifactId": "spring-social-facebook"
  27.         },
  28.         {
  29.           "groupId": "org.springframework.boot",
  30.           "artifactId": "spring-boot-starter-test",
  31.           "scope": "test"
  32.         },
  33.         {
  34.           "groupId": "org.springframework.boot",
  35.           "artifactId": "spring-boot-devtools",
  36.           "optional": "true"
  37.         },
  38.         {
  39.           "groupId": "org.springframework.boot",
  40.           "artifactId": "spring-boot-starter-security"
  41.         },
  42.         {
  43.           "groupId": "org.springframework.security",
  44.           "artifactId": "spring-security-messaging"
  45.         },
  46.         {
  47.           "groupId": "org.springframework.boot",
  48.           "artifactId": "spring-boot-starter-websocket"
  49.         },
  50.         {
  51.           "groupId": "org.springframework.boot",
  52.           "artifactId": "spring-boot-starter-actuator"
  53.         },
  54.         {
  55.           "groupId": "org.springframework.session",
  56.           "artifactId": "spring-session"
  57.         },
  58.         {
  59.           "groupId": "org.springframework.boot",
  60.           "artifactId": "spring-boot-configuration-processor",
  61.           "optional": "true"
  62.         },
  63.         {
  64.           "groupId": "org.springframework.security.oauth",
  65.           "artifactId": "spring-security-oauth2"
  66.         },
  67.         {
  68.           "groupId": "org.springframework.boot",
  69.           "artifactId": "spring-boot-starter-data-mongodb"
  70.         },
  71.         {
  72.           "groupId": "org.webjars",
  73.           "artifactId": "webjars-locator"
  74.         },
  75.         {
  76.           "groupId": "org.webjars",
  77.           "artifactId": "sockjs-client",
  78.           "version": "1.0.2"
  79.         },
  80.         {
  81.           "groupId": "org.webjars",
  82.           "artifactId": "stomp-websocket",
  83.           "version": "2.3.3"
  84.         },
  85.         {
  86.           "groupId": "org.mongodb",
  87.           "artifactId": "mongo-java-driver",
  88.           "version": "3.5.0"
  89.         },
  90.         {
  91.           "groupId": "commons-codec",
  92.           "artifactId": "commons-codec",
  93.           "version": "1.9"
  94.         },
  95.         {
  96.           "groupId": "junit",
  97.           "artifactId": "junit",
  98.           "version": "4.12"
  99.         }
  100.       ]
  101.     },
  102.     "build": {
  103.       "plugins": {
  104.         "plugin": {
  105.           "groupId": "org.springframework.boot",
  106.           "artifactId": "spring-boot-maven-plugin"
  107.         }
  108.       }
  109.     }
  110.   }
  111. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement