example.pom.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of demosupport Show documentation
Show all versions of demosupport Show documentation
demosupport is a quick demoui develop util
<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/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.siqisource</groupId> <artifactId>demo</artifactId> <packaging>war</packaging> <version>0.0.1-SNAPSHOT</version> <name>mayflower Maven Webapp</name> <url>http://maven.apache.org</url> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <sourceVersion>1.6</sourceVersion> <targetVersion>1.6</targetVersion> <!-- Build Dependency Version Properties --> <!-- Plugin Dependency Version Properties --> <maven-war-plugin.version>2.2</maven-war-plugin.version> <tomcat7-maven-plugin.version>2.0</tomcat7-maven-plugin.version> <maven-source-plugin.version>2.2.1</maven-source-plugin.version> <maven-javadoc-plugin.version>2.9</maven-javadoc-plugin.version> <maven-gpg-plugin.version>1.4</maven-gpg-plugin.version> <maven-surefire-plugin.version>2.10</maven-surefire-plugin.version> <maven-jar-plugin.version>2.4</maven-jar-plugin.version> <maven-compiler-plugin.version>2.3.2</maven-compiler-plugin.version> </properties> <dependencies> <dependency> <groupId>org.siqisource</groupId> <artifactId>demosupport</artifactId> <version>0.0.1</version> </dependency> <!-- #############jee################# --> <dependency> <groupId>javax</groupId> <artifactId>javaee-web-api</artifactId> <version>6.0</version> <scope>provided</scope> </dependency> </dependencies> <build> <resources> <resource> <directory>src/main/java</directory> <includes> <include>**/*.xml</include> </includes> </resource> <resource> <directory>src/main/resources</directory> </resource> </resources> <plugins> <!-- Compiler --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven-compiler-plugin.version}</version> <configuration> <encoding>${sourceEncoding}</encoding> <source>${sourceVersion}</source> <target>${targetVersion}</target> </configuration> </plugin> <!-- source --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> </plugin> <!-- Build War --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <version>${maven-war-plugin.version}</version> </plugin> <!-- Tomcat7 --> <plugin> <groupId>org.apache.tomcat.maven</groupId> <artifactId>tomcat7-maven-plugin</artifactId> <version>${tomcat7-maven-plugin.version}</version> <configuration> <port>2234</port> <path>/demo</path> <uriEncoding>UTF-8</uriEncoding> </configuration> </plugin> </plugins> </build> </project>