Nav apraksta

pom.xml 2.6KB

    <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.ekexiu.project</groupId> <artifactId>platformConsole</artifactId> <version>0.0.1</version> <packaging>war</packaging> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.7</maven.compiler.source> <maven.compiler.target>1.7</maven.compiler.target> <maven.war.filteringDeploymentDescriptors>true</maven.war.filteringDeploymentDescriptors> <maven.tomcat.path>/</maven.tomcat.path> </properties> <dependencies> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> <version>9.4.1207.jre7</version> </dependency> <dependency> <groupId>org.jfw</groupId> <artifactId>jfwApt</artifactId> <version>0.0.2-SNAPSHOT</version> <optional>true</optional> </dependency> <dependency> <groupId>org.jfw</groupId> <artifactId>jfwAptOrm</artifactId> <version>0.0.2-SNAPSHOT</version> <optional>true</optional> </dependency> <dependency> <groupId>org.jfw</groupId> <artifactId>jfwAptWeb</artifactId> <version>0.0.2-SNAPSHOT</version> <optional>true</optional> </dependency> <dependency> <groupId>org.jfw</groupId> <artifactId>jfwUtil</artifactId> <version>0.0.2-SNAPSHOT</version> </dependency> <dependency> <groupId>org.jfw</groupId> <artifactId>jfwWebUtil</artifactId> <version>0.0.2-SNAPSHOT</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <scope>provided</scope> <version>2.5</version> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>1.0.20</version> </dependency> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <version>8.1.0.RC5</version> <configuration> <stopPort>9966</stopPort> <stopKey>foo</stopKey> <webAppConfig> <contextPath>/platformConsole</contextPath> </webAppConfig> <reload>automatic</reload> <scanIntervalSeconds>3</scanIntervalSeconds> </configuration> </plugin> </plugins> <finalName>platformConsole</finalName> </build> </project>