|
1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
2 | | -<!--suppress ALL --> |
3 | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
4 | 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
5 | 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | + |
6 | 6 | <groupId>unomodding.bukkit</groupId> |
7 | 7 | <artifactId>playtimelimiter</artifactId> |
| 8 | + |
8 | 9 | <name>PlayTimeLimiter</name> |
9 | | - <version>0.25</version> |
10 | | - <packaging>jar</packaging> |
11 | | - <url>https://github.com/UnoModding/PlayTimeLimiter</url> |
| 10 | + <description>PlayTimeLimiter is a Bukkit plugin to allow server owners to limit the amount of time their players spend on a server.</description> |
| 11 | + <url>https://github.com/UnoModding/Bukkit-PlayTimeLimiter</url> |
| 12 | + <version>0.3-dev</version> |
12 | 13 | <inceptionYear>2014</inceptionYear> |
13 | | - <description>PlayTimeLimiter is a Bukkit plugin for Minecraft servers to only allow players to limit the amount of time players spend on your server.</description> |
| 14 | + <packaging>jar</packaging> |
| 15 | + |
| 16 | + <properties> |
| 17 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 18 | + <main.class>${project.groupId}.${project.artifactId}.${project.name}</main.class> |
| 19 | + </properties> |
| 20 | + |
| 21 | + <organization> |
| 22 | + <name>UnoModding</name> |
| 23 | + <url>https://github.com/UnoModding</url> |
| 24 | + </organization> |
14 | 25 |
|
15 | 26 | <repositories> |
16 | 27 | <repository> |
|
58 | 69 | <artifactId>maven-compiler-plugin</artifactId> |
59 | 70 | <version>3.0</version> |
60 | 71 | </plugin> |
| 72 | + <plugin> |
| 73 | + <groupId>org.apache.maven.plugins</groupId> |
| 74 | + <artifactId>maven-jar-plugin</artifactId> |
| 75 | + <version>2.4</version> |
| 76 | + <configuration> |
| 77 | + <archive> |
| 78 | + <index>true</index> |
| 79 | + <manifest> |
| 80 | + <addClasspath>true</addClasspath> |
| 81 | + <mainClass>${mainclass}</mainClass> |
| 82 | + </manifest> |
| 83 | + <manifestEntries> |
| 84 | + <Implementation-Vender>UnoModding</Implementation-Vender> |
| 85 | + <Implementation-Version>${project.version}</Implementation-Version> |
| 86 | + <Built-By>${user.name}</Built-By> |
| 87 | + </manifestEntries> |
| 88 | + </archive> |
| 89 | + </configuration> |
| 90 | + </plugin> |
61 | 91 | <plugin> |
62 | 92 | <groupId>org.apache.maven.plugins</groupId> |
63 | 93 | <artifactId>maven-shade-plugin</artifactId> |
|
72 | 102 | <relocations> |
73 | 103 | <relocation> |
74 | 104 | <pattern>org.mcstats</pattern> |
75 | | - <shadedPattern>unomodding.bukkit</shadedPattern> |
| 105 | + <shadedPattern>unomodding.bukkit.playtimelimiter.mcstats</shadedPattern> |
76 | 106 | </relocation> |
77 | 107 | </relocations> |
78 | 108 | </configuration> |
|
0 commit comments