Advertisement
Guest User

Untitled

a guest
Mar 20th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.80 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.     <modelVersion>4.0.0</modelVersion>
  5.  
  6.     <groupId>com.capgemini</groupId>
  7.     <artifactId>JPA2</artifactId>
  8.     <version>0.0.1-SNAPSHOT</version>
  9.     <packaging>jar</packaging>
  10.  
  11.     <name>JPA2</name>
  12.     <description>Demo project for Spring Boot</description>
  13.  
  14.     <parent>
  15.         <groupId>org.springframework.boot</groupId>
  16.         <artifactId>spring-boot-starter-parent</artifactId>
  17.         <version>2.0.0.RELEASE</version>
  18.         <relativePath/> <!-- lookup parent from repository -->
  19.     </parent>
  20.  
  21.     <properties>
  22.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  23.         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  24.         <java.version>1.8</java.version>
  25.     </properties>
  26.  
  27.     <dependencies>
  28.         <dependency>
  29.             <groupId>org.springframework.boot</groupId>
  30.             <artifactId>spring-boot-starter-data-jpa</artifactId>
  31.         </dependency>
  32.         <dependency>
  33.             <groupId>org.springframework.boot</groupId>
  34.             <artifactId>spring-boot-starter-jdbc</artifactId>
  35.         </dependency>
  36.         <dependency>
  37.             <groupId>org.springframework.boot</groupId>
  38.             <artifactId>spring-boot-starter-web</artifactId>
  39.         </dependency>
  40.  
  41.         <dependency>
  42.             <groupId>com.h2database</groupId>
  43.             <artifactId>h2</artifactId>
  44.             <scope>runtime</scope>
  45.         </dependency>
  46.         <dependency>
  47.             <groupId>mysql</groupId>
  48.             <artifactId>mysql-connector-java</artifactId>
  49.             <scope>runtime</scope>
  50.         </dependency>
  51.         <dependency>
  52.             <groupId>org.springframework.boot</groupId>
  53.             <artifactId>spring-boot-starter-test</artifactId>
  54.             <scope>test</scope>
  55.         </dependency>
  56.     </dependencies>
  57.  
  58.     <build>
  59.         <plugins>
  60.             <plugin>
  61.                 <groupId>org.springframework.boot</groupId>
  62.                 <artifactId>spring-boot-maven-plugin</artifactId>
  63.             </plugin>
  64.         </plugins>
  65.     </build>
  66.  
  67.  
  68. </project>
  69.  
  70.  
  71.  
  72. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  73. <settings xmlns="http://maven.apache.org/SETTINGS/1.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd">
  74.  
  75.   <!--<localRepository>${env.BASE_DIR}\maven\repo</localRepository>-->
  76.  
  77. <!--
  78.  This section will be activated when we get the PE fort StarterKit.
  79.  
  80.  <servers>
  81.     <server>
  82.      <id>StarterKitMavenRepository</id>
  83.      <username>PE_USER</username>
  84.      <password>PE_PASSWORD</password>
  85.    </server>
  86.  </servers>
  87.  
  88.  <mirrors>
  89.     <mirror>
  90.         <id>StarterKitMavenRepository</id>
  91.         <name>StarterKit Maven repository</name>
  92.         <url>https://seu.sdm.de/pu/starterkit/build/artifactory/repo/</url>
  93.         <mirrorOf>*</mirrorOf>
  94.     </mirror>
  95.  </mirrors>
  96. -->
  97. </settings>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement