Created
November 8, 2017 05:46
-
-
Save BenDol/6524ad17de7977f54a496a93a26aabf0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<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>com.insclix.mvc</groupId> | |
<artifactId>mvc-demo</artifactId> | |
<version>1.0-SNAPSHOT</version> | |
<packaging>pom</packaging> | |
<name>MVC Demo</name> | |
<properties> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
<java.version>1.8</java.version> | |
<!-- gwt --> | |
<gwt.version>2.8.2</gwt.version> | |
<!-- gwt-material --> | |
<gwt-material.version>2.1-SNAPSHOT</gwt-material.version> | |
<!-- insclix --> | |
<insclix-core.version>1.0-SNAPSHOT</insclix-core.version> | |
<!-- errai --> | |
<errai.version>4.1.1-SNAPSHOT</errai.version> | |
<errai.dev.context>${project.artifactId}</errai.dev.context> | |
<errai.client.class.pattern>.*/client/.*</errai.client.class.pattern> | |
<!-- spring --> | |
<spring.version>4.2.2.RELEASE</spring.version> | |
<!-- hibernate --> | |
<hibernate.version>3.6.10.Final</hibernate.version> | |
<hibernate-validator.version>4.1.0.Final</hibernate-validator.version> | |
<!-- slf4j --> | |
<slf4j.version>1.7.13</slf4j.version> | |
<!-- jersey --> | |
<jersey.version>2.25</jersey.version> | |
<!-- jackson --> | |
<jackson.version>2.8.4</jackson.version> | |
<!-- maven plugins --> | |
<gwt-maven-plugin.version>1.0-rc-9</gwt-maven-plugin.version> | |
<maven-war-plugin.version>3.0.0</maven-war-plugin.version> | |
<maven-clean-plugin.version>2.4.1</maven-clean-plugin.version> | |
<maven-compiler-plugin.version>3.5.1</maven-compiler-plugin.version> | |
<maven-deploy-plugin.version>2.8.2</maven-deploy-plugin.version> | |
<maven-source-plugin.version>3.0.1</maven-source-plugin.version> | |
<!-- weld --> | |
<weld.version>2.2.9.Final</weld.version> | |
</properties> | |
<modules> | |
<module>mvc</module> | |
</modules> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-compiler-plugin</artifactId> | |
<configuration> | |
<source>${java.version}</source> | |
<target>${java.version}</target> | |
<encoding>${project.build.sourceEncoding}</encoding> | |
<debug>true</debug> | |
<debuglevel>lines,vars,source</debuglevel> | |
<useIncrementalCompilation>false</useIncrementalCompilation> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
<dependencies> | |
<dependency> | |
<groupId>junit</groupId> | |
<artifactId>junit</artifactId> | |
<version>4.12</version> | |
</dependency> | |
</dependencies> | |
<dependencyManagement> | |
<dependencies> | |
<!-- GWT --> | |
<dependency> | |
<groupId>com.google.gwt</groupId> | |
<artifactId>gwt</artifactId> | |
<version>${gwt.version}</version> | |
<type>pom</type> | |
<scope>import</scope> | |
</dependency> | |
</dependencies> | |
</dependencyManagement> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment