Advertisement
Guest User

Untitled

a guest
May 10th, 2018
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 4.00 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.   <modelVersion>4.0.0</modelVersion>
  6.  
  7.   <groupId>com.kgregorczyk.store_example</groupId>
  8.   <artifactId>product</artifactId>
  9.   <version>0.0.2</version>
  10.   <packaging>jar</packaging>
  11.  
  12.   <name>product</name>
  13.   <description>Product service</description>
  14.  
  15.   <parent>
  16.     <groupId>org.springframework.boot</groupId>
  17.     <artifactId>spring-boot-starter-parent</artifactId>
  18.     <version>2.0.1.RELEASE</version>
  19.     <relativePath/> <!-- lookup parent from repository -->
  20.   </parent>
  21.  
  22.   <repositories>
  23.     <repository>
  24.       <id>bintray-kptfh-feign-reactive</id>
  25.       <name>bintray</name>
  26.       <url>https://dl.bintray.com/kptfh/feign-reactive</url>
  27.     </repository>
  28.   </repositories>
  29.  
  30.   <properties>
  31.     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  32.     <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  33.     <java.version>1.8</java.version>
  34.     <maven.compiler.target>1.8</maven.compiler.target>
  35.     <maven.compiler.source>1.8</maven.compiler.source>
  36.   </properties>
  37.  
  38.   <dependencies>
  39.     <dependency>
  40.       <groupId>org.springframework.boot</groupId>
  41.       <artifactId>spring-boot-starter-actuator</artifactId>
  42.     </dependency>
  43.     <dependency>
  44.       <groupId>org.springframework.boot</groupId>
  45.       <artifactId>spring-boot-configuration-processor</artifactId>
  46.       <optional>true</optional>
  47.     </dependency>
  48.     <dependency>
  49.       <groupId>org.springframework.boot</groupId>
  50.       <artifactId>spring-boot-starter-data-mongodb-reactive</artifactId>
  51.     </dependency>
  52.     <dependency>
  53.       <groupId>org.springframework.boot</groupId>
  54.       <artifactId>spring-boot-starter-webflux</artifactId>
  55.     </dependency>
  56.  
  57.     <dependency>
  58.       <groupId>io.github.reactivefeign</groupId>
  59.       <artifactId>feign-reactive-core</artifactId>
  60.       <version>0.6.0</version>
  61.     </dependency>
  62.     <dependency>
  63.       <groupId>io.github.reactivefeign</groupId>
  64.       <artifactId>feign-reactive-cloud</artifactId>
  65.       <version>0.6.0</version>
  66.     </dependency>
  67.  
  68.     <dependency>
  69.       <groupId>org.springframework.boot</groupId>
  70.       <artifactId>spring-boot-devtools</artifactId>
  71.       <scope>runtime</scope>
  72.     </dependency>
  73.     <dependency>
  74.       <groupId>org.projectlombok</groupId>
  75.       <artifactId>lombok</artifactId>
  76.       <optional>true</optional>
  77.     </dependency>s
  78.     <dependency>
  79.       <groupId>org.springframework.boot</groupId>
  80.       <artifactId>spring-boot-starter-test</artifactId>
  81.       <scope>test</scope>
  82.     </dependency>
  83.     <dependency>
  84.       <groupId>io.projectreactor</groupId>
  85.       <artifactId>reactor-test</artifactId>
  86.       <scope>test</scope>
  87.     </dependency>
  88.   </dependencies>
  89.  
  90.   <build>
  91.     <plugins>
  92.       <plugin>
  93.         <groupId>org.springframework.boot</groupId>
  94.         <artifactId>spring-boot-maven-plugin</artifactId>
  95.       </plugin>
  96.  
  97.       <plugin>
  98.         <groupId>com.spotify</groupId>
  99.         <artifactId>dockerfile-maven-plugin</artifactId>
  100.         <version>1.4.0</version>
  101.         <executions>
  102.           <execution>
  103.             <id>default</id>
  104.             <goals>
  105.               <goal>build</goal>
  106.               <goal>push</goal>
  107.             </goals>
  108.           </execution>
  109.         </executions>
  110.         <configuration>
  111.           <repository>uniqe15/product-service</repository>
  112.           <tag>${project.version}</tag>
  113.           <buildArgs>
  114.             <JAR_FILE>${project.build.finalName}.jar</JAR_FILE>
  115.           </buildArgs>
  116.         </configuration>
  117.         <dependencies>
  118.           <dependency>
  119.             <groupId>org.codehaus.plexus</groupId>
  120.             <artifactId>plexus-archiver</artifactId>
  121.             <version>3.4</version>
  122.           </dependency>
  123.         </dependencies>
  124.       </plugin>
  125.  
  126.  
  127.     </plugins>
  128.   </build>
  129.  
  130.  
  131. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement