|
12 | 12 | <maven.compiler.release>21</maven.compiler.release> |
13 | 13 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
14 | 14 | <project.bukkit.main>tc.oc.occ.idly.Idly</project.bukkit.main> |
| 15 | + <project.paper.api>1.21.11</project.paper.api> |
15 | 16 | <project.author>applenick</project.author> |
16 | 17 | </properties> |
17 | 18 |
|
|
38 | 39 | <dependency> |
39 | 40 | <groupId>dev.pgm.paper</groupId> |
40 | 41 | <artifactId>paper-api</artifactId> |
41 | | - <version>1.8_1.21.10-SNAPSHOT</version> |
| 42 | + <version>1.8_1.21.11-SNAPSHOT</version> |
42 | 43 | <scope>provided</scope> |
43 | 44 | </dependency> |
44 | 45 |
|
|
98 | 99 | </compilerArgs> |
99 | 100 | </configuration> |
100 | 101 | </plugin> |
101 | | - <!-- Exposes git information to the build environment --> |
102 | 102 | <plugin> |
103 | | - <groupId>pl.project13.maven</groupId> |
104 | | - <artifactId>git-commit-id-plugin</artifactId> |
105 | | - <version>4.9.10</version> |
106 | | - <executions> |
107 | | - <execution> |
108 | | - <goals> |
109 | | - <goal>revision</goal> |
110 | | - </goals> |
111 | | - </execution> |
112 | | - </executions> |
| 103 | + <groupId>org.apache.maven.plugins</groupId> |
| 104 | + <artifactId>maven-jar-plugin</artifactId> |
| 105 | + <version>3.4.1</version> |
113 | 106 | <configuration> |
114 | | - <failOnNoGitDirectory>false</failOnNoGitDirectory> |
115 | | - <failOnUnableToExtractRepoInfo>false</failOnUnableToExtractRepoInfo> |
| 107 | + <archive> |
| 108 | + <manifestEntries> |
| 109 | + <paperweight-mappings-namespace>mojang</paperweight-mappings-namespace> |
| 110 | + </manifestEntries> |
| 111 | + </archive> |
116 | 112 | </configuration> |
117 | 113 | </plugin> |
118 | 114 | <plugin> |
|
146 | 142 | </execution> |
147 | 143 | </executions> |
148 | 144 | </plugin> |
149 | | - <!-- Validates that code is properly formatted with Google's code style --> |
| 145 | + <plugin> |
| 146 | + <groupId>io.github.git-commit-id</groupId> |
| 147 | + <artifactId>git-commit-id-maven-plugin</artifactId> |
| 148 | + <version>9.0.2</version> |
| 149 | + <executions> |
| 150 | + <execution> |
| 151 | + <goals> |
| 152 | + <goal>revision</goal> |
| 153 | + </goals> |
| 154 | + <phase>initialize</phase> |
| 155 | + </execution> |
| 156 | + </executions> |
| 157 | + <configuration> |
| 158 | + <failOnNoGitDirectory>false</failOnNoGitDirectory> |
| 159 | + <failOnUnableToExtractRepoInfo>false</failOnUnableToExtractRepoInfo> |
| 160 | + </configuration> |
| 161 | + </plugin> |
150 | 162 | <plugin> |
151 | 163 | <groupId>com.spotify.fmt</groupId> |
152 | 164 | <artifactId>fmt-maven-plugin</artifactId> |
|
0 commit comments