|
1 | | -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
2 | | - xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3 | | - <modelVersion>4.0.0</modelVersion> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
4 | 5 |
|
5 | | - <groupId>me.rayzr522</groupId> |
6 | | - <artifactId>jsonmessage</artifactId> |
7 | | - <version>1.2.1</version> |
8 | | - <name>JSONMessage</name> |
9 | | - <description>A modern implementation of Fanciful</description> |
| 6 | + <groupId>me.rayzr522</groupId> |
| 7 | + <artifactId>jsonmessage</artifactId> |
| 8 | + <version>1.2.1</version> |
| 9 | + <name>JSONMessage</name> |
| 10 | + <description>A modern implementation of Fanciful</description> |
10 | 11 |
|
11 | | - <properties> |
12 | | - <java.version>1.8</java.version> |
13 | | - <bukkit.version>1.8.8-R0.1-SNAPSHOT</bukkit.version> |
14 | | - </properties> |
| 12 | + <properties> |
| 13 | + <java.version>1.8</java.version> |
| 14 | + <bukkit.version>1.8.8-R0.1-SNAPSHOT</bukkit.version> |
| 15 | + </properties> |
15 | 16 |
|
16 | | - <repositories> |
17 | | - <repository> |
18 | | - <id>spigot-repo</id> |
19 | | - <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> |
20 | | - </repository> |
21 | | - </repositories> |
| 17 | + <repositories> |
| 18 | + <repository> |
| 19 | + <id>spigot-repo</id> |
| 20 | + <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> |
| 21 | + </repository> |
| 22 | + </repositories> |
22 | 23 |
|
23 | | - <dependencies> |
24 | | - <dependency> |
25 | | - <groupId>org.bukkit</groupId> |
26 | | - <artifactId>bukkit</artifactId> |
27 | | - <version>${bukkit.version}</version> |
28 | | - <scope>provided</scope> |
29 | | - </dependency> |
30 | | - </dependencies> |
| 24 | + <dependencies> |
| 25 | + <dependency> |
| 26 | + <groupId>org.bukkit</groupId> |
| 27 | + <artifactId>bukkit</artifactId> |
| 28 | + <version>${bukkit.version}</version> |
| 29 | + <scope>provided</scope> |
| 30 | + </dependency> |
| 31 | + </dependencies> |
31 | 32 |
|
32 | | - <distributionManagement> |
33 | | - <repository> |
34 | | - <id>internal.repo</id> |
35 | | - <name>Build repo</name> |
36 | | - <url>file://${basedir}/../maven-repo</url> |
37 | | - </repository> |
38 | | - </distributionManagement> |
| 33 | + <distributionManagement> |
| 34 | + <repository> |
| 35 | + <id>internal.repo</id> |
| 36 | + <name>Build repo</name> |
| 37 | + <url>file://${basedir}/../maven-repo</url> |
| 38 | + </repository> |
| 39 | + </distributionManagement> |
39 | 40 |
|
40 | | - <build> |
41 | | - <defaultGoal>compile</defaultGoal> |
42 | | - <plugins> |
43 | | - <plugin> |
44 | | - <groupId>org.apache.maven.plugins</groupId> |
45 | | - <artifactId>maven-compiler-plugin</artifactId> |
46 | | - <version>3.8.1</version> |
47 | | - <configuration> |
48 | | - <source>${java.version}</source> |
49 | | - <target>${java.version}</target> |
50 | | - </configuration> |
51 | | - </plugin> |
52 | | - <plugin> |
53 | | - <groupId>org.apache.maven.plugins</groupId> |
54 | | - <artifactId>maven-source-plugin</artifactId> |
55 | | - <version>3.2.1</version> |
56 | | - <executions> |
57 | | - <execution> |
58 | | - <id>attach-sources</id> |
59 | | - <phase>deploy</phase> |
60 | | - <goals> |
61 | | - <goal>jar-no-fork</goal> |
62 | | - </goals> |
63 | | - </execution> |
64 | | - </executions> |
65 | | - </plugin> |
66 | | - <plugin> |
67 | | - <groupId>org.apache.maven.plugins</groupId> |
68 | | - <artifactId>maven-javadoc-plugin</artifactId> |
69 | | - <version>3.2.0</version> |
70 | | - <executions> |
71 | | - <execution> |
72 | | - <id>attach-javadocs</id> |
73 | | - <phase>deploy</phase> |
74 | | - <goals> |
75 | | - <goal>jar</goal> |
76 | | - </goals> |
77 | | - </execution> |
78 | | - </executions> |
79 | | - </plugin> |
80 | | - <plugin> |
81 | | - <groupId>org.apache.maven.plugins</groupId> |
82 | | - <artifactId>maven-deploy-plugin</artifactId> |
83 | | - <version>2.8.2</version> |
84 | | - <executions> |
85 | | - <execution> |
86 | | - <id>deploy</id> |
87 | | - <phase>deploy</phase> |
88 | | - <goals> |
89 | | - <goal>deploy</goal> |
90 | | - </goals> |
91 | | - </execution> |
92 | | - </executions> |
93 | | - <!--<configuration>--> |
94 | | - <!--<javadoc>${project.build.directory}/${project.build.finalName}-javadoc.jar</javadoc>--> |
95 | | - <!--</configuration>--> |
96 | | - </plugin> |
97 | | - </plugins> |
98 | | - </build> |
| 41 | + <build> |
| 42 | + <defaultGoal>compile</defaultGoal> |
| 43 | + <plugins> |
| 44 | + <plugin> |
| 45 | + <groupId>org.apache.maven.plugins</groupId> |
| 46 | + <artifactId>maven-compiler-plugin</artifactId> |
| 47 | + <version>3.8.1</version> |
| 48 | + <configuration> |
| 49 | + <source>${java.version}</source> |
| 50 | + <target>${java.version}</target> |
| 51 | + </configuration> |
| 52 | + </plugin> |
| 53 | + <plugin> |
| 54 | + <groupId>org.apache.maven.plugins</groupId> |
| 55 | + <artifactId>maven-source-plugin</artifactId> |
| 56 | + <version>3.2.1</version> |
| 57 | + <executions> |
| 58 | + <execution> |
| 59 | + <id>attach-sources</id> |
| 60 | + <phase>deploy</phase> |
| 61 | + <goals> |
| 62 | + <goal>jar-no-fork</goal> |
| 63 | + </goals> |
| 64 | + </execution> |
| 65 | + </executions> |
| 66 | + </plugin> |
| 67 | + <plugin> |
| 68 | + <groupId>org.apache.maven.plugins</groupId> |
| 69 | + <artifactId>maven-javadoc-plugin</artifactId> |
| 70 | + <version>3.2.0</version> |
| 71 | + <executions> |
| 72 | + <execution> |
| 73 | + <id>attach-javadocs</id> |
| 74 | + <phase>deploy</phase> |
| 75 | + <goals> |
| 76 | + <goal>jar</goal> |
| 77 | + </goals> |
| 78 | + </execution> |
| 79 | + </executions> |
| 80 | + </plugin> |
| 81 | + <plugin> |
| 82 | + <groupId>org.apache.maven.plugins</groupId> |
| 83 | + <artifactId>maven-deploy-plugin</artifactId> |
| 84 | + <version>3.0.0-M1</version> |
| 85 | + <executions> |
| 86 | + <execution> |
| 87 | + <id>deploy</id> |
| 88 | + <phase>deploy</phase> |
| 89 | + <goals> |
| 90 | + <goal>deploy</goal> |
| 91 | + </goals> |
| 92 | + </execution> |
| 93 | + </executions> |
| 94 | + </plugin> |
| 95 | + </plugins> |
| 96 | + </build> |
99 | 97 | </project> |
0 commit comments