Blame view

fw-morax-common/pom.xml 1.87 KB
d94b5225   张志伟   :tada:
1
2
3
4
5
6
7
  <?xml version="1.0" encoding="UTF-8"?>
  <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">
      <parent>
          <artifactId>fw-morax</artifactId>
          <groupId>cn.fw</groupId>
08ef9699   张志伟   feature(*): 重新处理上...
8
          <version>2.0.0</version>
d94b5225   张志伟   :tada:
9
10
11
12
13
14
15
16
          <relativePath>../pom.xml</relativePath>
      </parent>
      <modelVersion>4.0.0</modelVersion>
  
      <artifactId>fw-morax-common</artifactId>
      <packaging>jar</packaging>
      <name>fw-morax-common</name>
  
a94d3715   张志伟   :rocket:
17
18
19
20
21
      <dependencies>
          <dependency>
              <groupId>com.alibaba</groupId>
              <artifactId>fastjson</artifactId>
          </dependency>
5f1f00ab   姜超   [jiangchao] 修改报错
22
          <dependency>
6eb4edeb   姜超   [jiangchao] 分页查询修改
23
24
              <groupId>cn.fw</groupId>
              <artifactId>fw-data-base</artifactId>
5f1f00ab   姜超   [jiangchao] 修改报错
25
26
27
          </dependency>
          <dependency>
              <groupId>cn.fw</groupId>
6eb4edeb   姜超   [jiangchao] 分页查询修改
28
              <artifactId>fw-common-data</artifactId>
5f1f00ab   姜超   [jiangchao] 修改报错
29
          </dependency>
b0f4e55e   姜超   [jiangchao] 绩效组保存审批
30
31
32
33
          <dependency>
              <groupId>org.springframework.boot</groupId>
              <artifactId>spring-boot</artifactId>
          </dependency>
7b6ab90b   姜超   feature(*): 绩效保存修...
34
35
36
37
          <dependency>
              <groupId>com.google.guava</groupId>
              <artifactId>guava</artifactId>
          </dependency>
ed509f38   姜超   feature(*): 格式化excel
38
39
40
41
42
43
44
45
          <dependency>
              <groupId>cn.hutool</groupId>
              <artifactId>hutool-all</artifactId>
          </dependency>
          <dependency>
              <groupId>org.apache.poi</groupId>
              <artifactId>poi-ooxml</artifactId>
          </dependency>
a94d3715   张志伟   :rocket:
46
47
      </dependencies>
  
d94b5225   张志伟   :tada:
48
49
50
51
52
53
54
55
56
57
58
      <build>
          <plugins>
              <plugin>
                  <groupId>org.apache.maven.plugins</groupId>
                  <artifactId>maven-deploy-plugin</artifactId>
                  <configuration>
                      <skip>true</skip>
                  </configuration>
              </plugin>
          </plugins>
      </build>
d94b5225   张志伟   :tada:
59
60
  
  </project>