Guest User

Untitled

a guest
Sep 19th, 2018
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 6.75 KB | None | 0 0
  1. <dependencies>
  2.         <dependency>
  3.             <groupId>org.springframework.boot</groupId>
  4.             <artifactId>spring-boot-starter</artifactId>
  5.             <exclusions>
  6.                 <exclusion>
  7.                     <groupId>org.springframework.boot</groupId>
  8.                     <artifactId>spring-boot-starter-logging</artifactId>
  9.                 </exclusion>
  10.             </exclusions>
  11.         </dependency>
  12.         <dependency>
  13.             <groupId>org.springframework.boot</groupId>
  14.             <artifactId>spring-boot-starter-log4j2</artifactId>
  15.         </dependency>
  16.         <dependency>
  17.             <groupId>org.apache.logging.log4j</groupId>
  18.             <artifactId>log4j-api</artifactId>
  19.         </dependency>
  20.         <dependency>
  21.             <groupId>org.apache.logging.log4j</groupId>
  22.             <artifactId>log4j-core</artifactId>
  23.         </dependency>
  24.         <dependency>
  25.             <groupId>org.apache.logging.log4j</groupId>
  26.             <artifactId>log4j-web</artifactId>
  27.         </dependency>
  28.         <dependency>
  29.             <groupId>org.springframework.boot</groupId>
  30.             <artifactId>spring-boot-starter-security</artifactId>
  31.         </dependency>
  32.         <dependency>
  33.             <groupId>org.springframework.boot</groupId>
  34.             <artifactId>spring-boot-starter-quartz</artifactId>
  35.         </dependency>
  36.         <dependency>
  37.             <groupId>org.springframework.boot</groupId>
  38.             <artifactId>spring-boot-starter-thymeleaf</artifactId>
  39.         </dependency>
  40.         <dependency>
  41.             <groupId>org.springframework.boot</groupId>
  42.             <artifactId>spring-boot-starter-web</artifactId>
  43.         </dependency>
  44.         <dependency>
  45.             <groupId>org.springframework.boot</groupId>
  46.             <artifactId>spring-boot-starter-tomcat</artifactId>
  47.             <scope>provided</scope>
  48.         </dependency>
  49.         <dependency>
  50.             <groupId>org.springframework.boot</groupId>
  51.             <artifactId>spring-boot-starter-aop</artifactId>
  52.         </dependency>
  53.         <dependency>
  54.             <groupId>org.springframework.boot</groupId>
  55.             <artifactId>spring-boot-starter-cache</artifactId>
  56.         </dependency>
  57.         <dependency>
  58.             <groupId>com.hazelcast</groupId>
  59.             <artifactId>hazelcast</artifactId>
  60.         </dependency>
  61.         <dependency>
  62.             <groupId>com.hazelcast</groupId>
  63.             <artifactId>hazelcast-spring</artifactId>
  64.         </dependency>
  65.         <dependency>
  66.             <groupId>javax.cache</groupId>
  67.             <artifactId>cache-api</artifactId>
  68.             <version>1.1.0</version>
  69.         </dependency>
  70.         <dependency>
  71.             <groupId>net.sourceforge.nekohtml</groupId>
  72.             <artifactId>nekohtml</artifactId>
  73.         </dependency>
  74.         <dependency>
  75.             <groupId>org.springframework.boot</groupId>
  76.             <artifactId>spring-boot-starter-test</artifactId>
  77.         </dependency>
  78.         <dependency>
  79.             <groupId>org.springframework.security.extensions</groupId>
  80.             <artifactId>spring-security-saml2-core</artifactId>
  81.             <version>1.0.3.RELEASE</version>
  82.         </dependency>
  83.         <dependency>
  84.             <groupId>org.springframework.data</groupId>
  85.             <artifactId>spring-data-mongodb</artifactId>
  86.         </dependency>
  87.         <dependency>
  88.             <groupId>com.googlecode.json-simple</groupId>
  89.             <artifactId>json-simple</artifactId>
  90.         </dependency>
  91.         <dependency>
  92.             <groupId>commons-io</groupId>
  93.             <artifactId>commons-io</artifactId>
  94.             <version>2.5</version>
  95.         </dependency>
  96.         <dependency>
  97.             <groupId>com.github.wnameless</groupId>
  98.             <artifactId>json-flattener</artifactId>
  99.             <version>0.1.0</version>
  100.         </dependency>
  101.         <dependency>
  102.             <groupId>net.sf.supercsv</groupId>
  103.             <artifactId>super-csv</artifactId>
  104.             <version>2.4.0</version>
  105.         </dependency>
  106.         <dependency>
  107.             <groupId>org.jsoup</groupId>
  108.             <artifactId>jsoup</artifactId>
  109.             <version>1.10.3</version>
  110.         </dependency>
  111.         <dependency>
  112.             <groupId>org.apache.commons</groupId>
  113.             <artifactId>commons-lang3</artifactId>
  114.             <version>3.6</version>
  115.         </dependency>
  116.         <dependency>
  117.             <groupId>commons-fileupload</groupId>
  118.             <artifactId>commons-fileupload</artifactId>
  119.             <version>1.3.3</version>
  120.         </dependency>
  121.         <dependency>
  122.             <groupId>org.modelmapper</groupId>
  123.             <artifactId>modelmapper</artifactId>
  124.             <version>1.1.0</version>
  125.         </dependency>
  126.         <dependency>
  127.             <groupId>org.powermock</groupId>
  128.             <artifactId>powermock-api-mockito2</artifactId>
  129.             <version>1.7.4</version>
  130.             <scope>test</scope>
  131.         </dependency>
  132.         <dependency>
  133.             <groupId>org.powermock</groupId>
  134.             <artifactId>powermock-module-junit4</artifactId>
  135.             <version>1.7.4</version>
  136.             <scope>test</scope>
  137.         </dependency>
  138.     </dependencies>
  139.     <build>
  140.         <plugins>
  141.             <plugin>
  142.                 <groupId>org.springframework.boot</groupId>
  143.                 <artifactId>spring-boot-maven-plugin</artifactId>
  144.             </plugin>
  145.             <plugin>
  146.                 <groupId>org.apache.maven.plugins</groupId>
  147.                 <artifactId>maven-clean-plugin</artifactId>
  148.                 <version>3.0.0</version>
  149.             </plugin>
  150.             <plugin>
  151.                 <groupId>org.apache.maven.plugins</groupId>
  152.                 <artifactId>maven-compiler-plugin</artifactId>
  153.                 <version>3.7.0</version>
  154.             </plugin>
  155.             <plugin>
  156.                 <groupId>org.apache.maven.plugins</groupId>
  157.                 <artifactId>maven-release-plugin</artifactId>
  158.                 <version>2.5.3</version>
  159.             </plugin>
  160.             <plugin>
  161.                 <groupId>org.apache.maven.plugins</groupId>
  162.                 <artifactId>maven-war-plugin</artifactId>
  163.                 <version>3.2.1</version>
  164.                 <configuration>
  165.                     <failOnMissingWebXml>false</failOnMissingWebXml>
  166.                     <warSourceExcludes>static/node_modules/**</warSourceExcludes>
  167.                 </configuration>
  168.             </plugin>
  169.             <plugin>
  170.                 <groupId>org.apache.maven.plugins</groupId>
  171.                 <artifactId>maven-resources-plugin</artifactId>
  172.                 <version>3.0.2</version>
  173.             </plugin>
  174.             <plugin>
  175.                 <groupId>org.apache.maven.plugins</groupId>
  176.                 <artifactId>maven-surefire-plugin</artifactId>
  177.                 <version>2.20.1</version>
  178.             </plugin>
  179.             <plugin>
  180.                 <groupId>org.jacoco</groupId>
  181.                 <artifactId>jacoco-maven-plugin</artifactId>
  182.                 <version>0.7.9</version>
  183.                 <executions>
  184.                     <execution>
  185.                         <goals>
  186.                             <goal>prepare-agent</goal>
  187.                         </goals>
  188.                     </execution>
  189.                     <execution>
  190.                         <id>report</id>
  191.                         <phase>prepare-package</phase>
  192.                         <goals>
  193.                             <goal>report</goal>
  194.                         </goals>
  195.                     </execution>
  196.                 </executions>
  197.             </plugin>
  198.             <plugin>
  199.                 <groupId>com.soebes.maven.plugins</groupId>
  200.                 <artifactId>multienv-maven-plugin</artifactId>
  201.                 <version>0.3.1</version>
  202.                 <executions>
  203.                     <execution>
  204.                         <goals>
  205.                             <goal>configuration</goal>
  206.                         </goals>
  207.                     </execution>
  208.                 </executions>
  209.             </plugin>
  210.         </plugins>
  211.         <resources>
  212.             <resource>
  213.                 <directory>src/main/resources</directory>
  214.             </resource>
  215.         </resources>
  216.     </build>
  217.     <profiles>
  218.         <profile>
  219.             <id>local</id>
  220.             <build>
  221.                 <resources>
  222.                     <resource>
  223.                         <directory>src/main/environments/local</directory>
  224.                     </resource>
  225.                 </resources>
  226.             </build>
  227.         </profile>
  228.         <profile>
  229.             <id>dev</id>
  230.             <build>
  231.                 <pluginManagement>
  232.                     <plugins>
  233.                         <plugin>
  234.                             <groupId>org.sonarsource.scanner.maven</groupId>
  235.                             <artifactId>sonar-maven-plugin</artifactId>
  236.                             <version>3.4.0.905</version>
  237.                         </plugin>
  238.                     </plugins>
  239.                 </pluginManagement>
  240.             </build>
  241.         </profile>
  242.     </profiles>
Add Comment
Please, Sign In to add comment