Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <version>117.01</version>
- <name>MapleX</name>
- <groupId>exiled</groupId>
- <artifactId>maplestory</artifactId>
- <properties>
- <maven.compiler.source>1.7</maven.compiler.source>
- <maven.compiler.target>1.7</maven.compiler.target>
- </properties>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-assembly-plugin</artifactId>
- <version>2.6</version>
- <configuration>
- <archive>
- <manifest>
- <mainClass>server.Start</mainClass>
- </manifest>
- </archive>
- <descriptorRefs>
- <descriptorRef>jar-with-dependencies</descriptorRef>
- </descriptorRefs>
- </configuration>
- <executions>
- <execution>
- <id>make-assembly</id>
- <phase>package</phase>
- <goals>
- <goal>single</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.3</version>
- <configuration>
- <source/>
- <target/>
- </configuration>
- </plugin>
- </plugins>
- </build>
- <dependencies>
- <!-- <dependency>-->
- <!-- <groupId>org.apache.mina</groupId>-->
- <!-- <artifactId>mina-core</artifactId>-->
- <!-- <version>2.0.7</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>org.slf4j</groupId>-->
- <!-- <artifactId>slf4j-api</artifactId>-->
- <!-- <version>1.7.28</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>mysql</groupId>-->
- <!-- <artifactId>mysql-connector-java</artifactId>-->
- <!-- <version>5.1.39</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>org.slf4j</groupId>-->
- <!-- <artifactId>slf4j-jdk14</artifactId>-->
- <!-- <version>1.7.28</version>-->
- <!-- </dependency>-->
- </dependencies>
- </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement