Advertisement
Guest User

Untitled

a guest
Jan 15th, 2021
498
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.97 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>com.rubicon.game</groupId>
  9. <artifactId>Rubicon</artifactId>
  10. <version>0.0.1-SNAPSHOT</version>
  11. </parent>
  12.  
  13. <groupId>com.rubicon.game.client</groupId>
  14. <artifactId>Client</artifactId>
  15. <name>Client</name>
  16.  
  17. <url>http://maven.apache.org</url>
  18. <properties>
  19. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  20. <maven.compiler.target>1.8</maven.compiler.target>
  21. <maven.compiler.source>1.8</maven.compiler.source>
  22. </properties>
  23.  
  24. <repositories>
  25. <repository>
  26. <id>central</id>
  27. <url>https://repo1.maven.org/maven2/</url>
  28. </repository>
  29. </repositories>
  30.  
  31. <dependencies>
  32. <dependency>
  33. <groupId>javazoom</groupId>
  34. <artifactId>jlayer</artifactId>
  35. <version>1.0.1</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.rubicon.game.core</groupId>
  39. <artifactId>Core</artifactId>
  40. <version>${project.version}</version>
  41. <exclusions>
  42. <exclusion>
  43. <groupId>com.google.j2objc</groupId>
  44. <artifactId>j2objc-annotations</artifactId>
  45. </exclusion>
  46. <exclusion>
  47. <groupId>com.google.code.findbugs</groupId>
  48. <artifactId>jsr305</artifactId>
  49. </exclusion>
  50. <exclusion>
  51. <groupId>org.checkerframework</groupId>
  52. <artifactId>checker-qual</artifactId>
  53. </exclusion>
  54. <exclusion>
  55. <groupId>com.google.errorprone</groupId>
  56. <artifactId>error_prone_annotations</artifactId>
  57. </exclusion>
  58. <exclusion>
  59. <groupId>com.google.guava</groupId>
  60. <artifactId>listenablefuture</artifactId>
  61. </exclusion>
  62. <exclusion>
  63. <groupId>com.google.guava</groupId>
  64. <artifactId>failureaccess</artifactId>
  65. </exclusion>
  66. </exclusions>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.openjfx</groupId>
  70. <artifactId>javafx-web</artifactId>
  71. <version>15</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.openjfx</groupId>
  75. <artifactId>javafx-swing</artifactId>
  76. <version>15</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.openjfx</groupId>
  80. <artifactId>javafx-graphics</artifactId>
  81. <version>15</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.openjfx</groupId>
  85. <artifactId>javafx-controls</artifactId>
  86. <version>15</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.openjfx</groupId>
  90. <artifactId>javafx-base</artifactId>
  91. <version>15</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>net.sourceforge.htmlunit</groupId>
  95. <artifactId>htmlunit</artifactId>
  96. <version>2.23</version>
  97. <scope>compile</scope>
  98. <exclusions>
  99. <exclusion>
  100. <groupId>xalan</groupId>
  101. <artifactId>xalan</artifactId>
  102. </exclusion>
  103. <exclusion>
  104. <groupId>org.apache.commons</groupId>
  105. <artifactId>commons-lang3</artifactId>
  106. </exclusion>
  107. <exclusion>
  108. <groupId>commons-codec</groupId>
  109. <artifactId>commons-codec</artifactId>
  110. </exclusion>
  111. <exclusion>
  112. <groupId>org.eclipse.jetty.websocket</groupId>
  113. <artifactId>websocket-client</artifactId>
  114. </exclusion>
  115. <exclusion>
  116. <groupId>net.sourceforge.htmlunit</groupId>
  117. <artifactId>htmlunit-core-js</artifactId>
  118. </exclusion>
  119. <exclusion>
  120. <groupId>org.apache.httpcomponents</groupId>
  121. <artifactId>httpmime</artifactId>
  122. </exclusion>
  123. <exclusion>
  124. <groupId>net.sourceforge.htmlunit</groupId>
  125. <artifactId>neko-htmlunit</artifactId>
  126. </exclusion>
  127. <exclusion>
  128. <groupId>commons-io</groupId>
  129. <artifactId>commons-io</artifactId>
  130. </exclusion>
  131. <exclusion>
  132. <groupId>net.sourceforge.cssparser</groupId>
  133. <artifactId>cssparser</artifactId>
  134. </exclusion>
  135. <exclusion>
  136. <groupId>commons-logging</groupId>
  137. <artifactId>commons-logging</artifactId>
  138. </exclusion>
  139. <exclusion>
  140. <groupId>org.apache.httpcomponents</groupId>
  141. <artifactId>httpclient</artifactId>
  142. </exclusion>
  143. </exclusions>
  144. </dependency>
  145.  
  146.  
  147. <dependency>
  148. <groupId>com.auth0</groupId>
  149. <artifactId>java-jwt</artifactId>
  150. <version>3.1.0</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>com.google.auth</groupId>
  154. <artifactId>google-auth-library-credentials</artifactId>
  155. <version>0.22.2</version>
  156. </dependency>
  157. <dependency>
  158. <groupId>com.google.apis</groupId>
  159. <artifactId>google-api-services-oauth2</artifactId>
  160. <version>v2-rev131-1.23.0</version>
  161. <exclusions>
  162. <exclusion>
  163. <groupId>com.google.guava</groupId>
  164. <artifactId>guava-jdk5</artifactId>
  165. </exclusion>
  166. </exclusions>
  167. </dependency>
  168. <dependency>
  169. <groupId>com.google.http-client</groupId>
  170. <artifactId>google-http-client-jackson2</artifactId>
  171. <version>1.37.0</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>com.google.oauth-client</groupId>
  175. <artifactId>google-oauth-client-jetty</artifactId>
  176. <version>1.11.0-beta</version>
  177. </dependency>
  178. <dependency>
  179. <groupId>com.google.api.client</groupId>
  180. <artifactId>google-api-client-util</artifactId>
  181. <version>1.2.3-alpha</version>
  182. </dependency>
  183. <dependency>
  184. <groupId>com.google.auth</groupId>
  185. <artifactId>google-auth-library-oauth2-http</artifactId>
  186. <version>0.22.2</version>
  187. </dependency>
  188.  
  189. <dependency>
  190. <groupId>org.projectlombok</groupId>
  191. <artifactId>lombok</artifactId>
  192. <version>1.18.12</version>
  193. <scope>provided</scope>
  194. </dependency>
  195. <dependency>
  196. <groupId>com.google.code.gson</groupId>
  197. <artifactId>gson</artifactId>
  198. <version>2.8.6</version>
  199. </dependency>
  200. </dependencies>
  201.  
  202. <build>
  203. <plugins>
  204. <plugin>
  205. <groupId>org.apache.maven.plugins</groupId>
  206. <artifactId>maven-shade-plugin</artifactId>
  207. <version>3.2.4</version>
  208. <configuration>
  209. <release>11</release>
  210. </configuration>
  211. <executions>
  212. <execution>
  213. <phase>package</phase>
  214. <goals>
  215. <goal>shade</goal>
  216. </goals>
  217. <configuration>
  218. <minimizeJar>true</minimizeJar>
  219. <filters>
  220. <filter>
  221. <artifact>*:*</artifact>
  222. <excludes>
  223. <exclude>META-INF/*.SF</exclude>
  224. <exclude>META-INF/*.DSA</exclude>
  225. <exclude>META-INF/*.RSA</exclude>
  226. </excludes>
  227. </filter>
  228. </filters>
  229. <transformers>
  230. <transformer
  231. implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
  232. <mainClass>com.rubicon.game.client.ClientApplication</mainClass>
  233. </transformer>
  234. </transformers>
  235. </configuration>
  236. </execution>
  237. </executions>
  238. </plugin>
  239. </plugins>
  240.  
  241. <resources>
  242. <resource>
  243. <targetPath>.</targetPath>
  244. <filtering>false</filtering>
  245. <directory>${basedir}/src/main/resources/</directory>
  246. </resource>
  247. </resources>
  248. </build>
  249. </project>
  250.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement