Skip to content

Commit

Permalink
Merge pull request #58 from buehner/add-maven-eclipse-plugin
Browse files Browse the repository at this point in the history
Add maven eclipse plugin
  • Loading branch information
buehner committed Sep 23, 2014
2 parents f66f7b0 + 5d5dffa commit 6af1896
Showing 1 changed file with 22 additions and 9 deletions.
31 changes: 22 additions & 9 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@

<properties>
<java.version>1.6</java.version>
<eclipse-plugin.version>2.9</eclipse-plugin.version>
<javax.jstl.version>1.2</javax.jstl.version>
<spring.version>3.0.5.RELEASE</spring.version>
<project.build.finalName>SHOGun</project.build.finalName>
Expand Down Expand Up @@ -95,7 +96,7 @@
<artifactId>spring-security-config</artifactId>
<version>${spring.version}</version>
</dependency>
<!-- <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-taglibs</artifactId>
<!-- <dependency> <groupId>org.springframework.security</groupId> <artifactId>spring-security-taglibs</artifactId>
<version>${spring.version}</version> </dependency> -->

<!-- Hibernate -->
Expand All @@ -116,7 +117,7 @@
<artifactId>hibernate-spatial-postgis</artifactId>
<version>1.0</version>
</dependency>

<!-- c3p0 JDBC Connection Pooling -->
<dependency>
<groupId>com.mchange</groupId>
Expand Down Expand Up @@ -183,7 +184,7 @@
<artifactId>commons-lang3</artifactId>
<version>3.1</version>
</dependency>

<!-- -->
<dependency>
<groupId>commons-beanutils</groupId>
Expand Down Expand Up @@ -248,6 +249,18 @@
<build>
<plugins>

<!-- The maven eclipse plugin (mvn eclipse:eclipse) -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-eclipse-plugin</artifactId>
<version>${eclipse-plugin.version}</version>
<configuration>
<wtpversion>2.0</wtpversion>
<downloadSources>true</downloadSources>
<downloadJavadocs>false</downloadJavadocs>
</configuration>
</plugin>

<!-- Maven compiler plugin (see http://maven.apache.org/plugins/maven-compiler-plugin/) -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand All @@ -260,8 +273,8 @@
</plugin>

<!-- Maven Tomcat Plugin (see http://mojo.codehaus.org/tomcat-maven-plugin/) -->
<!-- <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>tomcat-maven-plugin</artifactId>
<configuration> <url>http://localhost:8080/manager/text</url> <server>MyTomcat</server>
<!-- <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>tomcat-maven-plugin</artifactId>
<configuration> <url>http://localhost:8080/manager/text</url> <server>MyTomcat</server>
<path>/SHOGun</path> </configuration> </plugin> -->


Expand All @@ -271,8 +284,8 @@
<artifactId>exec-maven-plugin</artifactId>
<version>1.1</version>
<executions>
<!-- <execution> <id>execution-001</id> <phase>compile</phase> <goals>
<goal>exec</goal> </goals> <configuration> <executable>${basedir}/src/main/webapp/build/build-client-application.sh</executable>
<!-- <execution> <id>execution-001</id> <phase>compile</phase> <goals>
<goal>exec</goal> </goals> <configuration> <executable>${basedir}/src/main/webapp/build/build-client-application.sh</executable>
</configuration> </execution> -->

</executions>
Expand Down Expand Up @@ -344,8 +357,8 @@
</pluginManagement>
</build>

<!-- Project Report generated with 'mvn site'. Generates the JavaDocs at
the moment Can also be called with mvn javadoc:javadoc to get standalone
<!-- Project Report generated with 'mvn site'. Generates the JavaDocs at
the moment Can also be called with mvn javadoc:javadoc to get standalone
JavaDocs -->
<reporting>
<plugins>
Expand Down

0 comments on commit 6af1896

Please sign in to comment.