Blame view

fw-rp-man/pom.xml 5.6 KB
0b3d3960   suchu   First commit
1
2
3
4
5
6
7
8
9
10
11
12
13
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
  <?xml version="1.0" encoding="UTF-8"?>
  <project 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"
           xmlns="http://maven.apache.org/POM/4.0.0">
      <modelVersion>4.0.0</modelVersion>
      <parent>
          <groupId>cn.fw</groupId>
          <artifactId>fw-rp</artifactId>
          <version>1.0</version>
      </parent>
  
      <artifactId>fw-rp-man</artifactId>
      <packaging>jar</packaging>
      <name>fw-rp-man</name>
  
      <dependencies>
          <dependency>
              <groupId>org.springframework.boot</groupId>
              <artifactId>spring-boot-devtools</artifactId>
          </dependency>
          <dependency>
              <groupId>org.springframework.boot</groupId>
              <artifactId>spring-boot-starter-web</artifactId>
          </dependency>
          <dependency>
              <groupId>org.mybatis.spring.boot</groupId>
              <artifactId>mybatis-spring-boot-starter</artifactId>
          </dependency>
          <dependency>
              <groupId>org.springframework.boot</groupId>
              <artifactId>spring-boot-starter-validation</artifactId>
          </dependency>
          <dependency>
              <groupId>org.springframework.boot</groupId>
              <artifactId>spring-boot-starter-actuator</artifactId>
          </dependency>
          <dependency>
              <groupId>com.alibaba</groupId>
              <artifactId>druid-spring-boot-starter</artifactId>
              <version>1.1.7</version>
          </dependency>
          <!--单元测试-->
          <dependency>
              <groupId>junit</groupId>
              <artifactId>junit</artifactId>
              <scope>compile</scope>
          </dependency>
          <dependency>
              <groupId>org.springframework</groupId>
              <artifactId>spring-test</artifactId>
          </dependency>
          <dependency>
              <groupId>org.springframework.boot</groupId>
              <artifactId>spring-boot-starter-test</artifactId>
              <scope>test</scope>
          </dependency>
  
  
          <dependency>
              <groupId>cn.fw</groupId>
              <artifactId>fw-rp-common</artifactId>
              <version>${project.parent.version}</version>
          </dependency>
          <dependency>
              <groupId>cn.fw</groupId>
              <artifactId>fw-rp-domain</artifactId>
              <version>${project.parent.version}</version>
          </dependency>
          <dependency>
              <groupId>cn.fw</groupId>
              <artifactId>fw-rp-service</artifactId>
              <version>${project.parent.version}</version>
          </dependency>
          <dependency>
              <groupId>cn.fw</groupId>
              <artifactId>fw-base-config-sdk</artifactId>
          </dependency>
          <dependency>
              <groupId>cn.fw</groupId>
              <artifactId>fw-data-base</artifactId>
          </dependency>
          <dependency>
              <groupId>cn.fw</groupId>
              <artifactId>fw-personnel-sdk</artifactId>
          </dependency>
          <dependency>
              <groupId>cn.fw</groupId>
              <artifactId>fw-potential-sdk</artifactId>
          </dependency>
          <dependency>
              <groupId>cn.fw.third</groupId>
              <artifactId>fw-wechat-sdk</artifactId>
          </dependency>
          <dependency>
              <groupId>mysql</groupId>
              <artifactId>mysql-connector-java</artifactId>
          </dependency>
          <dependency>
              <groupId>cn.fw</groupId>
              <artifactId>fw-auth-client</artifactId>
          </dependency>
          <dependency>
              <groupId>cn.fw</groupId>
              <artifactId>fw-rp-sdk</artifactId>
              <version>${project.parent.version}</version>
          </dependency>
          <dependency>
              <groupId>org.apache.commons</groupId>
              <artifactId>commons-lang3</artifactId>
          </dependency>
          <dependency>
              <groupId>org.springframework.cloud</groupId>
              <artifactId>spring-cloud-starter-eureka</artifactId>
          </dependency>
          <dependency>
              <groupId>net.coobird</groupId>
              <artifactId>thumbnailator</artifactId>
              <version>0.4.8</version>
          </dependency>
      </dependencies>
  
      <build>
          <finalName>fw-rp-man</finalName>
          <resources>
              <resource>
                  <directory>src/main/resources</directory>
                  <filtering>true</filtering>
              </resource>
          </resources>
          <plugins>
              <plugin>
                  <groupId>org.springframework.boot</groupId>
                  <artifactId>spring-boot-maven-plugin</artifactId>
                  <configuration>
                      <fork>true</fork>
                      <executable>true</executable>
                  </configuration>
              </plugin>
          </plugins>
      </build>
  
      <profiles>
          <profile>
              <id>dev</id>
              <properties>
                  <activatedProperties>dev</activatedProperties>
              </properties>
              <activation>
                  <activeByDefault>true</activeByDefault>
              </activation>
          </profile>
          <profile>
              <id>test</id>
              <properties>
                  <activatedProperties>test</activatedProperties>
              </properties>
          </profile>
          <profile>
              <id>local</id>
              <properties>
                  <activatedProperties>local</activatedProperties>
              </properties>
          </profile>
          <profile>
              <id>prd</id>
              <properties>
                  <activatedProperties>prd</activatedProperties>
              </properties>
          </profile>
      </profiles>
  </project>