Blame view

fw-valhalla-sdk/pom.xml 2.42 KB
3f17473a   张志伟   init
1
2
3
4
5
6
7
8
9
10
11
12
  <?xml version="1.0" encoding="UTF-8"?>
  <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
           xmlns="http://maven.apache.org/POM/4.0.0"
           xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
      <modelVersion>4.0.0</modelVersion>
      <parent>
          <groupId>cn.fw</groupId>
          <artifactId>fw-valhalla</artifactId>
          <version>1.0.0</version>
          <relativePath>../pom.xml</relativePath>
      </parent>
      <artifactId>fw-valhalla-sdk</artifactId>
9c86aa21   张志伟   feature(*): 线索到期后...
13
      <version>1.2.8</version>
3f17473a   张志伟   init
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
      <packaging>jar</packaging>
      <name>fw-valhalla-sdk</name>
  
      <dependencies>
          <dependency>
              <groupId>org.springframework.cloud</groupId>
              <artifactId>spring-cloud-openfeign-core</artifactId>
              <optional>true</optional>
          </dependency>
          <dependency>
              <groupId>javax.validation</groupId>
              <artifactId>validation-api</artifactId>
              <optional>true</optional>
          </dependency>
          <dependency>
              <groupId>cn.fw</groupId>
              <artifactId>fw-data-base</artifactId>
              <optional>true</optional>
          </dependency>
          <dependency>
              <groupId>org.hibernate</groupId>
              <artifactId>hibernate-validator</artifactId>
              <version>5.3.6.Final</version>
              <scope>provided</scope>
          </dependency>
81778297   张志伟   :art:
39
          <dependency>
b245c23a   张志伟   feature(*): 续保跟进调整
40
41
42
              <groupId>com.baomidou</groupId>
              <artifactId>mybatis-plus-extension</artifactId>
              <scope>provided</scope>
81778297   张志伟   :art:
43
          </dependency>
3f17473a   张志伟   init
44
45
46
47
48
49
      </dependencies>
  
      <build>
          <plugins>
              <plugin>
                  <groupId>org.apache.maven.plugins</groupId>
95df3085   张志伟   :sparkles:
50
51
52
53
54
55
56
                  <artifactId>maven-deploy-plugin</artifactId>
                  <configuration>
                      <skip>false</skip>
                  </configuration>
              </plugin>
              <plugin>
                  <groupId>org.apache.maven.plugins</groupId>
3f17473a   张志伟   init
57
58
59
60
61
62
63
64
65
66
67
68
69
70
                  <artifactId>maven-source-plugin</artifactId>
                  <version>${maven-source-plugin.version}</version>
                  <executions>
                      <execution>
                          <id>attach-sources</id>
                          <goals>
                              <goal>jar</goal>
                          </goals>
                      </execution>
                  </executions>
              </plugin>
          </plugins>
      </build>
  </project>