Advertisement
Guest User

Untitled

a guest
Nov 12th, 2014
325
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.36 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3.     <modelVersion>4.0.0</modelVersion>
  4.     <groupId>com.example.test</groupId>
  5.     <artifactId>prototype</artifactId>
  6.     <version>0.0.1.BUILD-SNAPSHOT</version>
  7.     <packaging>jar</packaging>
  8.  
  9.     <parent>
  10.         <groupId>org.springframework.boot</groupId>
  11.         <artifactId>spring-boot-starter-parent</artifactId>
  12.         <version>1.1.9.RELEASE</version>
  13.     </parent>
  14.  
  15.     <properties>
  16.         <tomcat.version>8.0.14</tomcat.version>
  17.     </properties>
  18.  
  19.     <dependencies>
  20.  
  21.         <dependency>
  22.             <groupId>org.springframework.boot</groupId>
  23.             <artifactId>spring-boot-starter-web</artifactId>
  24.         </dependency>
  25.  
  26.         <dependency>
  27.             <groupId>org.springframework.boot</groupId>
  28.             <artifactId>spring-boot-starter-security</artifactId>
  29.         </dependency>
  30.  
  31.         <dependency>
  32.             <groupId>org.springframework.boot</groupId>
  33.             <artifactId>spring-boot-starter-thymeleaf</artifactId>
  34.         </dependency>
  35.  
  36.         <dependency>
  37.             <groupId>org.thymeleaf.extras</groupId>
  38.             <artifactId>thymeleaf-extras-springsecurity3</artifactId>
  39.         </dependency>
  40.  
  41.         <dependency>
  42.             <groupId>de.tudresden.inf.st</groupId>
  43.             <artifactId>salespoint-framework</artifactId>
  44.             <version>6.0.0.RC1</version>
  45.         </dependency>
  46.  
  47.         <!-- Test dependencies -->
  48.  
  49.         <dependency>
  50.             <groupId>org.springframework.boot</groupId>
  51.             <artifactId>spring-boot-starter-test</artifactId>
  52.         </dependency>
  53.  
  54.         <!-- HSQL DATENBANK -->
  55.  
  56.         <dependency>
  57.             <groupId>org.hsqldb</groupId>
  58.             <artifactId>hsqldb</artifactId>
  59.             <version>2.3.2</version>
  60.             <scope>runtime</scope>
  61.         </dependency>
  62.  
  63.     </dependencies>
  64.  
  65.     <build>
  66.         <plugins>
  67.             <plugin>
  68.                 <artifactId>maven-compiler-plugin</artifactId>
  69.                 <configuration>
  70.                     <source>1.8</source>
  71.                     <target>1.8</target>
  72.                 </configuration>
  73.             </plugin>
  74.  
  75.             <plugin>
  76.                 <groupId>org.springframework.boot</groupId>
  77.                 <artifactId>spring-boot-maven-plugin</artifactId>
  78.             </plugin>
  79.  
  80.         </plugins>
  81.     </build>
  82.  
  83.     <repositories>
  84.         <repository>
  85.             <id>spring-libs-release</id>
  86.             <url>http://repo.spring.io/libs-release</url>
  87.         </repository>
  88.         <repository>
  89.             <id>salespointframework</id>
  90.             <url>http://www.st.inf.tu-dresden.de/SalesPoint/repository</url>
  91.         </repository>
  92.     </repositories>
  93.  
  94. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement