Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.74 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.     <parent>
  6.         <groupId>org.springframework.boot</groupId>
  7.         <artifactId>spring-boot-starter-parent</artifactId>
  8.         <version>2.2.0.M4</version>
  9.         <relativePath /> <!-- lookup parent from repository -->
  10.     </parent>
  11.     <groupId>org.marketing</groupId>
  12.     <artifactId>newsletter</artifactId>
  13.     <version>0.0.1</version>
  14.     <name>newsletter</name>
  15.     <description>Newsletter Subscription Web-Application</description>
  16.  
  17.     <properties>
  18.         <java.version>1.8</java.version>
  19.         <maven-jar-plugin.version>3.1.1</maven-jar-plugin.version>
  20.     </properties>
  21.  
  22.     <dependencies>
  23.         <dependency>
  24.             <groupId>org.springframework.boot</groupId>
  25.             <artifactId>spring-boot-starter</artifactId>
  26.         </dependency>
  27.         <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test -->
  28.         <dependency>
  29.             <groupId>org.springframework.boot</groupId>
  30.             <artifactId>spring-boot-starter-test</artifactId>
  31.             <version>1.2.4.RELEASE</version>
  32.             <scope>test</scope>
  33.         </dependency>
  34.  
  35.         <dependency>
  36.             <groupId>org.springframework.boot</groupId>
  37.             <artifactId>spring-boot-starter-test</artifactId>
  38.             <scope>test</scope>
  39.             <!-- <exclusions> -->
  40.             <!-- <exclusion> -->
  41.             <!-- <groupId>org.junit.vintage</groupId> -->
  42.             <!-- <artifactId>junit-vintage-engine</artifactId> -->
  43.             <!-- </exclusion> -->
  44.             <!-- <exclusion> -->
  45.             <!-- <groupId>junit</groupId> -->
  46.             <!-- <artifactId>junit</artifactId> -->
  47.             <!-- </exclusion> -->
  48.             <!-- </exclusions> -->
  49.         </dependency>
  50.     </dependencies>
  51.  
  52.     <build>
  53.         <plugins>
  54.             <plugin>
  55.                 <groupId>org.springframework.boot</groupId>
  56.                 <artifactId>spring-boot-maven-plugin</artifactId>
  57.             </plugin>
  58.         </plugins>
  59.     </build>
  60.  
  61.     <repositories>
  62.         <repository>
  63.             <id>spring-snapshots</id>
  64.             <name>Spring Snapshots</name>
  65.             <url>https://repo.spring.io/snapshot</url>
  66.             <snapshots>
  67.                 <enabled>true</enabled>
  68.             </snapshots>
  69.         </repository>
  70.         <repository>
  71.             <id>spring-milestones</id>
  72.             <name>Spring Milestones</name>
  73.             <url>https://repo.spring.io/milestone</url>
  74.         </repository>
  75.     </repositories>
  76.     <pluginRepositories>
  77.         <pluginRepository>
  78.             <id>spring-snapshots</id>
  79.             <name>Spring Snapshots</name>
  80.             <url>https://repo.spring.io/snapshot</url>
  81.             <snapshots>
  82.                 <enabled>true</enabled>
  83.             </snapshots>
  84.         </pluginRepository>
  85.         <pluginRepository>
  86.             <id>spring-milestones</id>
  87.             <name>Spring Milestones</name>
  88.             <url>https://repo.spring.io/milestone</url>
  89.         </pluginRepository>
  90.     </pluginRepositories>
  91.  
  92. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement