Replace Maven project file with Gradle build file
[WoTNS.git] / pom.xml
diff --git a/pom.xml b/pom.xml
deleted file mode 100644 (file)
index fce9839..0000000
--- a/pom.xml
+++ /dev/null
@@ -1,105 +0,0 @@
-<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.pterodactylus</groupId>
-       <artifactId>WoTNS</artifactId>
-       <version>0.0.8</version>
-       <dependencies>
-               <dependency>
-                       <groupId>net.pterodactylus</groupId>
-                       <artifactId>utils</artifactId>
-                       <version>0.11</version>
-               </dependency>
-               <dependency>
-                       <groupId>junit</groupId>
-                       <artifactId>junit</artifactId>
-                       <version>3.8.2</version>
-                       <scope>test</scope>
-               </dependency>
-               <dependency>
-                       <groupId>org.freenetproject</groupId>
-                       <artifactId>fred</artifactId>
-                       <version>0.7.5.1336</version>
-                       <scope>provided</scope>
-               </dependency>
-               <dependency>
-                       <groupId>org.freenetproject</groupId>
-                       <artifactId>freenet-ext</artifactId>
-                       <version>26</version>
-                       <scope>provided</scope>
-               </dependency>
-       </dependencies>
-       <repositories>
-               <repository>
-                       <id>pterodactylus</id>
-                       <url>http://maven.pterodactylus.net/</url>
-               </repository>
-       </repositories>
-       <properties>
-               <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-       </properties>
-       <build>
-               <plugins>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-compiler-plugin</artifactId>
-                               <configuration>
-                                       <source>1.6</source>
-                                       <target>1.6</target>
-                               </configuration>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-jar-plugin</artifactId>
-                               <configuration>
-                                       <archive>
-                                               <manifestEntries>
-                                                       <Plugin-Main-Class>net.pterodactylus.wotns.main.WoTNSPlugin</Plugin-Main-Class>
-                                               </manifestEntries>
-                                       </archive>
-                               </configuration>
-                       </plugin>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-assembly-plugin</artifactId>
-                               <version>2.2-beta-5</version>
-                               <configuration>
-                                       <descriptorRefs>
-                                               <descriptorRef>jar-with-dependencies</descriptorRef>
-                                       </descriptorRefs>
-                                       <archiverConfig>
-                                               <duplicateBehavior>skip</duplicateBehavior>
-                                       </archiverConfig>
-                                       <archive>
-                                               <manifestEntries>
-                                                       <Plugin-Main-Class>net.pterodactylus.wotns.main.WoTNSPlugin</Plugin-Main-Class>
-                                               </manifestEntries>
-                                       </archive>
-                               </configuration>
-                               <executions>
-                                       <execution>
-                                               <id>make-assembly</id>
-                                               <phase>package</phase>
-                                               <goals>
-                                                       <goal>single</goal>
-                                               </goals>
-                                       </execution>
-                               </executions>
-                       </plugin>
-               </plugins>
-       </build>
-       <reporting>
-               <plugins>
-                       <plugin>
-                               <groupId>org.apache.maven.plugins</groupId>
-                               <artifactId>maven-javadoc-plugin</artifactId>
-                               <configuration>
-                                       <links>
-                                               <link>http://download.oracle.com/javase/6/docs/api/</link>
-                                               <link>http://java.pterodactylus.net/utils/apidocs/</link>
-                                               <link>http://java.pterodactylus.net/utils.json/apidocs/</link>
-                                       </links>
-                               </configuration>
-                       </plugin>
-               </plugins>
-       </reporting>
-</project>