| | |
| | |
|
| | |
|
| | | <!-- https://mvnrepository.com/artifact/io.netty/netty-all -->
|
| | |
|
| | | <!-- Redis -->
|
| | | <dependency>
|
| | | <groupId>org.springframework.data</groupId>
|
| | | <artifactId>spring-data-redis</artifactId>
|
| | | <version>1.8.7.RELEASE</version>
|
| | | <groupId>io.netty</groupId>
|
| | | <artifactId>netty-all</artifactId>
|
| | | <version>4.1.7.Final</version>
|
| | | </dependency>
|
| | |
|
| | | <dependency>
|
| | | <groupId>redis.clients</groupId>
|
| | | <artifactId>jedis</artifactId>
|
| | | <version>2.9.0</version>
|
| | | </dependency>
|
| | |
|
| | |
|
| | | </dependencies>
|
| | |
|
| | |
|
| | | <build>
|
| | | <finalName>task</finalName>
|
| | | <plugins>
|
| | | <plugin>
|
| | | <groupId>org.apache.maven.plugins</groupId>
|
| | | <artifactId>maven-compiler-plugin</artifactId>
|
| | | <configuration>
|
| | | <source>1.6</source>
|
| | | <target>1.6</target>
|
| | | </configuration>
|
| | | </plugin>
|
| | | <plugin>
|
| | | <groupId>org.apache.maven.plugins</groupId>
|
| | | <artifactId>maven-surefire-plugin</artifactId>
|
| | | <configuration>
|
| | | <skip>true</skip>
|
| | | </configuration>
|
| | | </plugin>
|
| | | <plugin>
|
| | | <artifactId>maven-war-plugin</artifactId>
|
| | | <version>3.0.0</version>
|
| | | <configuration>
|
| | | <webappDirectory>${basedir}/src/main/webapp</webappDirectory>
|
| | | <warSourceDirectory>${basedir}/src/main/webapp</warSourceDirectory>
|
| | | </configuration>
|
| | | </plugin>
|
| | | </plugins>
|
| | | </build>
|
| | | </project>
|