Commit ecd8b63f authored by he's avatar he

version update

parent eceea9ef
<?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>
<groupId>com.weface</groupId>
<artifactId>springboot_template</artifactId>
<version>1.0-SNAPSHOT</version>
<name>springboot_template</name>
<!-- FIXME change it to the project's website -->
<url>http://www.example.com</url>
<distributionManagement>
<repository>
<id>maven-releases</id>
......@@ -24,30 +20,23 @@
<url>http://ops.weface.com.cn:8081/repository/maven-snapshots/</url>
</snapshotRepository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<parent>
<groupId>com.weface</groupId>
<artifactId>springboot_base</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.2-SNAPSHOT</version>
</parent>
<dependencies>
<dependency>
<groupId>com.weface</groupId>
<artifactId>springboot_base</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>0.0.2-SNAPSHOT</version>
</dependency>
</dependencies>
<build>
<plugins>
<!--add this for docker-->
......
<config
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
xmlns='http://www.ehcache.org/v3'
xsi:schemaLocation="
http://www.ehcache.org/v3 http://www.ehcache.org/schema/ehcache-core-3.0.xsd">
<cache alias="CACHE_1d" uses-template="cache_1d_tem"/>
<cache alias="CACHE_5m" uses-template="cache_5m_tem"/>
<cache-template name="cache_3s_tem">
<key-type>java.lang.String</key-type>
<value-type>java.lang.Object</value-type>
<expiry>
<ttl unit="seconds">3</ttl>
</expiry>
<resources>
<heap unit="MB">100</heap>
</resources>
</cache-template>
<cache-template name="cache_5m_tem">
<key-type>java.lang.String</key-type>
<value-type>java.lang.Object</value-type>
<expiry>
<ttl unit="minutes">5</ttl>
</expiry>
<resources>
<heap unit="MB">100</heap>
</resources>
</cache-template>
<cache-template name="cache_30m_tem">
<key-type>java.lang.String</key-type>
<value-type>java.lang.Object</value-type>
<expiry>
<ttl unit="minutes">30</ttl>
</expiry>
<resources>
<heap unit="MB">100</heap>
</resources>
</cache-template>
<cache-template name="cache_1d_tem">
<key-type>java.lang.String</key-type>
<value-type>java.lang.Object</value-type>
<expiry>
<ttl unit="days">1</ttl>
</expiry>
<resources>
<heap unit="MB">512</heap>
</resources>
</cache-template>
</config>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment