This repository has been archived by the owner on Oct 2, 2019. It is now read-only.
forked from iheartradio/open-m3u8
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpom.xml
123 lines (107 loc) · 4.19 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
<!--
~ Levels Beyond CONFIDENTIAL
~
~ Copyright 2003 - 2018 Levels Beyond Incorporated
~ All Rights Reserved.
~
~ NOTICE: All information contained herein is, and remains
~ the property of Levels Beyond Incorporated and its suppliers,
~ if any. The intellectual and technical concepts contained
~ herein are proprietary to Levels Beyond Incorporated
~ and its suppliers and may be covered by U.S. and Foreign Patents,
~ patents in process, and are protected by trade secret or copyright law.
~ Dissemination of this information or reproduction of this material
~ is unlawful and strictly forbidden unless prior written permission is obtained
~ from Levels Beyond Incorporated.
-->
<project xsi:schemaLocation='http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd' xmlns='http://maven.apache.org/POM/4.0.0'
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
<modelVersion>4.0.0</modelVersion>
<groupId>com.levelsbeyond</groupId>
<artifactId>open-m3u8</artifactId>
<version>0.3.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>open-m3u8</name>
<url>http://www.levelsbeyond.com/</url>
<properties>
<!-- test configuration -->
<failIfNoTests>false</failIfNoTests>
<!-- maven-compiler-plugin -->
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.7</maven.compiler.source>
<maven.compiler.target>1.7</maven.compiler.target>
<installAtEnd>false</installAtEnd>
<deployAtEnd>false</deployAtEnd>
<pushChanges>true</pushChanges>
<!-- versions -->
<slf4j.version>1.7.5</slf4j.version>
<junit.version>4.11</junit.version>
<log4j.version>1.2.17</log4j.version>
</properties>
<scm>
<connection>scm:git:[email protected]:levelsbeyond/open-m3u8.git</connection>
<developerConnection>scm:git:[email protected]:levelsbeyond/open-m3u8.git</developerConnection>
<url>https://github.com/levelsbeyond/open-m3u8</url>
</scm>
<repositories>
<repository>
<id>LB-repository</id>
<url>https://levelsbeyond.artifactoryonline.com/levelsbeyond/repo/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>LB-repository</id>
<url>https://levelsbeyond.artifactoryonline.com/levelsbeyond/repo/</url>
</pluginRepository>
</pluginRepositories>
<build>
<plugins>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<executions>
<execution>
<!-- warn about unused dependencies -->
<goals>
<goal>analyze-only</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-enforcer-plugin</artifactId>
<executions>
<execution>
<!-- fails the build if there are conflicting dependency versions -->
<configuration>
<rules>
<requireUpperBoundDeps/>
</rules>
</configuration>
<goals>
<goal>enforce</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>${log4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>