forked from fireandfuel/CodecJLayerMP3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpom.xml
145 lines (131 loc) · 3.94 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
<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>
<!-- Project information -->
<name>CodecJLayerMP3</name>
<groupId>org.spoutcraft</groupId>
<artifactId>codecjlayermp3</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<inceptionYear>2012</inceptionYear>
<url>https://github.com/Legacy/CodecJLayerMP3</url>
<description>MP3 codec library for Paulscode's 3D Sound System.</description>
<!-- Parent information -->
<parent>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>
<!-- Build properties -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<buildNumber>0</buildNumber>
<ciSystem>unknown</ciSystem>
<commit>unknown</commit>
</properties>
<!-- License information -->
<licenses>
<license>
<name>GNU Lesser General Public License Version 3</name>
<url>http://gnu.org/licenses/lgpl.html</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- Organization information -->
<organization>
<name>Spout LLC</name>
<url>https://spout.org</url>
</organization>
<!-- Project developers -->
<developers>
<developer>
<id>Wulfspider</id>
<name>Luke Spragg</name>
<email>the@wulf.im</email>
</developer>
</developers>
<!-- Source code access -->
<scm>
<connection>scm:git:git://github.com/Spoutcraft/CodecJLayerMP3.git</connection>
<developerConnection>scm:git:git@github.com:Spoutcraft/CodecJLayerMP3.git</developerConnection>
<url>https://github.com/Spoutcraft/CodecJLayerMP3</url>
</scm>
<!-- Continuous integration -->
<ciManagement>
<system>travis</system>
<url>https://travis-ci.org/Spoutcraft/CodecJLayerMP3</url>
</ciManagement>
<!-- Issue management -->
<issueManagement>
<system>forums</system>
<url>http://spoutcraft.org/forums/</url>
</issueManagement>
<!-- Dependency repositories -->
<repositories>
<repository>
<id>sonatype-nexus-releases</id>
<url>https://oss.sonatype.org/content/repositories/releases</url>
</repository>
<repository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>
<!-- Build plugin repositories -->
<pluginRepositories>
<pluginRepository>
<id>sonatype-nexus-releases</id>
<url>https://oss.sonatype.org/content/repositories/releases</url>
</pluginRepository>
<pluginRepository>
<id>sonatype-nexus-snapshots</id>
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</pluginRepository>
</pluginRepositories>
<!-- Project dependencies -->
<dependencies>
<!-- Include in final JAR -->
<dependency>
<groupId>org.lwjgl.lwjgl</groupId>
<artifactId>lwjgl</artifactId>
<version>2.9.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.spoutcraft</groupId>
<artifactId>soundsystem</artifactId>
<version>1.0.0-SNAPSHOT</version>
<scope>compile</scope>
</dependency>
</dependencies>
<!-- Build configuration -->
<build>
<defaultGoal>clean install</defaultGoal>
<!-- Build plugins -->
<plugins>
<!-- Source compiler plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<compilerArguments>
<O>-Xlint:all</O>
<O>-Xlint:-path</O>
</compilerArguments>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
</plugins>
</build>
</project>