summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorsnowleo <schneeleo@gmail.com>2013-04-01 23:23:51 +0200
committersnowleo <schneeleo@gmail.com>2013-04-01 23:24:18 +0200
commite669fdc4ee4b6475067304ea0c07e59a26523dff (patch)
treea5aaff41c5271307bf5bf803b46b8f1a3efd605f /pom.xml
parent4131a3676509d36720b2b1494501d8623a19a6ec (diff)
downloadEssentials-e669fdc4ee4b6475067304ea0c07e59a26523dff.tar
Essentials-e669fdc4ee4b6475067304ea0c07e59a26523dff.tar.gz
Essentials-e669fdc4ee4b6475067304ea0c07e59a26523dff.tar.lz
Essentials-e669fdc4ee4b6475067304ea0c07e59a26523dff.tar.xz
Essentials-e669fdc4ee4b6475067304ea0c07e59a26523dff.zip
So you like pot?
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml30
1 files changed, 29 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 950e4766f..b7012f4cd 100644
--- a/pom.xml
+++ b/pom.xml
@@ -38,6 +38,16 @@
<version>${bukkit.version}</version>
</dependency>
</dependencies>
+
+ <pluginRepositories>
+ <pluginRepository>
+ <id>gettext-commons-site</id>
+ <url>http://gettext-commons-maven-repository.googlecode.com/svn/repository/</url>
+ <releases>
+ <updatePolicy>daily</updatePolicy>
+ </releases>
+ </pluginRepository>
+ </pluginRepositories>
<build>
<finalName>${project.name}</finalName>
@@ -64,13 +74,31 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
- <version>2.3.2</version>
+ <version>3.0</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
</plugins>
+ <pluginManagement>
+ <plugins>
+ <plugin>
+ <groupId>org.xnap.commons</groupId>
+ <artifactId>maven-gettext-plugin</artifactId>
+ <version>1.2.3</version>
+ <executions>
+ <execution>
+ <phase>compile</phase>
+ <goals>
+ <goal>merge</goal>
+ <goal>dist</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </pluginManagement>
</build>
<properties>