forked from ps3mediaserver/ps3mediaserver
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
251 lines (215 loc) · 9.09 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
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
<?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/maven-v4_0_0.xsd">
<!--
PMS consists of two major parts: PMS itself and the third party software
needed to run it. While PMS itself is 100% pure Java, some of the third party
software is not. This means building a platform specific distribution boils
down to first building the pms.jar and then assembling all application resources.
Note that Maven 3 does not automatically install all dependencies, unlike Maven 2.
To install all dependencies to your local repository, run the following commands:
mvn com.savage7.maven.plugins:maven-external-dependency-plugin:resolve-external
mvn com.savage7.maven.plugins:maven-external-dependency-plugin:install-external
To build PMS, do:
mvn clean package
After building, the "target" directory will contain the binary.
To generate a full source code report, do:
mvn site
After generating, the "target/site" directory will contain the reports.
-->
<modelVersion>4.0.0</modelVersion>
<groupId>github.aaakk.us.kg.taconaut</groupId>
<artifactId>pms</artifactId>
<version>1.90.2-mlx-1.1.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>PMS</name>
<url>http://www.ps3mediaserver.org/</url>
<inceptionYear>2008</inceptionYear>
<!-- this is not required, but is recommended for plugin version checks -->
<prerequisites>
<maven>2.2.1</maven>
</prerequisites>
<organization>
<name>PS3 Media Server MLX</name>
<url>http://www.ps3mediaserver.org/</url>
</organization>
<licenses>
<license>
<name>GNU General Public License version 2</name>
<url>http://www.gnu.org/licenses/gpl-2.0.txt</url>
<distribution>manual</distribution>
</license>
</licenses>
<description>
PS3 Media Server is a cross-platform DLNA-compliant UPnP Media Server.
Originally written to support the PlayStation 3, PS3 Media Server has been
expanded to support a range of other media renderers, including smartphones,
televisions, music players and more.
</description>
<scm>
<connection>scm:git:[email protected]:taconaut/pms-mlx.git</connection>
<developerConnection>scm:git:[email protected]:taconaut/pms-mlx.git</developerConnection>
<tag>master</tag>
<url>[email protected]:taconaut/pms-mlx.git</url>
</scm>
<issueManagement>
<system>Github</system>
<url>https://github.com/taconaut/pms-mlx/issues</url>
</issueManagement>
<ciManagement>
<system>Jenkins</system>
<url>http://ps3mediaserver-ci.hopto.org:9999/job/pms-mlx%20trunk</url>
</ciManagement>
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<modules>
<module>core</module>
<module>plugins</module>
<module>packaging</module>
</modules>
<developers>
<developer>
<name>shagrath</name>
</developer>
<developer>
<name>tcox</name>
</developer>
<developer>
<name>SubJunk</name>
</developer>
<developer>
<name>taconaut</name>
</developer>
<developer>
<name>tomeko</name>
</developer>
<developer>
<name>chocolateboy</name>
</developer>
<developer>
<name>ditlew</name>
</developer>
<developer>
<name>Raptor399</name>
</developer>
<developer>
<name>renszarv</name>
</developer>
<developer>
<name>happy.neko</name>
</developer>
<developer>
<name>lightglitch</name>
</developer>
</developers>
<pluginRepositories>
<pluginRepository>
<id>central</id>
<name>Maven Plugin Repository</name>
<url>http://repo1.maven.org/maven2</url>
<layout>default</layout>
<snapshots>
<enabled>false</enabled>
</snapshots>
<releases>
<updatePolicy>never</updatePolicy>
</releases>
</pluginRepository>
<pluginRepository>
<id>ossrh</id>
<name>Sonatype OSS Repository</name>
<url>http://oss.sonatype.org/content/groups/public</url>
<layout>default</layout>
</pluginRepository>
</pluginRepositories>
<properties>
<!-- The target JDK to use for build -->
<targetJdk>1.6</targetJdk>
<!-- Version numbers for libraries shared by multiple modules -->
<jgoodies-common-version>1.4.0</jgoodies-common-version>
<jgoodies-forms-version>1.6.0</jgoodies-forms-version>
<jgoodies-looks-version>2.5.2</jgoodies-looks-version>
<jgoodies-binding-version>2.0.6</jgoodies-binding-version>
<xmlwise-version>1.2.11</xmlwise-version>
<!-- Version numbers for plugins shared by multiple modules -->
<maven-external-dependency-plugin-version>0.5</maven-external-dependency-plugin-version>
<maven-antrun-plugin-version>1.7</maven-antrun-plugin-version>
<maven-compiler-plugin-version>3.1</maven-compiler-plugin-version>
<maven-surefire-plugin-version>2.16</maven-surefire-plugin-version>
<maven-eclipse-plugin-version>2.9</maven-eclipse-plugin-version>
<maven-idea-plugin-version>2.2.1</maven-idea-plugin-version>
<maven-site-plugin-version>3.3</maven-site-plugin-version>
<maven-project-info-reports-plugin-version>2.7</maven-project-info-reports-plugin-version>
<maven-javadoc-plugin-version>2.9.1</maven-javadoc-plugin-version>
<maven-pmd-plugin-version>3.0.1</maven-pmd-plugin-version>
<maven-dependency-plugin-version>2.8</maven-dependency-plugin-version>
<maven-assembly-plugin-version>2.4</maven-assembly-plugin-version>
<doxia-module-docbook-simple-version>1.4</doxia-module-docbook-simple-version>
<git-commit-id-plugin-version>2.1.5</git-commit-id-plugin-version>
<apiviz-version>1.3.2.GA</apiviz-version>
<exec-maven-plugin-version>1.2.1</exec-maven-plugin-version>
<jdepend-maven-plugin-version>2.0-beta-2</jdepend-maven-plugin-version>
<findbugs-maven-plugin-version>2.5.2</findbugs-maven-plugin-version>
<cobertura-maven-plugin-version>2.6</cobertura-maven-plugin-version>
<l10n-maven-plugin-version>1.0-alpha-2</l10n-maven-plugin-version>
<!-- Transcode tools are being used by core (when debugging) and for packaging -->
<transcode-tools.download.url>http://downloads.sourceforge.net/project/pms-mlx/transcode-tools</transcode-tools.download.url>
<transcode-tools.linux.filename>transcode-tools-linux-20131127.tar.gz</transcode-tools.linux.filename>
<transcode-tools.macosx.filename>transcode-tools-osx-20131126.tar.gz</transcode-tools.macosx.filename>
<transcode-tools.windows.x86.filename>transcode-tools-win32-20131126.tar.gz</transcode-tools.windows.x86.filename>
</properties>
<build>
<plugins>
<!-- This plugin will take care of installing the external dependencies
that do not exist in a public Maven repository. That is why we store some
jar files in the "src/main/external-resources/lib" directory and have this
plugin take care of the installation at build time.
Note: The plugin does not work automatically in Maven 3 if included in the project
requiering the liraries (see http://code.google.com/p/maven-external-dependency-plugin/issues/detail?id=8#c3
for details).
To install the required dependencies manually, execute the following commands:
mvn com.savage7.maven.plugins:maven-external-dependency-plugin:resolve-external
mvn com.savage7.maven.plugins:maven-external-dependency-plugin:install-external
Checksums can be calculated with "openssl sha1 [filename]".
See: http://code.google.com/p/maven-external-dependency-plugin/issues/detail?id=8#c4 -->
<plugin>
<groupId>com.savage7.maven.plugins</groupId>
<artifactId>maven-external-dependency-plugin</artifactId>
<version>${maven-external-dependency-plugin-version}</version>
<inherited>false</inherited>
<configuration>
<stagingDirectory>${project.build.directory}/dependencies/</stagingDirectory>
<createChecksum>true</createChecksum>
<skipChecksumVerification>false</skipChecksumVerification>
<force>false</force>
<artifactItems>
<!-- Add artifact items common to multiple modules here -->
</artifactItems>
</configuration>
<executions>
<execution>
<id>clean-external-dependencies</id>
<phase>clean</phase>
<goals>
<!-- mvn com.savage7.maven.plugins:maven-external-dependency-plugin:clean-external -->
<goal>clean-external</goal>
</goals>
</execution>
<execution>
<id>resolve-install-external-dependencies</id>
<!-- Not bound to a phase, you need to execute these manually. See above -->
<phase>process-resources</phase>
<goals>
<!-- mvn com.savage7.maven.plugins:maven-external-dependency-plugin:resolve-external -->
<goal>resolve-external</goal>
<!-- mvn com.savage7.maven.plugins:maven-external-dependency-plugin:install-external -->
<goal>install-external</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>