Skip to content

Commit

Permalink
Merge branch 'gregsheremeta-master'
Browse files Browse the repository at this point in the history
  • Loading branch information
svenjacobs committed May 13, 2014
2 parents 3ba09ac + 3c3d9eb commit aa08ef0
Showing 1 changed file with 48 additions and 3 deletions.
51 changes: 48 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,15 @@
<name>GwtBootstrap3 Parent</name>

<parent>
<groupId>com.svenjacobs</groupId>
<artifactId>sonatype-parent</artifactId>
<version>1</version>
<groupId>org.sonatype.oss</groupId>
<artifactId>oss-parent</artifactId>
<version>7</version>
</parent>

<prerequisites>
<maven>3.0.5</maven>
</prerequisites>

<scm>
<connection>scm:git:[email protected]:gwtbootstrap3/gwtbootstrap3.git</connection>
<developerConnection>scm:git:[email protected]:gwtbootstrap3/gwtbootstrap3.git</developerConnection>
Expand Down Expand Up @@ -57,6 +61,7 @@
</modules>

<properties>
<source.version>1.6</source.version>
<gwt.version>2.6.0</gwt.version>
</properties>

Expand Down Expand Up @@ -136,8 +141,48 @@
</executions>
<inherited>true</inherited>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>${source.version}</source>
<target>${source.version}</target>
<compilerArgument>-Xlint:all</compilerArgument>
<showWarnings>true</showWarnings>
<showDeprecation>true</showDeprecation>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>

<repositories>
<repository>
<id>sonatype-nexus</id>
<name>Sonatype Nexus</name>
<url>http://repository.sonatype.org/content/groups/public/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>

<pluginRepositories>
<pluginRepository>
<id>sonatype-nexus-plugins</id>
<url>http://repository.sonatype.org/content/groups/public/</url>
<name>Sonatype Nexus Plugins</name>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>

</project>

0 comments on commit aa08ef0

Please sign in to comment.