Skip to content

Instantly share code, notes, and snippets.

@TheMasteredPanda
Created October 13, 2016 08:15
Show Gist options
  • Save TheMasteredPanda/6c678e8681f8dcf8782c4b7db905bd67 to your computer and use it in GitHub Desktop.
Save TheMasteredPanda/6c678e8681f8dcf8782c4b7db905bd67 to your computer and use it in GitHub Desktop.
<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>
<groupId>net.emenbee</groupId>
<artifactId>ERInfected</artifactId>
<version>1.0-SNAPSHOT</version>
<name>ERInfected</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<build>
<!-- Build Process -->
<defaultGoal>clean package</defaultGoal>
<finalName>ERInfected</finalName>
<resources>
<resource>
<filtering>true</filtering>
<directory>${basedir}/src/resources</directory>
<includes>*.yml</includes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- Spigot 1.10.2 -->
<dependency>
<groupId>com.themasteredpanda.minecraft</groupId>
<artifactId>spigot</artifactId>
<version>1.10.2</version>
</dependency>
<!-- LibsDisguises -->
<dependency>
<groupId>LibsDisguises</groupId>
<artifactId>LibsDisguises</artifactId>
<version>9.0.7</version>
</dependency>
<!-- ProtocolLib -->
<dependency>
<groupId>com.comphenix.protocol</groupId>
<artifactId>ProtocolLib-API</artifactId>
<version>4.1.0</version>
</dependency>
<!-- HikariCP -->
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>2.5.0</version>
</dependency>
</dependencies>
<repositories>
<!-- md_5 repo -->
<repository>
<id>md_5-public</id>
<url>http://repo.md-5.net/content/groups/public/</url>
</repository>
<!-- dmulloy2 repo -->
<repository>
<id>dmulloy2-repo</id>
<url>http://repo.dmulloy2.net/content/groups/public/</url>
</repository>
</repositories>
</project>
Microsoft Windows [Version 10.0.14393]
(c) 2016 Microsoft Corporation. All rights reserved.
C:\Users\kingo\Documents\Coding\Emenbee\ERInfected-2.0>mvn clean install
[INFO] Scanning for projects...
[ERROR] [ERROR] Some problems were encountered while processing the POMs:
[FATAL] Non-parseable POM C:\Users\kingo\Documents\Coding\Emenbee\ERInfected-2.0\pom.xml: expected START_TAG or END_TAG not TEXT (position: TEXT seen ...</directory>\r\n
<includes>*.yml</... @28:34) @ line 28, column 34
@
[ERROR] The build could not read 1 project -> [Help 1]
[ERROR]
[ERROR] The project (C:\Users\kingo\Documents\Coding\Emenbee\ERInfected-2.0\pom.xml) has 1 error
[ERROR] Non-parseable POM C:\Users\kingo\Documents\Coding\Emenbee\ERInfected-2.0\pom.xml: expected START_TAG or END_TAG not TEXT (position: TEXT seen ...</directory>\r\n
<includes>*.yml</... @28:34) @ line 28, column 34 -> [Help 2]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException
[ERROR] [Help 2] http://cwiki.apache.org/confluence/display/MAVEN/ModelParseException
C:\Users\kingo\Documents\Coding\Emenbee\ERInfected-2.0>\
p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment