Add possibility to insert additional copies of certain blocks.
[jFCPlib.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index 12eda1a..a698719 100644 (file)
--- a/pom.xml
+++ b/pom.xml
@@ -2,9 +2,16 @@
        <modelVersion>4.0.0</modelVersion>
        <groupId>net.pterodactylus</groupId>
        <artifactId>jFCPlib</artifactId>
-       <version>0.2-SNAPSHOT</version>
+       <version>0.1.2.3</version>
        <name>jFCPlib</name>
        <packaging>jar</packaging>
+       <distributionManagement>
+               <repository>
+                       <id>pterodactylus</id>
+                       <name>pterodactylus.net Maven Repository</name>
+                       <url>scp://maven@maven.pterodactylus.net/home/maven/repository</url>
+               </repository>
+       </distributionManagement>
        <dependencies>
                <dependency>
                        <groupId>junit</groupId>
                        <version>3.8.2</version>
                        <scope>test</scope>
                </dependency>
+               <dependency>
+                       <groupId>net.pterodactylus</groupId>
+                       <artifactId>utils</artifactId>
+                       <version>0.1.1</version>
+               </dependency>
        </dependencies>
+       <repositories>
+               <repository>
+                       <id>pterodactylus</id>
+                       <name>pterodactylus.net Maven Repository</name>
+                       <url>http://maven.pterodactylus.net</url>
+               </repository>
+       </repositories>
        <properties>
                <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        </properties>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-compiler-plugin</artifactId>
                                <configuration>
-                                       <source>1.5</source>
-                                       <target>1.5</target>
+                                       <source>1.6</source>
+                                       <target>1.6</target>
                                </configuration>
                        </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-javadoc-plugin</artifactId>
+                               <executions>
+                                       <execution>
+                                               <id>attach-javadocs</id>
+                                               <goals>
+                                                       <goal>jar</goal>
+                                               </goals>
+                                       </execution>
+                               </executions>
+                       </plugin>
+                       <plugin>
+                               <groupId>org.apache.maven.plugins</groupId>
+                               <artifactId>maven-source-plugin</artifactId>
+                               <executions>
+                                       <execution>
+                                               <id>attach-sources</id>
+                                               <goals>
+                                                       <goal>jar</goal>
+                                               </goals>
+                                       </execution>
+                               </executions>
+                       </plugin>
                </plugins>
        </build>
 </project>