123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209 |
- <?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>
- <parent>
- <groupId>com.elab.core</groupId>
- <artifactId>elab-parent</artifactId>
- <version>3.0.0-SNAPSHOT</version>
- </parent>
- <groupId>com.elab.cache</groupId>
- <artifactId>elab-cache</artifactId>
- <properties>
- <java-version>1.8</java-version>
- <profiles.active>skyforest</profiles.active>
- <!--<elasticsearch>5.3.2</elasticsearch>-->
- <cachecloud-open-client-basic>1.0-SNAPSHOT</cachecloud-open-client-basic>
- <cachecloud-jedis>1.0-SNAPSHOT</cachecloud-jedis>
- <cachecloud-open-common.version>1.0-SNAPSHOT</cachecloud-open-common.version>
- <maven.compiler.plugin>3.1</maven.compiler.plugin>
- <maven.compiler.target>1.7</maven.compiler.target>
- <maven.war.plugin>2.4</maven.war.plugin>
- <maven.surefire.plugin>2.16</maven.surefire.plugin>
- <maven.clean.plugin>2.5</maven.clean.plugin>
- <maven.deloy.plugin>2.8.1</maven.deloy.plugin>
- <maven-source-plugin>2.2.1</maven-source-plugin>
- <maven-resources-plugin>2.6</maven-resources-plugin>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.elab.core</groupId>
- <artifactId>elab-core</artifactId>
- <version>${project.version}</version>
- <exclusions>
- <exclusion>
- <artifactId>javax.servlet-api</artifactId>
- <groupId>javax.servlet</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- sohu redis -->
- <dependency>
- <groupId>com.sohu.tv</groupId>
- <artifactId>cachecloud-jedis</artifactId>
- <version>${cachecloud-jedis}</version>
- </dependency>
- <dependency>
- <groupId>com.sohu.tv</groupId>
- <artifactId>cachecloud-open-client-redis</artifactId>
- <version>${cachecloud-open-client-basic}</version>
- <exclusions>
- <exclusion>
- <artifactId>jedis</artifactId>
- <groupId>redis.clients</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <!--<dependency>-->
- <!--<groupId>org.apache.logging.log4j</groupId>-->
- <!--<artifactId>log4j-core</artifactId>-->
- <!--<version>2.8.2</version>-->
- <!--</dependency>-->
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-core</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context</artifactId>
- </dependency>
- <!--<dependency>-->
- <!--<groupId>org.springframework.data</groupId>-->
- <!--<artifactId>spring-data-redis</artifactId>-->
- <!--<version>2.0.0.RELEASE</version>-->
- <!--</dependency>-->
- <!-- 工具 -->
- <!--<dependency>-->
- <!--<groupId>com.alibaba</groupId>-->
- <!--<artifactId>fastjson</artifactId>-->
- <!--</dependency>-->
- <!--<dependency>-->
- <!--<groupId>org.apache.commons</groupId>-->
- <!--<artifactId>commons-lang3</artifactId>-->
- <!--<version>3.4</version>-->
- <!--</dependency>-->
- <!--<dependency>-->
- <!--<groupId>commons-beanutils</groupId>-->
- <!--<artifactId>commons-beanutils</artifactId>-->
- <!--<version>1.9.3</version>-->
- <!--</dependency>-->
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-test</artifactId>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.12</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <build>
- <pluginManagement>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>${maven.compiler.plugin}</version>
- <configuration>
- <source>${maven.compiler.target}</source>
- <target>${maven.compiler.target}</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <version>${maven.surefire.plugin}</version>
- <configuration>
- <skipTests>true</skipTests>
- </configuration>
- </plugin>
- <!--<plugin>-->
- <!--<artifactId>maven-clean-plugin</artifactId>-->
- <!--<version>${maven.clean.plugin}</version>-->
- <!--<doc>-->
- <!--<filesets>-->
- <!--<fileset>-->
- <!--<directory>${basedir}/src/main/webapp/WEB-INF/classes</directory>-->
- <!--</fileset>-->
- <!--<fileset>-->
- <!--<directory>${basedir}/src/main/webapp/WEB-INF/lib</directory>-->
- <!--</fileset>-->
- <!--</filesets>-->
- <!--</doc>-->
- <!--</plugin>-->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-deploy-plugin</artifactId>
- <version>${maven.deloy.plugin}</version>
- </plugin>
- <!-- 打包javadoc插件 -->
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <executions>
- <execution>
- <id>attach-javadocs</id>
- <goals>
- <goal>jar</goal>
- </goals>
- <configuration>
- <additionalparam>-Xdoclint:none</additionalparam>
- <charset>UTF-8</charset>
- <encoding>UTF-8</encoding>
- <docencoding>UTF-8</docencoding>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-source-plugin</artifactId>
- <version>${maven-source-plugin}</version>
- <configuration>
- <attach>true</attach>
- </configuration>
- <executions>
- <execution>
- <phase>compile</phase>
- <goals>
- <goal>jar</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-resources-plugin</artifactId>
- <version>${maven-resources-plugin}</version>
- <configuration>
- <encoding>UTF-8</encoding>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
- <distributionManagement>
- <repository>
- <id>releases</id>
- <name>Nexus Release Repository</name>
- <url>http://101.231.166.56:8081/content/repositories/elab/</url>
- </repository>
- </distributionManagement>
- </project>
|