Advertisement
toko214

Untitled

Dec 28th, 2019
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.65 KB | None | 0 0
  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>
  4.     <version>117.01</version>
  5.     <name>MapleX</name>
  6.     <groupId>exiled</groupId>
  7.     <artifactId>maplestory</artifactId>
  8.  
  9.     <properties>
  10.         <maven.compiler.source>1.7</maven.compiler.source>
  11.         <maven.compiler.target>1.7</maven.compiler.target>
  12.     </properties>
  13.  
  14.     <build>
  15.         <plugins>
  16.             <plugin>
  17.                 <artifactId>maven-assembly-plugin</artifactId>
  18.                 <version>2.6</version>
  19.                 <configuration>
  20.                     <archive>
  21.                         <manifest>
  22.                             <mainClass>server.Start</mainClass>
  23.                         </manifest>
  24.                     </archive>
  25.                     <descriptorRefs>
  26.                         <descriptorRef>jar-with-dependencies</descriptorRef>
  27.                     </descriptorRefs>
  28.                 </configuration>
  29.                 <executions>
  30.                     <execution>
  31.                         <id>make-assembly</id>
  32.                         <phase>package</phase>
  33.                         <goals>
  34.                             <goal>single</goal>
  35.                         </goals>
  36.                     </execution>
  37.                 </executions>
  38.             </plugin>
  39.             <plugin>
  40.                 <artifactId>maven-compiler-plugin</artifactId>
  41.                 <version>3.3</version>
  42.                 <configuration>
  43.                     <source/>
  44.                     <target/>
  45.                 </configuration>
  46.             </plugin>
  47.         </plugins>
  48.     </build>
  49.  
  50.     <dependencies>
  51.  
  52. <!--        <dependency>-->
  53. <!--            <groupId>org.apache.mina</groupId>-->
  54. <!--            <artifactId>mina-core</artifactId>-->
  55. <!--            <version>2.0.7</version>-->
  56. <!--        </dependency>-->
  57. <!--        <dependency>-->
  58. <!--            <groupId>org.slf4j</groupId>-->
  59. <!--            <artifactId>slf4j-api</artifactId>-->
  60. <!--            <version>1.7.28</version>-->
  61. <!--        </dependency>-->
  62. <!--        <dependency>-->
  63. <!--            <groupId>mysql</groupId>-->
  64. <!--            <artifactId>mysql-connector-java</artifactId>-->
  65. <!--            <version>5.1.39</version>-->
  66. <!--        </dependency>-->
  67. <!--        <dependency>-->
  68. <!--            <groupId>org.slf4j</groupId>-->
  69. <!--            <artifactId>slf4j-jdk14</artifactId>-->
  70. <!--            <version>1.7.28</version>-->
  71. <!--        </dependency>-->
  72.  
  73.     </dependencies>
  74. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement