123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459 |
- <?xml version="1.0"?>
- <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>com.tipdm</groupId>
- <artifactId>tipdmframework-root</artifactId>
- <version>1.0</version>
- </parent>
- <artifactId>tipdm-dmserver</artifactId>
- <packaging>war</packaging>
- <url>http://maven.apache.org</url>
- <properties>
- <maven.build.timestamp.format>yyyyMMddHHmmss</maven.build.timestamp.format>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <maven.compiler.source>1.8</maven.compiler.source>
- <maven.compiler.target>1.8</maven.compiler.target>
- <spring.version>4.3.4.RELEASE</spring.version>
- <shiro.version>1.2.3</shiro.version>
- <slf4j.version>1.7.25</slf4j.version>
- <logback.version>1.2.3</logback.version>
- <commons-lang3.version>3.6</commons-lang3.version>
- <commons-cli-version>1.2</commons-cli-version>
- <commons-pool2.version>2.4.2</commons-pool2.version>
- <jsonpath.version>2.2.0</jsonpath.version>
- <tomcat.version>8.5.20</tomcat.version>
- <framework.common.version>1.0</framework.common.version>
- <framework.service.version>1.0</framework.service.version>
- <framework.persist.version>1.0</framework.persist.version>
- <framework.model.version>1.0</framework.model.version>
- <jackson.version>2.6.5</jackson.version>
- <jgrapht.version>1.3.0</jgrapht.version>
- <motan.version>1.1.4</motan.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.tipdm</groupId>
- <artifactId>framework-common</artifactId>
- <version>${framework.common.version}</version>
- </dependency>
- <dependency>
- <groupId>com.tipdm</groupId>
- <artifactId>framework-model</artifactId>
- <version>${framework.model.version}</version>
- </dependency>
- <dependency>
- <groupId>com.tipdm</groupId>
- <artifactId>framework-persist</artifactId>
- <version>${framework.persist.version}</version>
- </dependency>
- <dependency>
- <groupId>com.tipdm</groupId>
- <artifactId>framework-service</artifactId>
- <version>${framework.service.version}</version>
- </dependency>
- <dependency>
- <groupId>ch.qos.logback</groupId>
- <artifactId>logback-classic</artifactId>
- <version>${logback.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-pool2</artifactId>
- <version>${commons-pool2.version}</version>
- </dependency>
- <dependency>
- <groupId>org.quartz-scheduler</groupId>
- <artifactId>quartz</artifactId>
- <version>${quartz.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-collections</groupId>
- <artifactId>commons-collections</artifactId>
- <version>3.2.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- <version>${commons-lang3.version}</version>
- </dependency>
- <dependency>
- <groupId>commons-beanutils</groupId>
- <artifactId>commons-beanutils</artifactId>
- <version>1.9.2</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>javax.servlet-api</artifactId>
- <version>3.1.0</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet.jsp</groupId>
- <artifactId>jsp-api</artifactId>
- <version>2.2</version>
- </dependency>
- <dependency>
- <groupId>javax.servlet</groupId>
- <artifactId>jstl</artifactId>
- <version>1.2</version>
- </dependency>
- <dependency>
- <groupId>org.apache.shiro</groupId>
- <artifactId>shiro-core</artifactId>
- <version>${shiro.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.shiro</groupId>
- <artifactId>shiro-ehcache</artifactId>
- <version>${shiro.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.shiro</groupId>
- <artifactId>shiro-web</artifactId>
- <version>${shiro.version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.shiro</groupId>
- <artifactId>shiro-quartz</artifactId>
- <version>${shiro.version}</version>
- <exclusions>
- <exclusion>
- <groupId>org.quartz-scheduler</groupId>
- <artifactId>quartz</artifactId>
- </exclusion>
- <exclusion>
- <artifactId>quartz</artifactId>
- <groupId>org.opensymphony.quartz</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.apache.shiro</groupId>
- <artifactId>shiro-spring</artifactId>
- <version>${shiro.version}</version>
- </dependency>
- <!-- aspectj相关jar包 -->
- <dependency>
- <groupId>org.aspectj</groupId>
- <artifactId>aspectjrt</artifactId>
- <version>1.7.4</version>
- </dependency>
- <dependency>
- <groupId>org.aspectj</groupId>
- <artifactId>aspectjweaver</artifactId>
- <version>1.7.4</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context-support</artifactId>
- <version>${spring.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-jdbc</artifactId>
- <version>${spring.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-tx</artifactId>
- <version>${spring.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-webmvc</artifactId>
- <version>${spring.version}</version>
- </dependency>
- <dependency>
- <groupId>xalan</groupId>
- <artifactId>xalan</artifactId>
- <version>2.7.2</version>
- </dependency>
- <!--jackson -->
- <dependency>
- <groupId>com.fasterxml.jackson.core</groupId>
- <artifactId>jackson-databind</artifactId>
- <version>${jackson.version}</version>
- </dependency>
- <dependency>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- <version>${guava.version}</version>
- </dependency>
- <dependency>
- <groupId>antlr</groupId>
- <artifactId>antlr</artifactId>
- <version>2.7.7</version>
- </dependency>
- <dependency>
- <groupId>commons-fileupload</groupId>
- <artifactId>commons-fileupload</artifactId>
- <version>1.3.1</version>
- </dependency>
- <!-- jsonpath -->
- <dependency>
- <groupId>com.jayway.jsonpath</groupId>
- <artifactId>json-path</artifactId>
- <version>${jsonpath.version}</version>
- </dependency>
- <!-- ssh2 linux -->
- <dependency>
- <groupId>com.jcraft</groupId>
- <artifactId>jsch</artifactId>
- <version>0.1.54</version>
- </dependency>
- <!-- JMustache -->
- <dependency>
- <groupId>com.samskivert</groupId>
- <artifactId>jmustache</artifactId>
- <version>1.13</version>
- </dependency>
- <dependency>
- <groupId>com.github.drinkjava2</groupId>
- <artifactId>jdialects</artifactId>
- <version>1.0.5</version>
- </dependency>
- <dependency>
- <groupId>org.apache.geronimo.components</groupId>
- <artifactId>geronimo-jaspi</artifactId>
- <version>2.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.corundumstudio.socketio</groupId>
- <artifactId>netty-socketio</artifactId>
- <version>1.7.13</version>
- <exclusions>
- <exclusion>
- <artifactId>netty-resolver</artifactId>
- <groupId>io.netty</groupId>
- </exclusion>
- <exclusion>
- <artifactId>netty-buffer</artifactId>
- <groupId>io.netty</groupId>
- </exclusion>
- <exclusion>
- <artifactId>netty-transport</artifactId>
- <groupId>io.netty</groupId>
- </exclusion>
- <exclusion>
- <artifactId>netty-handler</artifactId>
- <groupId>io.netty</groupId>
- </exclusion>
- <exclusion>
- <artifactId>netty-codec</artifactId>
- <groupId>io.netty</groupId>
- </exclusion>
- <exclusion>
- <artifactId>netty-common</artifactId>
- <groupId>io.netty</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>io.socket</groupId>
- <artifactId>socket.io-client</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>org.redisson</groupId>
- <artifactId>redisson</artifactId>
- <version>3.5.7</version>
- </dependency>
- <dependency>
- <groupId>gopro</groupId>
- <artifactId>feature-stats</artifactId>
- <version>1.0</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/lib/feature-stats-1.0.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.typesafe</groupId>
- <artifactId>config</artifactId>
- <version>1.2.1</version>
- </dependency>
- <dependency>
- <groupId>edu.cornell.med.icb.io</groupId>
- <artifactId>icb-utils</artifactId>
- <version>1.0.0</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/lib/icb-utils.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>org.jgrapht</groupId>
- <artifactId>jgrapht-core</artifactId>
- <version>${jgrapht.version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.dexecutor</groupId>
- <artifactId>dexecutor-core</artifactId>
- <version>2.1.0</version>
- </dependency>
- <!-- RPC -->
- <dependency>
- <groupId>com.weibo</groupId>
- <artifactId>motan-core</artifactId>
- <version>${motan.version}</version>
- </dependency>
- <dependency>
- <groupId>com.weibo</groupId>
- <artifactId>motan-transport-netty</artifactId>
- <version>${motan.version}</version>
- </dependency>
- <dependency>
- <groupId>com.weibo</groupId>
- <artifactId>motan-springsupport</artifactId>
- <version>${motan.version}</version>
- </dependency>
- <!-- RPC end -->
- <dependency>
- <groupId>org.jooq</groupId>
- <artifactId>jooq</artifactId>
- <version>3.11.9</version>
- </dependency>
- <!-- DataX -->
- <dependency>
- <groupId>com.alibaba.datax</groupId>
- <artifactId>datax-core</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/lib/datax-core-0.0.1-SNAPSHOT.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>com.alibaba.datax</groupId>
- <artifactId>datax-common</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/lib/datax-common-0.0.1-SNAPSHOT.jar</systemPath>
- </dependency>
- <dependency>
- <groupId>commons-cli</groupId>
- <artifactId>commons-cli</artifactId>
- <version>${commons-cli-version}</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>4.4</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>fluent-hc</artifactId>
- <version>4.4</version>
- </dependency>
- <!-- DataX end -->
- </dependencies>
- <build>
- <finalName>${artifactId}-v${version}</finalName>
- <resources>
- <resource>
- <directory>src/main/resources</directory>
- <includes>
- <include>**/*.*</include>
- </includes>
- </resource>
- </resources>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- <skip>true</skip>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-war-plugin</artifactId>
- <version>2.6</version>
- <configuration>
- <warName>${project.artifactId}-v${project.version}-${maven.build.timestamp}</warName>
- <webResources>
- <resource>
- <directory>lib</directory>
- <targetPath>WEB-INF/lib</targetPath>
- <includes>
- <include>**/*.*</include>
- </includes>
- </resource>
- <resource>
- <directory>src/main/resources</directory>
- <targetPath>WEB-INF/classes</targetPath>
- <filtering>true</filtering>
- </resource>
- </webResources>
- </configuration>
- </plugin>
- <!--servlet容器 jetty插件-->
- <plugin>
- <groupId>org.eclipse.jetty</groupId>
- <artifactId>jetty-maven-plugin</artifactId>
- <version>9.3.10.v20160621</version>
- </plugin>
- </plugins>
- </build>
- </project>
|