Advertisement
Guest User

deployed-pom.xml

a guest
Dec 5th, 2020
972
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.70 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" 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.     <parent>
  5.         <artifactId>???</artifactId>
  6.         <groupId>###</groupId>
  7.         <version>0.0.0.1-SNAPSHOT</version>
  8.     </parent>
  9.  
  10.     <artifactId>###</artifactId>
  11.     <name>###</name>
  12.     <description>###</description>
  13.  
  14.     <packaging>jar</packaging>
  15.  
  16.     <dependencies>
  17.  
  18.         <!--    Spring     -->
  19.         <dependency>
  20.             <groupId>org.springframework.cloud</groupId>
  21.             <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  22.         </dependency>
  23.         <dependency>
  24.             <groupId>org.springframework.cloud</groupId>
  25.             <artifactId>spring-cloud-starter-kubernetes-config</artifactId>
  26.         </dependency>
  27.         <dependency>
  28.             <groupId>org.springframework.boot</groupId>
  29.             <artifactId>spring-boot-starter-web</artifactId>
  30.         </dependency>
  31.         <dependency>
  32.             <groupId>org.springframework.data</groupId>
  33.             <artifactId>spring-data-envers</artifactId>
  34.         </dependency>
  35.         <dependency>
  36.             <groupId>org.springframework.kafka</groupId>
  37.             <artifactId>spring-kafka</artifactId>
  38.         </dependency>
  39.  
  40.  
  41.         <!--    Database     -->
  42.         <dependency>
  43.             <groupId>org.postgresql</groupId>
  44.             <artifactId>postgresql</artifactId>
  45.         </dependency>
  46.         <dependency>
  47.             <groupId>org.springframework.boot</groupId>
  48.             <artifactId>spring-boot-starter-data-jpa</artifactId>
  49.         </dependency>
  50.         <dependency>
  51.             <groupId>org.liquibase</groupId>
  52.             <artifactId>liquibase-core</artifactId>
  53.         </dependency>
  54.  
  55.         <!--    Lombok     -->
  56.         <dependency>
  57.             <groupId>org.projectlombok</groupId>
  58.             <artifactId>lombok</artifactId>
  59.         </dependency>
  60.  
  61.         <!--    Orika mapper    -->
  62.         <dependency>
  63.             <groupId>net.rakugakibox.spring.boot</groupId>
  64.             <artifactId>orika-spring-boot-starter</artifactId>
  65.         </dependency>
  66.         <dependency>
  67.             <groupId>ma.glasnost.orika</groupId>
  68.             <artifactId>orika-core</artifactId>
  69.         </dependency>
  70.  
  71.         <!--    Tests    -->
  72.         <dependency>
  73.             <groupId>org.springframework.boot</groupId>
  74.             <artifactId>spring-boot-starter-test</artifactId>
  75.             <scope>test</scope>
  76.             <exclusions>
  77.                 <exclusion>
  78.                     <groupId>org.junit.vintage</groupId>
  79.                     <artifactId>junit-vintage-engine</artifactId>
  80.                 </exclusion>
  81.             </exclusions>
  82.         </dependency>
  83.         <dependency>
  84.             <groupId>org.springframework.security</groupId>
  85.             <artifactId>spring-security-test</artifactId>
  86.             <scope>test</scope>
  87.         </dependency>
  88.         <dependency>
  89.             <groupId>org.springframework.kafka</groupId>
  90.             <artifactId>spring-kafka-test</artifactId>
  91.             <scope>test</scope>
  92.         </dependency>
  93.         <dependency>
  94.             <groupId>com.h2database</groupId>
  95.             <artifactId>h2</artifactId>
  96.             <scope>test</scope>
  97.         </dependency>
  98.     </dependencies>
  99.  
  100.     <build>
  101.         <!-- see spring-boot-starter.pom -->
  102.         <resources>
  103.             <resource>
  104.                 <filtering>true</filtering>
  105.                 <directory>${basedir}/src/main/resources</directory>
  106.                 <includes>
  107.                     <include>**/application*.yml</include>
  108.                     <include>**/application*.yaml</include>
  109.                     <include>**/application*.properties</include>
  110.                 </includes>
  111.             </resource>
  112.             <resource>
  113.                 <directory>${basedir}/src/main/resources</directory>
  114.                 <excludes>
  115.                     <exclude>**/application*.yml</exclude>
  116.                     <exclude>**/application*.yaml</exclude>
  117.                     <exclude>**/application*.properties</exclude>
  118.                 </excludes>
  119.             </resource>
  120.         </resources>
  121.         <plugins>
  122.             <plugin>
  123.                 <groupId>org.apache.maven.plugins</groupId>
  124.                 <artifactId>maven-resources-plugin</artifactId>
  125.                 <configuration>
  126.                     <delimiters>
  127.                         <delimiter>^</delimiter>
  128.                     </delimiters>
  129.                 </configuration>
  130.             </plugin>
  131.         </plugins>
  132.     </build>
  133. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement