forked from BH-NOTHING/UE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpom.xml
137 lines (126 loc) · 4.54 KB
/
pom.xml
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
<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">
<modelVersion>4.0.0</modelVersion>
<artifactId>template_editor</artifactId>
<groupId>com.tt.pwp</groupId>
<packaging>jar</packaging>
<parent>
<artifactId>template</artifactId>
<groupId>com.tt.pwp</groupId>
<version>2.1.0.20180409.17-SNAPSHOT</version>
</parent>
<name>template_editor</name>
<dependencies>
<dependency>
<groupId>javax.media</groupId>
<artifactId>jai-core</artifactId>
<version>1.1.3</version>
<!-- <classifier></classifier>
<systemPath></systemPath>
<scope></scope> 依赖范围
<type></type> 依赖的类型
<optional></optional> 标记依赖是否可选
<exclusions></exclusions> 排除传递依赖-->
</dependency>
<dependency>
<groupId>com.sun.media</groupId>
<artifactId>jai-codec</artifactId>
<version>1.1.3</version>
</dependency>
<dependency>
<groupId>com.swetake.QRCode</groupId>
<artifactId>QRCode</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>com.tt.pwp</groupId>
<artifactId>pwp-config</artifactId>
<version>${pwp.version}</version>
</dependency>
<dependency>
<groupId>com.tt.pwp</groupId>
<artifactId>pwp-sysmgr</artifactId>
<version>${pwp.version}</version>
</dependency>
<dependency>
<groupId>com.tt.pwp</groupId>
<artifactId>pwp-rules</artifactId>
<version>${pwp.version}</version>
</dependency>
<dependency>
<groupId>com.tt.pwp</groupId>
<artifactId>pwp-security</artifactId>
<version>${pwp.version}</version>
</dependency>
<!-- FastDFS -->
<dependency>
<groupId>org.csource</groupId>
<artifactId>fastdfs-client-java</artifactId>
<version>1.26-SNAPSHOT</version>
<exclusions>
<exclusion>
<artifactId>slf4j-api</artifactId>
<groupId>org.slf4j</groupId>
</exclusion>
<exclusion>
<artifactId>log4j</artifactId>
<groupId>log4j</groupId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</exclusion>
<exclusion>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
</exclusion>
<exclusion>
<groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<id>nexus-deploy</id>
<name>Public Repositories</name>
<!--<url>http://10.10.10.6:18888/nexus/content/repositories/pwp</url>-->
<url>http://121.33.250.164:18888/nexus/content/repositories/pwp</url>
</repository>
<snapshotRepository>
<id>nexus-snapshots</id>
<name>Snapshots Repositories</name>
<!--<url>http://10.10.10.6:18888/nexus/content/repositories/Snapshots</url>-->
<url>http://121.33.250.164:18888/nexus/content/repositories/Snapshots</url>
</snapshotRepository>
</distributionManagement>
<!--添加jboss仓库,解决jai-core包下载不了的问题-->
<repositories>
<repository>
<id>jboss</id>
<name>jboss</name>
<url>https://repository.jboss.org</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<excludes>
<exclude>**/*.md</exclude>
</excludes>
</resource>
</resources>
</build>
</project>