|
7 | 7 |
|
8 | 8 | <groupId>plugily.projects</groupId> |
9 | 9 | <artifactId>thebridge</artifactId> |
10 | | - <version>2.1.1-SNAPSHOT1-java8</version> |
| 10 | + <version>2.1.3-SNAPSHOT0</version> |
11 | 11 | <name>TheBridge</name> |
12 | 12 |
|
13 | 13 | <properties> |
|
35 | 35 | <id>plugilyprojects-snapshots</id> |
36 | 36 | <url>https://maven.plugily.xyz/snapshots</url> |
37 | 37 | </repository> |
38 | | - <repository> |
39 | | - <id>jitpack</id> |
40 | | - <url>https://jitpack.io</url> |
41 | | - </repository> |
42 | | - <repository> |
43 | | - <id>codemc-repo</id> |
44 | | - <url>https://repo.codemc.org/repository/maven-public/</url> |
45 | | - </repository> |
46 | 38 | <repository> |
47 | 39 | <id>spigot-repo</id> |
48 | 40 | <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url> |
|
61 | 53 | <groupId>org.jetbrains</groupId> |
62 | 54 | <artifactId>annotations</artifactId> |
63 | 55 | <version>23.0.0</version> |
64 | | - <scope>compile</scope> |
| 56 | + <scope>provided</scope> |
65 | 57 | </dependency> |
66 | 58 | <dependency> |
67 | 59 | <groupId>plugily.projects</groupId> |
68 | 60 | <artifactId>MiniGamesBox-Classic</artifactId> |
69 | | - <version>1.3.3-java8</version> |
| 61 | + <version>1.4.0</version> |
70 | 62 | <scope>compile</scope> |
71 | 63 | <optional>true</optional> |
72 | 64 | </dependency> |
|
79 | 71 | </resource> |
80 | 72 | </resources> |
81 | 73 | <plugins> |
82 | | - <plugin> |
83 | | - <groupId>org.apache.maven.plugins</groupId> |
84 | | - <artifactId>maven-site-plugin</artifactId> |
85 | | - <version>3.12.0</version> |
86 | | - </plugin> |
87 | 74 | <plugin> |
88 | 75 | <groupId>org.apache.maven.plugins</groupId> |
89 | 76 | <artifactId>maven-compiler-plugin</artifactId> |
90 | | - <version>3.10.1</version> |
91 | | - <goals> |
92 | | - <goal>compile</goal> |
93 | | - </goals> |
| 77 | + <version>3.14.0</version> |
94 | 78 | <configuration> |
95 | 79 | <source>${java.version}</source> |
96 | 80 | <target>${java.version}</target> |
| 81 | + <encoding>UTF-8</encoding> |
97 | 82 | </configuration> |
98 | 83 | </plugin> |
| 84 | + <plugin> |
| 85 | + <groupId>org.apache.maven.plugins</groupId> |
| 86 | + <artifactId>maven-site-plugin</artifactId> |
| 87 | + <version>3.21.0</version> |
| 88 | + </plugin> |
| 89 | + <plugin> |
| 90 | + <groupId>org.apache.maven.plugins</groupId> |
| 91 | + <artifactId>maven-deploy-plugin</artifactId> |
| 92 | + <version>3.1.4</version> |
| 93 | + </plugin> |
| 94 | + <plugin> |
| 95 | + <groupId>org.apache.maven.plugins</groupId> |
| 96 | + <artifactId>maven-project-info-reports-plugin</artifactId> |
| 97 | + <version>3.9.0</version> |
| 98 | + </plugin> |
99 | 99 | <plugin> |
100 | 100 | <groupId>org.apache.maven.plugins</groupId> |
101 | 101 | <artifactId>maven-javadoc-plugin</artifactId> |
102 | | - <version>3.4.0</version> |
| 102 | + <version>3.11.2</version> |
103 | 103 | <configuration> |
104 | | - <windowtitle>Murder Mystery API docs for v${project.version}</windowtitle> |
105 | | - <description>Minecraft survival minigame. |
106 | | - Be the murderer, innocent or the detective! Don't be killed during the game to win! API |
107 | | - documentation for hooking Murder Mystery with your plugin. |
| 104 | + <windowtitle>TheBridge API docs for v${project.version}</windowtitle> |
| 105 | + <description>Minecraft Base PvP minigame. |
| 106 | + Defend your base and try to wipe out the others |
108 | 107 | </description> |
109 | | - <destDir>minecraft/thebridge</destDir> |
110 | | - <isOffline>false</isOffline> |
111 | 108 | </configuration> |
112 | 109 | </plugin> |
113 | 110 | <plugin> |
114 | 111 | <groupId>org.apache.maven.plugins</groupId> |
115 | 112 | <artifactId>maven-jar-plugin</artifactId> |
116 | | - <version>3.2.2</version> |
| 113 | + <version>3.4.2</version> |
117 | 114 | </plugin> |
118 | 115 | <plugin> |
119 | 116 | <groupId>org.apache.maven.plugins</groupId> |
120 | 117 | <artifactId>maven-shade-plugin</artifactId> |
121 | | - <version>3.3.0</version> |
| 118 | + <version>3.6.0</version> |
122 | 119 | <executions> |
123 | 120 | <execution> |
124 | 121 | <phase>package</phase> |
125 | 122 | <goals> |
126 | 123 | <goal>shade</goal> |
127 | 124 | </goals> |
128 | 125 | <configuration> |
| 126 | + <minimizeJar>true</minimizeJar> |
129 | 127 | <relocations> |
130 | 128 | <relocation> |
131 | 129 | <pattern>com.zaxxer.hikari</pattern> |
|
135 | 133 | <pattern>plugily.projects.minigamesbox</pattern> |
136 | 134 | <shadedPattern>plugily.projects.thebridge.minigamesbox</shadedPattern> |
137 | 135 | </relocation> |
138 | | - <relocation> |
139 | | - <pattern>plugily.projects.commonsbox</pattern> |
140 | | - <shadedPattern>plugily.projects.thebridge.commonsbox</shadedPattern> |
141 | | - </relocation> |
142 | 136 | </relocations> |
143 | 137 | <createDependencyReducedPom>false</createDependencyReducedPom> |
144 | 138 | </configuration> |
|
161 | 155 | <extension> |
162 | 156 | <groupId>org.apache.maven.wagon</groupId> |
163 | 157 | <artifactId>wagon-ssh</artifactId> |
164 | | - <version>3.5.2</version> |
| 158 | + <version>3.5.3</version> |
165 | 159 | </extension> |
166 | 160 | </extensions> |
167 | 161 | </build> |
168 | 162 | <distributionManagement> |
169 | 163 | <repository> |
170 | | - <id>plugily-projects</id> |
| 164 | + <id>Release</id> |
171 | 165 | <url>https://maven.plugily.xyz/releases</url> |
172 | 166 | </repository> |
| 167 | + <snapshotRepository> |
| 168 | + <id>Snapshot</id> |
| 169 | + <url>https://maven.plugily.xyz/snapshots</url> |
| 170 | + </snapshotRepository> |
173 | 171 | </distributionManagement> |
174 | | - |
175 | 172 | </project> |
0 commit comments