Skip to content

Commit

Permalink
Merge pull request #38 from SBPrime/move2maven
Browse files Browse the repository at this point in the history
Bukkit 1.13 support
  • Loading branch information
SBPrime authored Jul 27, 2018
2 parents 7de6837 + dd43f81 commit b09b430
Show file tree
Hide file tree
Showing 199 changed files with 2,301 additions and 21,792 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*.jar
*.war
*.ear
/*/nbproject/private/
/*/nbproject/*
/*/build/
/*/dist/
/*/test/
Expand All @@ -15,3 +15,7 @@
/dist/*
/lib/*
*~
/*/target/
/*/nbproject/*
/**/nbproject/*
/test-server/*
File renamed without changes.
18 changes: 18 additions & 0 deletions BlocksHub-API/nb-configuration.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<project-shared-configuration>
<!--
This file contains additional configuration written by modules in the NetBeans IDE.
The configuration is intended to be shared among all the users of project and
therefore it is assumed to be part of version control checkout.
Without this configuration present, some functionality in the IDE may be limited or fail altogether.
-->
<properties xmlns="http://www.netbeans.org/ns/maven-properties-data/1">
<!--
Properties that influence various parts of the IDE, especially code formatting and the like.
You can copy and paste the single properties, into the pom.xml file and the IDE will pick them up.
That way multiple projects can share the same settings (useful for formatting rules for example).
Any value defined here will override the pom.xml file value but is only applicable to the current project.
-->
<netbeans.hint.licensePath>${project.basedir}/licenseheader.txt</netbeans.hint.licensePath>
</properties>
</project-shared-configuration>
16 changes: 16 additions & 0 deletions BlocksHub-API/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<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>org.primesoft.blockshub</groupId>
<artifactId>BlocksHub-API</artifactId>
<version>3.0.0</version>

<packaging>jar</packaging>
<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>
</project>
Loading

0 comments on commit b09b430

Please sign in to comment.