Warning, /wikitolearn/wikitolearn-math-midtier/pom.xml is written in an unsupported language. File is not indexed.

0001 <?xml version="1.0" encoding="UTF-8"?>
0002 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
0003         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
0004         <modelVersion>4.0.0</modelVersion>
0005 
0006         <groupId>org.wikitolearn.midtier</groupId>
0007         <artifactId>math</artifactId>
0008         <version>0.1.0-SNAPSHOT</version>
0009         <packaging>jar</packaging>
0010 
0011         <name>Math Mid-Tier</name>
0012         <description>Mid tier to manage math</description>
0013 
0014         <parent>
0015                 <groupId>org.springframework.boot</groupId>
0016                 <artifactId>spring-boot-starter-parent</artifactId>
0017                 <version>2.0.6.RELEASE</version>
0018                 <relativePath/> <!-- lookup parent from repository -->
0019         </parent>
0020 
0021         <properties>
0022                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
0023                 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
0024                 <java.version>1.8</java.version>
0025                 <spring-cloud.version>Finchley.SR2</spring-cloud.version>
0026     <commons-collections4.version>4.1</commons-collections4.version>
0027     <springfox-swagger2.version>2.8.0</springfox-swagger2.version>
0028     <springfox-swagger-ui.version>2.8.0</springfox-swagger-ui.version>
0029     <modelmapper.version>2.0.0</modelmapper.version>
0030         </properties>
0031 
0032         <dependencies>
0033                 <dependency>
0034                         <groupId>org.springframework.boot</groupId>
0035                         <artifactId>spring-boot-starter-web</artifactId>
0036                 </dependency>
0037                 <dependency>
0038                         <groupId>org.springframework.cloud</groupId>
0039                         <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
0040                 </dependency>
0041                 <dependency>
0042                         <groupId>org.springframework.cloud</groupId>
0043                         <artifactId>spring-cloud-starter-oauth2</artifactId>
0044                 </dependency>
0045                 <dependency>
0046                         <groupId>org.springframework.cloud</groupId>
0047                         <artifactId>spring-cloud-starter-security</artifactId>
0048                 </dependency>
0049     <dependency>
0050       <groupId>org.springframework.security.oauth.boot</groupId>
0051       <artifactId>spring-security-oauth2-autoconfigure</artifactId>
0052     </dependency>
0053 
0054     <dependency>
0055       <groupId>org.projectlombok</groupId>
0056       <artifactId>lombok</artifactId>
0057       <optional>true</optional>
0058     </dependency>
0059     <dependency>
0060       <groupId>org.apache.httpcomponents</groupId>
0061       <artifactId>httpclient</artifactId>
0062     </dependency>
0063     <dependency>
0064       <groupId>org.apache.commons</groupId>
0065       <artifactId>commons-collections4</artifactId>
0066       <version>${commons-collections4.version}</version>
0067     </dependency>
0068     <dependency>
0069       <groupId>io.springfox</groupId>
0070       <artifactId>springfox-swagger2</artifactId>
0071       <version>${springfox-swagger2.version}</version>
0072     </dependency>
0073     <dependency>
0074       <groupId>io.springfox</groupId>
0075       <artifactId>springfox-swagger-ui</artifactId>
0076       <version>${springfox-swagger-ui.version}</version>
0077     </dependency>
0078     <dependency>
0079       <groupId>org.modelmapper</groupId>
0080       <artifactId>modelmapper</artifactId>
0081       <version>${modelmapper.version}</version>
0082     </dependency>
0083                 <dependency>
0084                         <groupId>org.springframework.boot</groupId>
0085                         <artifactId>spring-boot-starter-test</artifactId>
0086                         <scope>test</scope>
0087                 </dependency>
0088         </dependencies>
0089 
0090         <dependencyManagement>
0091                 <dependencies>
0092                         <dependency>
0093                                 <groupId>org.springframework.cloud</groupId>
0094                                 <artifactId>spring-cloud-dependencies</artifactId>
0095                                 <version>${spring-cloud.version}</version>
0096                                 <type>pom</type>
0097                                 <scope>import</scope>
0098                         </dependency>
0099                 </dependencies>
0100         </dependencyManagement>
0101 
0102         <build>
0103                 <plugins>
0104                         <plugin>
0105                                 <groupId>org.springframework.boot</groupId>
0106                                 <artifactId>spring-boot-maven-plugin</artifactId>
0107                         </plugin>
0108                 </plugins>
0109         </build>
0110   
0111     <repositories>
0112     <repository>
0113       <id>spring-snapshots</id>
0114       <url>http://repo.spring.io/snapshot</url>
0115       <snapshots>
0116         <enabled>true</enabled>
0117       </snapshots>
0118     </repository>
0119     <repository>
0120       <id>spring-milestones</id>
0121       <url>http://repo.spring.io/milestone</url>
0122     </repository>
0123   </repositories>
0124 
0125   <pluginRepositories>
0126     <pluginRepository>
0127       <id>spring-snapshots</id>
0128       <url>http://repo.spring.io/snapshot</url>
0129     </pluginRepository>
0130     <pluginRepository>
0131       <id>spring-milestones</id>
0132       <url>http://repo.spring.io/milestone</url>
0133     </pluginRepository>
0134   </pluginRepositories>
0135 
0136 </project>