File tree Expand file tree Collapse file tree 1 file changed +22
-15
lines changed Expand file tree Collapse file tree 1 file changed +22
-15
lines changed Original file line number Diff line number Diff line change 32
32
<maven .compiler.target>1.8</maven .compiler.target>
33
33
<maven .compiler.source>1.8</maven .compiler.source>
34
34
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
35
+ <libs >${project.build.directory}/lib</libs >
35
36
</properties >
36
37
37
38
<dependencies >
58
59
</repository >
59
60
</distributionManagement >
60
61
<build >
62
+ <pluginManagement >
63
+ <plugins >
64
+ <plugin >
65
+ <groupId >org.apache.maven.plugins</groupId >
66
+ <artifactId >maven-dependency-plugin</artifactId >
67
+ <version >2.8</version >
68
+ <configuration >
69
+ <outputDirectory >${libs} </outputDirectory >
70
+ </configuration >
71
+ <executions >
72
+ <execution >
73
+ <id >copy-dependencies</id >
74
+ <phase >package</phase >
75
+ <goals >
76
+ <goal >copy-dependencies</goal >
77
+ </goals >
78
+ </execution >
79
+ </executions >
80
+ </plugin >
81
+ </plugins >
82
+ </pluginManagement >
61
83
<plugins >
62
84
<plugin >
63
85
<groupId >org.sonatype.plugins</groupId >
114
136
<plugin >
115
137
<groupId >org.apache.maven.plugins</groupId >
116
138
<artifactId >maven-dependency-plugin</artifactId >
117
- <version >2.8</version >
118
- <executions >
119
- <execution >
120
- <id >copy-dependencies</id >
121
- <phase >prepare-package</phase >
122
- <goals >
123
- <goal >copy-dependencies</goal >
124
- </goals >
125
- <configuration >
126
- <outputDirectory >
127
- ${project.build.directory} /lib
128
- </outputDirectory >
129
- </configuration >
130
- </execution >
131
- </executions >
132
139
</plugin >
133
140
<plugin >
134
141
<groupId >org.apache.maven.plugins</groupId >
You can’t perform that action at this time.
0 commit comments